chore: set explicit model configuration for all agents

- Resolved model selection warnings by specifying 'gpt-4o-mini'
- Ensured agents explicitly define model name to avoid default fallbacks
- Improves clarity and consistency in agent–MCP server communication
pull/819/head
Pavan Kumar 2 days ago committed by ascender1729
parent a64dab83f2
commit db3746131b

@ -26,7 +26,8 @@ math_agent = Agent(
max_loops=1,
mcp_servers=[math_server],
interactive=True,
streaming_on=True
streaming_on=True,
model_name="gpt-4o-mini"
)
finance_agent = Agent(

Loading…
Cancel
Save