00index commited on
Commit
aa66e19
·
verified ·
1 Parent(s): 11f1e46

Model card: sync github.com/nex-agi/Nex-N2.5 @ 0e5ba9c (HF collection link, Thinking Control section)

Browse files
Files changed (1) hide show
  1. README.md +22 -2
README.md CHANGED
@@ -12,7 +12,7 @@ library_name: transformers
12
  <div align="center">
13
  <p>
14
  💻 <a href="https://github.com/nex-agi/Nex-N2.5">GitHub</a>&nbsp; · &nbsp;
15
- 🤗 <a href="https://huggingface.co/nex-agi/Nex-N2.5-Pro">Hugging Face</a>&nbsp; · &nbsp;
16
  🌐 <a href="https://nex-agi.com/">Website</a>&nbsp; · &nbsp;
17
  🔀 <a href="https://openrouter.ai/nex-agi/nex-n2.5-pro">OpenRouter (Pro)</a>
18
  </p>
@@ -46,7 +46,7 @@ Model weights for the Nex-N2.5 family will be released as open source, alongside
46
  - **Nex-N2.5-Pro:** [Hugging Face](https://huggingface.co/nex-agi/Nex-N2.5-Pro) | [ModelScope](https://modelscope.cn/models/nex-agi/Nex-N2.5-Pro)
47
  - **Nex-N2.5-mini:** [Hugging Face](https://huggingface.co/nex-agi/Nex-N2.5-mini) | [ModelScope](https://modelscope.cn/models/nex-agi/Nex-N2.5-mini)
48
  - **Hosted Access:** [OpenRouter (Nex-N2.5-Pro)](https://openrouter.ai/nex-agi/nex-n2.5-pro)
49
- - **Websites:** [Global](https://nex-agi.com/) | [China](https://nex-agi.cn/)
50
 
51
  We welcome developers and enterprises to integrate and try Nex-N2.5 and share their feedback.
52
 
@@ -258,3 +258,23 @@ Nex-series models emit explicit reasoning traces. Add the `--reasoning-parser qw
258
  ```bash
259
  python -m sglang.launch_server --model-path /path/to/your/model --tool-call-parser qwen3_coder --reasoning-parser qwen3
260
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  <div align="center">
13
  <p>
14
  💻 <a href="https://github.com/nex-agi/Nex-N2.5">GitHub</a>&nbsp; · &nbsp;
15
+ 🤗 <a href="https://huggingface.co/collections/nex-agi/nex-n25">Hugging Face</a>&nbsp; · &nbsp;
16
  🌐 <a href="https://nex-agi.com/">Website</a>&nbsp; · &nbsp;
17
  🔀 <a href="https://openrouter.ai/nex-agi/nex-n2.5-pro">OpenRouter (Pro)</a>
18
  </p>
 
46
  - **Nex-N2.5-Pro:** [Hugging Face](https://huggingface.co/nex-agi/Nex-N2.5-Pro) | [ModelScope](https://modelscope.cn/models/nex-agi/Nex-N2.5-Pro)
47
  - **Nex-N2.5-mini:** [Hugging Face](https://huggingface.co/nex-agi/Nex-N2.5-mini) | [ModelScope](https://modelscope.cn/models/nex-agi/Nex-N2.5-mini)
48
  - **Hosted Access:** [OpenRouter (Nex-N2.5-Pro)](https://openrouter.ai/nex-agi/nex-n2.5-pro)
49
+ - **Websites:** [Global](https://nex-agi.com/)
50
 
51
  We welcome developers and enterprises to integrate and try Nex-N2.5 and share their feedback.
52
 
 
258
  ```bash
259
  python -m sglang.launch_server --model-path /path/to/your/model --tool-call-parser qwen3_coder --reasoning-parser qwen3
260
  ```
261
+
262
+ ### Thinking Control
263
+
264
+ Nex-N2.5 models support three thinking modes, selected per request with the OpenAI-compatible `reasoning_effort` field:
265
+
266
+ | `reasoning_effort` | Mode | Behavior |
267
+ |---|---|---|
268
+ | `"none"` | Thinking off | The model answers directly, without a reasoning trace. |
269
+ | `"medium"` (default) | Adaptive thinking | The model decides per request whether, and how much, to reason. |
270
+ | `"high"` | Thinking on | The model always produces a full reasoning trace before answering. |
271
+
272
+ ```bash
273
+ curl http://localhost:30000/v1/chat/completions \
274
+ -H "Content-Type: application/json" \
275
+ -d '{
276
+ "model": "nex-agi/Nex-N2.5-Pro",
277
+ "messages": [{"role": "user", "content": "How many prime numbers are there below 100?"}],
278
+ "reasoning_effort": "high"
279
+ }'
280
+ ```