From d117978005aff648000a2a51888bbf12f3498ffc Mon Sep 17 00:00:00 2001 From: Till Tomczak Date: Sun, 27 Apr 2025 08:03:55 +0200 Subject: [PATCH] Update GPT model to 'gpt-4o-mini' for chat functionality in app.py --- website/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/app.py b/website/app.py index 6ce0bd3..887d766 100755 --- a/website/app.py +++ b/website/app.py @@ -981,7 +981,7 @@ def chat_with_assistant(): try: response = client.chat.completions.create( - model="gpt-3.5-turbo-16k", + model="gpt-4o-mini", messages=api_messages, max_tokens=300, temperature=0.7