Update README.md
Browse files
README.md
CHANGED
|
@@ -128,8 +128,8 @@ response = tokenizer.parse_response(output_ids)
|
|
| 128 |
|
| 129 |
# If any tool calls are present, they will be in response.tool_calls
|
| 130 |
# You can continue the chat by simply appending `response` to `messages`.
|
| 131 |
-
print("thinking content:", response
|
| 132 |
-
print("content:", response
|
| 133 |
|
| 134 |
```
|
| 135 |
|
|
|
|
| 128 |
|
| 129 |
# If any tool calls are present, they will be in response.tool_calls
|
| 130 |
# You can continue the chat by simply appending `response` to `messages`.
|
| 131 |
+
print("thinking content:", response['reasoning'])
|
| 132 |
+
print("content:", response['content'])
|
| 133 |
|
| 134 |
```
|
| 135 |
|