(tool_name)
| 25 | tools_registry = ToolsRegistry() |
| 26 | |
| 27 | def register(tool_name): |
| 28 | def decorator(tool : FuncToolBuilder): |
| 29 | tools_registry.register(tool_name, tool) |
| 30 | return tool |
| 31 | return decorator |
| 32 | |
| 33 | def build_tool(tool_name : str, config : Any) -> Tool: |
| 34 | print(f"will build {tool_name}") |
nothing calls this directly
no outgoing calls
no test coverage detected