pabloce commited on
Commit
04095d9
·
verified ·
1 Parent(s): 92d9ef4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ def respond(
55
  verbose=True,
56
  )
57
  response = ""
58
- for chunk in llm.stream_chat(chat_template):
59
  print(chunk.delta, end="", flush=True)
60
  response += str(chunk.delta)
61
  yield response
 
55
  verbose=True,
56
  )
57
  response = ""
58
+ for chunk in llm.stream_complete(message):
59
  print(chunk.delta, end="", flush=True)
60
  response += str(chunk.delta)
61
  yield response