__init__.py 515 B

123456789101112131415161718192021222324252627282930
  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. BranchContext,
  12. BranchStatus,
  13. )
  14. from agent.goal.tool import goal_tool, create_goal_tool_schema
  15. __all__ = [
  16. # Models
  17. "Goal",
  18. "GoalTree",
  19. "GoalStatus",
  20. "GoalType",
  21. "GoalStats",
  22. "BranchContext",
  23. "BranchStatus",
  24. # Tool
  25. "goal_tool",
  26. "create_goal_tool_schema",
  27. ]