Update README.md
Browse files
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 |
```
|