rtc-voice-chat/backend/tools/__init__.py
2026-04-02 09:40:23 +08:00

7 lines
209 B
Python

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