Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def respond(
|
|
43 |
|
44 |
output = ""
|
45 |
for chunk in stream:
|
46 |
-
|
47 |
delta = chunk.choices[0].delta.content or ""
|
48 |
output += delta
|
49 |
yield output
|
|
|
43 |
|
44 |
output = ""
|
45 |
for chunk in stream:
|
46 |
+
print(chunk)
|
47 |
delta = chunk.choices[0].delta.content or ""
|
48 |
output += delta
|
49 |
yield output
|