- Add app/core/deep_agent.py with Home and Floating supervisor graphs using LangGraph create_react_agent (hierarchical pattern) - Strip ChatAgent classes from all 4 agent files, keep @tool functions - Rewrite output_formatter.py for event-based (token/tool_end/mutations) stream - Update device_ws.py to use run_home_stream/run_floating_stream - Rewrite chat.py REST route to use run_home - Add update_core_memory tool to both supervisors - Add langgraph>=0.3.0 to requirements.txt - Remove orchestrator.py, execution_plan.py, agent_registry.py, plans.py - Remove PlanAction, PlanStep, ExecutionPlan, execution_mode from schemas - Update all affected tests to match new API - Remove 6 deprecated test files for deleted modules - Clean up stale docstrings referencing removed orchestrator
6 lines
235 B
Python
6 lines
235 B
Python
"""Agent tool modules — imported by deep_agent.py to build sub-agent graphs."""
|
|
|
|
from app.agents import timeline_agent, note_agent, project_agent, task_agent
|
|
|
|
__all__ = ["timeline_agent", "note_agent", "project_agent", "task_agent"]
|