(tool_name : str, config : Any)
| 31 | return decorator |
| 32 | |
| 33 | def build_tool(tool_name : str, config : Any) -> Tool: |
| 34 | print(f"will build {tool_name}") |
| 35 | return tools_registry.build(tool_name, config) |
| 36 | |
| 37 | def list_tools() -> List[str]: |
| 38 | return tools_registry.list_tools() |