GGUF
qwen3
conversational
apepkuss79 commited on
Commit
28e67b8
·
verified ·
1 Parent(s): 35f8462

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -3
README.md CHANGED
@@ -24,13 +24,43 @@ quantized_by: Second State Inc.
24
 
25
  ## Run with LlamaEdge
26
 
27
- <!-- - LlamaEdge version: coming soon -->
28
 
29
- - LlamaEdge version: [v0.17.0](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.17.0) and above
 
30
 
31
  - Prompt template
32
 
33
- - Prompt type: `chatml`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  - Context size: `128000`
36
 
 
24
 
25
  ## Run with LlamaEdge
26
 
27
+ - LlamaEdge version:
28
 
29
+ - Thinking: [v0.17.0](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.17.0) and above
30
+ - No Thinking: [v0.18.2](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.18.2)
31
 
32
  - Prompt template
33
 
34
+ - Prompt type: `chatml` (for thinking)
35
+
36
+ - Prompt string
37
+
38
+ ```text
39
+ <|im_start|>system
40
+ {system_message}<|im_end|>
41
+ <|im_start|>user
42
+ {prompt}<|im_end|>
43
+ <|im_start|>assistant
44
+ ```
45
+
46
+ - Prompt type: `qwen3-no-think` (for no thinking)
47
+
48
+ - Prompt string
49
+
50
+ ```text
51
+ <|im_start|>system
52
+ {system_message}<|im_end|>
53
+ <|im_start|>user
54
+ {user_message_1}<|im_end|>
55
+ <|im_start|>assistant
56
+ {assistant_message_1}<|im_end|>
57
+ <|im_start|>user
58
+ {user_message_2}<|im_end|>
59
+ <|im_start|>assistant
60
+ <think>
61
+
62
+ </think>
63
+ ```
64
 
65
  - Context size: `128000`
66