Skip to content

Commit dd526ef

Browse files
authored
fix: update langgraph example model to gpt-5.4 (CopilotKit#3892)
## Summary - Update the LangGraph Python example agent model from `gpt-4.1` to `gpt-5.4` ## Test plan - [ ] Verify the langgraph-python example runs with the updated model
2 parents 0318d99 + c8ff9d7 commit dd526ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • examples/integrations/langgraph-python/apps/agent

examples/integrations/langgraph-python/apps/agent/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from src.a2ui_fixed_schema import search_flights
1616

1717
agent = create_agent(
18-
model="openai:gpt-4.1",
18+
model="openai:gpt-5.4",
1919
tools=[query_data, *todo_tools, generate_a2ui, search_flights],
2020
middleware=[CopilotKitMiddleware()],
2121
state_schema=AgentState,

0 commit comments

Comments
 (0)