Lyte commited on
Commit
52e708e
·
verified ·
1 Parent(s): 9617e40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ def generate_text(message, history, max_tokens=2048, temperature=0.9, top_p=0.95
60
  )
61
  for streamed in response:
62
  delta = streamed["choices"][0].get("delta", {})
63
- print(delta)
64
  text_chunk = delta.get("content", "")
65
 
66
  temp += text_chunk
 
60
  )
61
  for streamed in response:
62
  delta = streamed["choices"][0].get("delta", {})
63
+ #print(delta)
64
  text_chunk = delta.get("content", "")
65
 
66
  temp += text_chunk