sd-inf commited on
Commit
e148909
·
verified ·
1 Parent(s): 513cc2d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -17,7 +17,7 @@ Astral 14B is the largest model in the Astral family. It was fine-tuned from Qwe
17
  As with usual Qwen3 models, reasoning can be toggled through the usage of ```/no_think``` or not.
18
 
19
 
20
- ### Example Prompt (ChatML Format):
21
 
22
  ```xml
23
  <|im_start|>user
@@ -25,5 +25,14 @@ What is the capital of France?
25
  <|im_end|>
26
  <|im_start|>assistant
27
  <think>
 
28
 
 
 
 
 
 
 
 
 
29
  ```
 
17
  As with usual Qwen3 models, reasoning can be toggled through the usage of ```/no_think``` or not.
18
 
19
 
20
+ ### Example Prompt (ChatML Format (THINKING)):
21
 
22
  ```xml
23
  <|im_start|>user
 
25
  <|im_end|>
26
  <|im_start|>assistant
27
  <think>
28
+ ```
29
 
30
+ ### Example Prompt (ChatML Format (NON-THINKING)):
31
+
32
+ ```xml
33
+ <|im_start|>user
34
+ What is the capital of France? /no_think
35
+ <|im_end|>
36
+ <|im_start|>assistant
37
+ <think>
38
  ```