File size: 232 Bytes
bafa5e5
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from src.agent import HealthcareAgent
# Initialize agent
agent = HealthcareAgent()

# Process a query
response = agent.process(
    "What is the current ER occupancy and wait time?",
    thread_id="example-thread"
)

print(response)