hxf/backend/th_agenter/services/agent/__init__.py

12 lines
342 B
Python
Raw Normal View History

2025-12-16 13:55:16 +08:00
"""Agent services package.
轻量化导入仅暴露基础工具类型避免在包导入时加载耗时的服务层使用 AgentService 时请从子模块显式导入
from open_agent.services.agent.agent_service import AgentService
"""
2025-12-04 14:48:38 +08:00
from .base import BaseTool, ToolRegistry
__all__ = [
"BaseTool",
2025-12-16 13:55:16 +08:00
"ToolRegistry"
2025-12-04 14:48:38 +08:00
]