This is an automated email from the ASF dual-hosted git repository.
skrawcz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/burr.git
The following commit(s) were added to refs/heads/main by this push:
new c3e748ce Update OpenAI model in multi-agent collaboration example
c3e748ce is described below
commit c3e748ce7d929a987508c0d77525a749017e9b18
Author: Goutam <[email protected]>
AuthorDate: Fri Jan 30 21:57:04 2026 +0530
Update OpenAI model in multi-agent collaboration example
---
examples/multi-agent-collaboration/hamilton/func_agent.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/multi-agent-collaboration/hamilton/func_agent.py
b/examples/multi-agent-collaboration/hamilton/func_agent.py
index 7a0903d1..75ac5415 100644
--- a/examples/multi-agent-collaboration/hamilton/func_agent.py
+++ b/examples/multi-agent-collaboration/hamilton/func_agent.py
@@ -171,7 +171,7 @@ def llm_function_response(
:return:
"""
response = llm_client.chat.completions.create(
- model="gpt-4-1106-preview",
+ model="gpt-4o-mini",
messages=message_history,
tools=tool_function_specs,
tool_choice="auto",