akhaliq HF Staff commited on
Commit
4233e75
·
1 Parent(s): de1fa24

max tokens to 10000

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1010,7 +1010,7 @@ This will help me create a better design for you."""
1010
  model=_current_model["id"],
1011
  messages=messages,
1012
  stream=True,
1013
- max_tokens=5000
1014
  )
1015
  content = ""
1016
  for chunk in completion:
 
1010
  model=_current_model["id"],
1011
  messages=messages,
1012
  stream=True,
1013
+ max_tokens=10000
1014
  )
1015
  content = ""
1016
  for chunk in completion: