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 bc223780 Update OpenAI model in LCEL multi-agent example
bc223780 is described below
commit bc2237802ccbdadfaad689d244dd7078210a2d4f
Author: Goutam <[email protected]>
AuthorDate: Sun Feb 1 21:22:04 2026 +0530
Update OpenAI model in LCEL multi-agent example
---
examples/multi-agent-collaboration/lcel/application.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/multi-agent-collaboration/lcel/application.py
b/examples/multi-agent-collaboration/lcel/application.py
index 54f92420..187c1cf0 100644
--- a/examples/multi-agent-collaboration/lcel/application.py
+++ b/examples/multi-agent-collaboration/lcel/application.py
@@ -140,7 +140,7 @@ def _exercise_agent(messages: list, sender: str, agent,
name: str, tracer: Trace
# Define the actual agents via langchain
-llm = ChatOpenAI(model="gpt-4-1106-preview")
+llm = ChatOpenAI(model="gpt-4o-mini")
research_agent = create_agent(
llm,
[tavily_tool],