ID0M commited on
Commit
b72e65d
1 Parent(s): c9b4041

Model changes

Browse files

This should be the Turbo model as per the space name.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import requests
6
  import random
7
 
8
 
9
- MODEL = "gpt-4o-2024-08-06"
10
  API_URL = os.getenv("API_URL")
11
  DISABLED = os.getenv("DISABLED") == 'True'
12
  OPENAI_API_KEYS = os.getenv("OPENAI_API_KEYS").split(',')
 
6
  import random
7
 
8
 
9
+ MODEL = "gpt-4-turbo-2024-04-09"
10
  API_URL = os.getenv("API_URL")
11
  DISABLED = os.getenv("DISABLED") == 'True'
12
  OPENAI_API_KEYS = os.getenv("OPENAI_API_KEYS").split(',')