From db3746131b4172fc7722aa6c896dc8fda58dffef Mon Sep 17 00:00:00 2001
From: Pavan Kumar <66913595+ascender1729@users.noreply.github.com>
Date: Thu, 17 Apr 2025 17:14:43 +0000
Subject: [PATCH] chore: set explicit model configuration for all agents
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

- 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
---
 examples/mcp_example/multi_server_test.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/mcp_example/multi_server_test.py b/examples/mcp_example/multi_server_test.py
index 163eb033..d112d311 100644
--- a/examples/mcp_example/multi_server_test.py
+++ b/examples/mcp_example/multi_server_test.py
@@ -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(