my-gradio-app / agents /__init__.py
Nguyen Trong Lap
Recreate history without binary blobs
eeb0f9c
raw
history blame contribute delete
779 Bytes
"""
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'
]