DKethan commited on
Commit
11866a6
·
verified ·
1 Parent(s): b2a75f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def models(text, model, seed=42):
67
 
68
  output = ""
69
  try:
70
- for token in client.chat_completion(prompt, max_tokens=52, stream=True):
71
  if token.choices and len(token.choices) > 0:
72
  delta_content = token.choices[0].delta.content
73
  if delta_content:
 
67
 
68
  output = ""
69
  try:
70
+ for token in client.chat_completion(prompt, max_tokens=200, stream=True):
71
  if token.choices and len(token.choices) > 0:
72
  delta_content = token.choices[0].delta.content
73
  if delta_content: