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