Omnibus commited on
Commit
956a32c
·
verified ·
1 Parent(s): 03834da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ def chat_inf(system_prompt,prompt,history):
36
  output = ""
37
  for response in stream:
38
  output += response.token.text
39
- yield [(prompt,output)]
40
 
41
 
42
 
 
36
  output = ""
37
  for response in stream:
38
  output += response.token.text
39
+ yield [history,(prompt,output)]
40
 
41
 
42