bizvideoschool commited on
Commit
94383f9
1 Parent(s): bbd807d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ you base your script on."""
24
  @retry(stop=stop_after_attempt(3), wait=wait_fixed(1))
25
  def call_openai_api(messages):
26
  return openai.ChatCompletion.create(
27
- model="gpt-3.5-turbo",
28
  messages=messages
29
  )
30
 
 
24
  @retry(stop=stop_after_attempt(3), wait=wait_fixed(1))
25
  def call_openai_api(messages):
26
  return openai.ChatCompletion.create(
27
+ model="gpt-4",
28
  messages=messages
29
  )
30