Files
more_dots/agents/base_agent.py
T

6 lines
155 B
Python
Raw Normal View History

2026-02-26 13:43:44 +08:00
"""兼容导出:请优先使用 agent 包"""
2026-02-17 02:31:39 +08:00
2026-02-26 13:43:44 +08:00
from agent.graph import BaseAgent
from agent.state import AgentState
2026-02-17 02:31:39 +08:00
2026-02-26 13:43:44 +08:00
__all__ = ["BaseAgent", "AgentState"]