yashlara commited on
Commit
853cc96
·
verified ·
1 Parent(s): a89e88c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -130,12 +130,15 @@ Then call `/v1/chat/completions` with `tools=[...]` as you would with any OpenAI
130
  ### Recommended sampling
131
 
132
  ```
133
- temperature = 0.6
 
134
  top_p = 0.8
135
  top_k = 20
 
 
136
  ```
137
 
138
- These match the Qwen3-14B base recommendations and work well for orchestration. Lower the temperature for stricter tool selection.
139
 
140
  ## Training
141
 
 
130
  ### Recommended sampling
131
 
132
  ```
133
+ enable_thinking = false
134
+ temperature = 0.7
135
  top_p = 0.8
136
  top_k = 20
137
+ min_p = 0
138
+ presence_penalty = 1
139
  ```
140
 
141
+ MagenticBrain runs in non-thinking mode keep `enable_thinking=False` in the chat template. Do not use greedy decoding; it causes endless repetition on this model family. Lower the temperature if you need stricter, more deterministic tool selection.
142
 
143
  ## Training
144