fix: typo
Browse files
README.md
CHANGED
|
@@ -585,7 +585,7 @@ def chat_with_preserve_thinking(client: openai.OpenAI, model_name: str):
|
|
| 585 |
messages=messages,
|
| 586 |
stream=False,
|
| 587 |
max_tokens=4096,
|
| 588 |
-
extra_body={'thinking': {'type': 'enabled', keep: 'all'}}, # this is for official API
|
| 589 |
# extra_body={"chat_template_kwargs": {"thinking":True, "preserve_thinking": True}}, # this is for vLLM/SGLang
|
| 590 |
# We recommend enabling preserve_thinking only in think mode.
|
| 591 |
)
|
|
|
|
| 585 |
messages=messages,
|
| 586 |
stream=False,
|
| 587 |
max_tokens=4096,
|
| 588 |
+
extra_body={'thinking': {'type': 'enabled', 'keep': 'all'}}, # this is for official API
|
| 589 |
# extra_body={"chat_template_kwargs": {"thinking":True, "preserve_thinking": True}}, # this is for vLLM/SGLang
|
| 590 |
# We recommend enabling preserve_thinking only in think mode.
|
| 591 |
)
|