__init__.py 437 B

1234567891011121314151617181920212223242526
  1. """
  2. Goal 模块 - 执行计划管理
  3. 提供 Goal 和 GoalTree 数据模型,以及 goal 工具。
  4. """
  5. from agent.goal.models import (
  6. Goal,
  7. GoalTree,
  8. GoalStatus,
  9. GoalType,
  10. GoalStats,
  11. )
  12. from agent.goal.tool import goal_tool, create_goal_tool_schema
  13. __all__ = [
  14. # Models
  15. "Goal",
  16. "GoalTree",
  17. "GoalStatus",
  18. "GoalType",
  19. "GoalStats",
  20. # Tool
  21. "goal_tool",
  22. "create_goal_tool_schema",
  23. ]