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