qwen3-coder-next
Qwen3-Coder-Next: 80 B / 3 B-active coding-agent MoE. #1 community-cited open coding agent; "DGX Spark practitioner favorite" per the NVIDIA forum. Distinct from qwen3-next-80b (instruct); this one is coder-tuned with the `qwen3_coder` tool-call format.
GadflyII/Qwen3-Coder-Next-NVFP4 NVFP4 47 GB 3B active 80B total parser · qwen3_coder
Transcripts
simple
Reply with exactly the five words: hello from hermes on spark.
hello from hermes on spark
math
What is 127 times 49? Answer with just the number.
6223
reasoning
A farmer has 17 sheep. All but 9 die. How many remain? Answer with one short sentence.
9 sheep remain.
tool_ls
Use the shell tool to list files in /tmp. Tell me only how many there are.
556 files in `/tmp`.
code
Write a one-line Python expression that returns the sum of squares from 1 to 10.
```python
sum(i**2 for i in range(1, 11))
```