Update app.py
Browse files
app.py
CHANGED
|
@@ -25,6 +25,7 @@ def respond(
|
|
| 25 |
token = ""
|
| 26 |
if len(choices) and choices[0].delta.content:
|
| 27 |
token = choices[0].delta.content
|
|
|
|
| 28 |
|
| 29 |
response += token
|
| 30 |
yield response
|
|
|
|
| 25 |
token = ""
|
| 26 |
if len(choices) and choices[0].delta.content:
|
| 27 |
token = choices[0].delta.content
|
| 28 |
+
print("token", token)
|
| 29 |
|
| 30 |
response += token
|
| 31 |
yield response
|