Spaces:
Runtime error
Runtime error
| """ | |
| Agents Package - Healthcare AI Agent System | |
| Structure: | |
| - core/: Router, Coordinator, Base Agent | |
| - specialized/: Domain-specific agents (Nutrition, Exercise, Symptom, etc.) | |
| """ | |
| # Core components | |
| from .core import route_to_agent, get_agent_description, AgentCoordinator, BaseAgent | |
| # Specialized agents | |
| from .specialized import ( | |
| NutritionAgent, | |
| ExerciseAgent, | |
| SymptomAgent, | |
| MentalHealthAgent, | |
| GeneralHealthAgent, | |
| AGENTS, | |
| get_agent | |
| ) | |
| __all__ = [ | |
| # Core | |
| 'route_to_agent', | |
| 'get_agent_description', | |
| 'AgentCoordinator', | |
| 'BaseAgent', | |
| # Specialized agents | |
| 'NutritionAgent', | |
| 'ExerciseAgent', | |
| 'SymptomAgent', | |
| 'MentalHealthAgent', | |
| 'GeneralHealthAgent', | |
| # Utilities | |
| 'AGENTS', | |
| 'get_agent' | |
| ] | |