Spaces:
Runtime error
Runtime error
File size: 779 Bytes
eeb0f9c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
"""
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'
]
|