A local tool available to the orchestrator LLM. These run in-process (not via MCP) and are presented to the LLM alongside MCP tools in the same OpenAI function-calling format.
| 10 | |
| 11 | @dataclass |
| 12 | class OrchestratorTool: |
| 13 | """A local tool available to the orchestrator LLM. |
| 14 | |
| 15 | These run in-process (not via MCP) and are presented to the LLM |
| 16 | alongside MCP tools in the same OpenAI function-calling format. |
| 17 | """ |
| 18 | |
| 19 | name: str |
| 20 | description: str |
| 21 | parameters: dict[str, Any] # JSON Schema |
| 22 | handler: Callable[[dict[str, Any]], str] |
| 23 | |
| 24 | |
| 25 | def build_task_management_tools( |
no outgoing calls
no test coverage detected