You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
767 B
20 lines
767 B
from swarms.structs.agent import Agent
|
|
|
|
# Initialize the agent
|
|
agent = Agent(
|
|
agent_name="Clinical-Documentation-Agent",
|
|
agent_description="Specialized agent for clinical documentation and "
|
|
"medical record analysis",
|
|
system_prompt="You are a clinical documentation specialist with expertise "
|
|
"in medical terminology, SOAP notes, and healthcare "
|
|
"documentation standards. You help analyze and improve "
|
|
"clinical documentation for accuracy, completeness, and "
|
|
"compliance.",
|
|
max_loops=1,
|
|
model_name="claude-opus-4-20250514",
|
|
dynamic_temperature_enabled=True,
|
|
output_type="final",
|
|
)
|
|
|
|
print(agent.run("what are the best ways to diagnose the flu?"))
|