Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,8 @@ def generate_text(input_text, history):
|
|
26 |
for out in output:
|
27 |
stream = copy.deepcopy(out)
|
28 |
print(stream["choices"][0]["text"])
|
29 |
-
|
30 |
-
yield
|
31 |
|
32 |
|
33 |
history =["init",input_text_with_history]
|
|
|
26 |
for out in output:
|
27 |
stream = copy.deepcopy(out)
|
28 |
print(stream["choices"][0]["text"])
|
29 |
+
temp += stream["choices"][0]["text"]
|
30 |
+
yield temp
|
31 |
|
32 |
|
33 |
history =["init",input_text_with_history]
|