lilyhof commited on
Commit
4834c3d
·
1 Parent(s): d41b583

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ with gr.Blocks() as demo:
16
  response = openai.Completion.create(
17
  engine="text-davinci-002",
18
  prompt=chat_input,
19
- max_tokens=1024 # Adjust this for response length
20
  ).choices[0].text.strip()
21
 
22
  chat_history.value.append(
 
16
  response = openai.Completion.create(
17
  engine="text-davinci-002",
18
  prompt=chat_input,
19
+ max_tokens=50 # Adjust this for response length
20
  ).choices[0].text.strip()
21
 
22
  chat_history.value.append(