Update README.md
Browse files
README.md
CHANGED
@@ -33,6 +33,13 @@ tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True,
|
|
33 |
)
|
34 |
```
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
## Inference example
|
37 |
|
38 |
### Simple inference:
|
|
|
33 |
)
|
34 |
```
|
35 |
|
36 |
+
The model produces a structured thinking section before answering, indicated by these special tokens:
|
37 |
+
|
38 |
+
```python
|
39 |
+
thinking_start = '<|thinking|>'
|
40 |
+
thinking_end = '<|/thinking|>'
|
41 |
+
```
|
42 |
+
|
43 |
## Inference example
|
44 |
|
45 |
### Simple inference:
|