mjbuehler commited on
Commit
a1fd43c
1 Parent(s): 65860c8

Update README.md

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