Update app.py
Browse files
app.py
CHANGED
|
@@ -546,7 +546,7 @@ def handsome_chat_completions():
|
|
| 546 |
reasoning_content = choice["message"]["reasoning_content"]
|
| 547 |
reasoning_content = reasoning_content.replace('\n', '\n> ')
|
| 548 |
reasoning_content = '> ' + reasoning_content
|
| 549 |
-
formatted_reasoning = f"{
|
| 550 |
response_content += formatted_reasoning + "\n"
|
| 551 |
if "content" in choice["message"]:
|
| 552 |
response_content += choice["message"]["content"]
|
|
|
|
| 546 |
reasoning_content = choice["message"]["reasoning_content"]
|
| 547 |
reasoning_content = reasoning_content.replace('\n', '\n> ')
|
| 548 |
reasoning_content = '> ' + reasoning_content
|
| 549 |
+
formatted_reasoning = f"{reasoning_content}\n"
|
| 550 |
response_content += formatted_reasoning + "\n"
|
| 551 |
if "content" in choice["message"]:
|
| 552 |
response_content += choice["message"]["content"]
|