7 lines
209 B
Python
7 lines
209 B
Python
from tools.registry import tool_registry, ToolRegistry
|
|
|
|
# 自动加载内置工具(触发 @tool_registry.register 装饰器)
|
|
import tools.builtin # noqa: F401
|
|
|
|
__all__ = ["tool_registry", "ToolRegistry"]
|