From 51696c2bedfbec930d2e4b7b86d2bebf50f73d7d Mon Sep 17 00:00:00 2001 From: Goutam Date: Mon, 12 Jan 2026 23:30:29 +0530 Subject: [PATCH] Update OpenAI model in llm adventure game example --- examples/llm-adventure-game/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llm-adventure-game/application.py b/examples/llm-adventure-game/application.py index d42ba07f2..8ba7efb08 100644 --- a/examples/llm-adventure-game/application.py +++ b/examples/llm-adventure-game/application.py @@ -58,7 +58,7 @@ def prompt_for_challenge(state: State) -> Tuple[dict, State]: ) def evaluate_attempt(state: State) -> Tuple[dict, State]: result = Client().chat.completions.create( - model="gpt-4", + model="gpt-4o-mini", messages=[ { "role": "system",