tatihden commited on
Commit
e61db62
·
verified ·
1 Parent(s): 7c5b9ff

Update app.py

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