Spaces:
Runtime error
Runtime error
remove print
Browse files
app.py
CHANGED
|
@@ -35,7 +35,6 @@ def generate_text(input_text, history):
|
|
| 35 |
)
|
| 36 |
for out in output:
|
| 37 |
stream = copy.deepcopy(out)
|
| 38 |
-
print(stream["choices"][0]["text"])
|
| 39 |
temp += stream["choices"][0]["text"]
|
| 40 |
yield temp
|
| 41 |
|
|
|
|
| 35 |
)
|
| 36 |
for out in output:
|
| 37 |
stream = copy.deepcopy(out)
|
|
|
|
| 38 |
temp += stream["choices"][0]["text"]
|
| 39 |
yield temp
|
| 40 |
|