Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,7 +66,7 @@ def respond(
|
|
| 66 |
if is_reasoning_end:
|
| 67 |
response += '> **End thinking**\n\n'
|
| 68 |
is_reasoning_end = False
|
| 69 |
-
token = event.choices[0].delta.
|
| 70 |
response += token
|
| 71 |
yield response
|
| 72 |
except Exception as e:
|
|
|
|
| 66 |
if is_reasoning_end:
|
| 67 |
response += '> **End thinking**\n\n'
|
| 68 |
is_reasoning_end = False
|
| 69 |
+
token = event.choices[0].delta.answer_content
|
| 70 |
response += token
|
| 71 |
yield response
|
| 72 |
except Exception as e:
|