simonraj commited on
Commit
4dfa2b7
·
1 Parent(s): c624ed2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ def predict(question_choice, audio):
35
  response = openai.ChatCompletion.create(
36
  model='gpt-3.5-turbo',
37
  messages=conversation,
38
- temperature=0.7,
39
- max_tokens=500, # Limiting the response to 500 tokens
40
  stream=True
41
  )
42
 
 
35
  response = openai.ChatCompletion.create(
36
  model='gpt-3.5-turbo',
37
  messages=conversation,
38
+ temperature=0.6,
39
+ max_tokens=600, # Limiting the response to 500 tokens
40
  stream=True
41
  )
42