tatihden commited on
Commit
7514f6f
·
verified ·
1 Parent(s): 7d023f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ def chat_inf(system_prompt, prompt, history, client_choice, seed, temp, tokens,
61
  output = ""
62
 
63
  for response in stream:
64
- output = response.replace(prompt, "")
65
  yield [(prompt, output)]
66
  history.append((prompt, output))
67
  yield history
 
61
  output = ""
62
 
63
  for response in stream:
64
+ output+= response
65
  yield [(prompt, output)]
66
  history.append((prompt, output))
67
  yield history