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 51696c2b Update OpenAI model in llm adventure game example
51696c2b is described below
commit 51696c2bedfbec930d2e4b7b86d2bebf50f73d7d
Author: Goutam <[email protected]>
AuthorDate: Mon Jan 12 23:30:29 2026 +0530
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 d42ba07f..8ba7efb0 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",