Update README.md
Browse files
README.md
CHANGED
|
@@ -552,8 +552,9 @@ def chat_with_video(client: openai.OpenAI, model_name:str):
|
|
| 552 |
print(f'response: {response.choices[0].message.content}')
|
| 553 |
return response.choices[0].message.content
|
| 554 |
```
|
|
|
|
| 555 |
### Preserve Thinking
|
| 556 |
-
Kimi K2.6 supports `preserve_thinking` mode, which
|
| 557 |
|
| 558 |
This feature is disabled by default. The following example demonstrates how to call K2.6 API in `preserve_thinking` mode:
|
| 559 |
|
|
|
|
| 552 |
print(f'response: {response.choices[0].message.content}')
|
| 553 |
return response.choices[0].message.content
|
| 554 |
```
|
| 555 |
+
|
| 556 |
### Preserve Thinking
|
| 557 |
+
Kimi K2.6 supports `preserve_thinking` mode, which retains full reasoning content across multi-turn interactions and enhances performance in coding agent scenarios.
|
| 558 |
|
| 559 |
This feature is disabled by default. The following example demonstrates how to call K2.6 API in `preserve_thinking` mode:
|
| 560 |
|