Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -72,7 +72,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
|
|
72 |
for response in stream:
|
73 |
output += response.token.text
|
74 |
if history:
|
75 |
-
yield "",[history,[(prompt,output)]]
|
76 |
else:
|
77 |
yield "",[(prompt,output)]
|
78 |
|
@@ -91,7 +91,7 @@ def generate(prompt, history,max_new_tokens,temperature=temperature,top_p=top_p,
|
|
91 |
print(line)
|
92 |
|
93 |
if history:
|
94 |
-
return "",[history,
|
95 |
else:
|
96 |
return "",[(prompt,output)]
|
97 |
|
|
|
72 |
for response in stream:
|
73 |
output += response.token.text
|
74 |
if history:
|
75 |
+
yield "",[[history],[(prompt,output)]]
|
76 |
else:
|
77 |
yield "",[(prompt,output)]
|
78 |
|
|
|
91 |
print(line)
|
92 |
|
93 |
if history:
|
94 |
+
return "",[[history],(prompt,output)]]
|
95 |
else:
|
96 |
return "",[(prompt,output)]
|
97 |
|