Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
|
|
73 |
output += response.token.text
|
74 |
if history:
|
75 |
print (history)
|
76 |
-
yield "",
|
77 |
else:
|
78 |
yield "",[(prompt,output)]
|
79 |
|
|
|
73 |
output += response.token.text
|
74 |
if history:
|
75 |
print (history)
|
76 |
+
yield "",history.append(prompt,output)
|
77 |
else:
|
78 |
yield "",[(prompt,output)]
|
79 |
|