SamiKoen commited on
Commit
b681877
1 Parent(s): e664a43

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -80,7 +80,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
80
  temp["content"] = inputs
81
  messages.append(temp)
82
 
83
- payload = {"model": "gpt-3.5-turbo-16k-0613", "messages": messages, "temperature" : 0.7, "top_p": 1.0, "n" : 1, "stream": True, "presence_penalty":0, "frequency_penalty":0,}
84
 
85
  chat_counter+=1
86
 
 
80
  temp["content"] = inputs
81
  messages.append(temp)
82
 
83
+ payload = {"model": "gpt-4", "messages": messages, "temperature" : 0.7, "top_p": 1.0, "n" : 1, "stream": True, "presence_penalty":0, "frequency_penalty":0,}
84
 
85
  chat_counter+=1
86