prateekbh commited on
Commit
acc9446
·
verified ·
1 Parent(s): 48030b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -72,7 +72,6 @@ def interactWithModel(history, system_prompt, prompt):
72
  output = ""
73
  for response in stream:
74
  output += response.token.text
75
- yield [(prompt, output)]
76
  history.append((prompt, output))
77
  return history
78
 
 
72
  output = ""
73
  for response in stream:
74
  output += response.token.text
 
75
  history.append((prompt, output))
76
  return history
77