SamiKoen commited on
Commit
da84fbe
·
1 Parent(s): e892175

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
42
  temp["content"] = inputs
43
  messages.append(temp)
44
 
45
- payload = {"model": "gpt-3.5-turbo", "messages": messages, "temperature" : 0.2, "top_p": 1.0, "n" : 1, "stream": True, "presence_penalty":0, "frequency_penalty":0,}
46
 
47
  chat_counter+=1
48
 
 
42
  temp["content"] = inputs
43
  messages.append(temp)
44
 
45
+ payload = {"model": "gpt-3.5-turbo", "messages": messages, "temperature" : 0.5, "top_p": 1.0, "n" : 1, "stream": True, "presence_penalty":0, "frequency_penalty":0,}
46
 
47
  chat_counter+=1
48