Rocketknight1 HF Staff commited on
Commit
3e89287
·
verified ·
1 Parent(s): 8a49379

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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.reasoning)
132
- print("content:", response.content)
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