FuryMartin commited on
Commit
2b2b88e
·
verified ·
1 Parent(s): d9cb81b

fix: typo

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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
  )