feat(tools): Phase T.1-T.4 complete - manifest system, registry, implementations, runtime, collaboration, scheduler

This commit is contained in:
2026-04-05 11:54:57 +08:00
parent fca7a7cf3d
commit 10d9340c53
30 changed files with 2891 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
# Schemas Module
from tools.schemas.manifest import ToolManifest, ToolType, RuntimeType, InvocationCommand
from tools.schemas.tool_call import ToolCallRequest, ToolCallResponse, ToolExecutionLog
__all__ = [
"ToolManifest",
"ToolType",
"RuntimeType",
"InvocationCommand",
"ToolCallRequest",
"ToolCallResponse",
"ToolExecutionLog",
]