Alexandre-Numind commited on
Commit
3b5b8b6
·
verified ·
1 Parent(s): 53cbe87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -243,4 +243,7 @@ chat_response = client.chat.completions.create(
243
  },
244
  ]
245
  )
 
 
 
246
  ```
 
243
  },
244
  ]
245
  )
246
+
247
+ reasoning = chat_response.choices[0].message.content.split("<thining>")[1].split("</thining>")[0]
248
+ answer = chat_response.choices[0].message.content.split("<answer>")[1].split("</answer>")[0]
249
  ```