Decision-Fish commited on
Commit
82bad00
·
verified ·
1 Parent(s): c81dea4

change back to gpt 5 mini.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def call_model(system_prompt: str, history: list[dict[str, str]]) -> str:
26
  typed_msgs = cast(List[ChatCompletionMessageParam], msgs)
27
 
28
  resp = client.chat.completions.create(
29
- model="gpt-4o",
30
  messages=typed_msgs,
31
  temperature=0.7,
32
  )
 
26
  typed_msgs = cast(List[ChatCompletionMessageParam], msgs)
27
 
28
  resp = client.chat.completions.create(
29
+ model="gpt-5-mini",
30
  messages=typed_msgs,
31
  temperature=0.7,
32
  )