GianJSX commited on
Commit
2f01946
1 Parent(s): 26a7296

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -65,6 +65,7 @@ async def gpt_call(message_history: list = []):
65
  stream = client.chat.completions.create(
66
  model=model,
67
  messages=message_history,
 
68
  stream=True,
69
  )
70
  return stream
 
65
  stream = client.chat.completions.create(
66
  model=model,
67
  messages=message_history,
68
+ max_tokens=4096,
69
  stream=True,
70
  )
71
  return stream