cnmoro commited on
Commit
4c44de9
·
verified ·
1 Parent(s): c0e8df7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -13,7 +13,7 @@ tokenizer = AutoTokenizer.from_pretrained(
13
  gen_input = tokenizer.apply_chat_template(
14
  [{"role": "user", "content": "Hello!"}],
15
  tokenize=False,
16
- add_generation_prompt=True,
17
  reasoning_effort="disabled" # <-- New option. Disable thinking completely
18
  )
19
  ```
 
13
  gen_input = tokenizer.apply_chat_template(
14
  [{"role": "user", "content": "Hello!"}],
15
  tokenize=False,
16
+ add_generation_prompt=True, # <-- Will be added anyway if reasoning is disabled, otherwise, default behavior
17
  reasoning_effort="disabled" # <-- New option. Disable thinking completely
18
  )
19
  ```