DEV.co
Open-Source LLM · Qwen

Qwen3-Coder-Next

Qwen3-Coder-Next is a 80B-parameter open-weight language model optimized for coding tasks and agentic workflows. It uses a mixture-of-experts architecture with only 3B activated parameters per token, enabling efficient inference while maintaining performance comparable to much larger models. Licensed under Apache 2.0, it is not gated and can be self-hosted. The model supports a 256k native context length and integrates with popular deployment frameworks (vLLM, SGLang) and IDE tools (Claude Code, Qwen Code, Cline, etc.).

Source: HuggingFace — huggingface.co/Qwen/Qwen3-Coder-Next
79.7B
Parameters
apache-2.0
License (OSI-approved)
Unknown
Context (tokens)
1.2M
Downloads (30d)

Key facts

Objective fields from the source. Values we can't verify are shown as “Unknown” rather than guessed.

FieldValue
DeveloperQwen
Parameters79.7B
Context windowUnknown
Licenseapache-2.0 — OSI-approved
Modality / tasktext-generation
Gated on HuggingFaceNo
Downloads1.2M
Likes1.5k
Last updated2026-02-03
SourceQwen/Qwen3-Coder-Next

What Qwen3-Coder-Next is

Qwen3-Coder-Next is a causal language model with 80B total parameters (79B non-embedding) structured as a hybrid mixture-of-experts (MoE) architecture. It features 48 layers with 12 repeating blocks of gated DeltaNet + MoE layers followed by gated attention + MoE layers. The model activates 10 out of 512 experts per token, yielding ~3B active parameters. It has 262,144-token (256k) native context length, supports tool calling for agentic coding, and is trained without reasoning blocks (non-thinking mode). The model card provides exact architectural specifications (head dimensions, expert counts, intermediate dimensions) and specifies sampling parameters (temperature=1.0, top_p=0.95, top_k=40) for optimal performance.

Quickstart

Run Qwen3-Coder-Next locally

Load the open weights with 🤗 Transformers and generate — the same model, self-hosted.

quickstart.pypython
from transformers import pipelinepipe = pipeline("text-generation", model="Qwen/Qwen3-Coder-Next")out = pipe("Explain retrieval-augmented generation in one sentence.",           max_new_tokens=128)print(out[0]["generated_text"])

Swap in vLLM or Ollama for production-grade serving. DEV.co can stand up the inference stack.

Deployment

How you'd run it

A typical self-hosted path — open weights, an inference server, your application.

DEV.co builds each layer — from GPU infrastructure to the application.

Best use cases

Local coding agent deployment

With 3B activated parameters and Apache 2.0 licensing, the model is well-suited for self-hosted coding assistants and local development environments where latency and cost are constraints. Integrates with Ollama, LMStudio, llama.cpp, and MLX-LM.

IDE plugin and tool-calling workflows

Designed explicitly for integration with Claude Code, Qwen Code, Cline, and similar tools. Excels at structured tool calling, making it ideal for scenarios requiring precise function invocation and recovery from failures.

Long-context codebase analysis

The 256k context window enables analysis and modification of entire large codebases without chunking, reducing context-switching overhead in refactoring and maintenance tasks.

Running & fine-tuning it

ESTIMATE: Full precision (bfloat16) inference of 80B parameters requires ~160GB VRAM for model weights alone; multi-GPU setup (4+ GPUs with tensor parallelism) recommended. The model card explicitly notes OOM issues and suggests reducing context length to 32k if memory is constrained. Quantized versions (int8, int4) would reduce footprint but no quantized variants are mentioned in the provided data. vLLM and SGLang support tensor parallelism across multiple GPUs; single-GPU deployment feasible only with aggressive quantization or reduced context.

Not documented in provided model card. The model is open-weight and uses standard transformer architecture compatible with common fine-tuning libraries (Hugging Face Transformers, TRL). No mention of LoRA/QLoRA support or fine-tuning recipes. Fine-tuning 80B parameters is compute-intensive; verify infrastructure before attempting. Contact Qwen team or consult technical report for guidance.

When to avoid it — and what to weigh

  • Reasoning-heavy tasks requiring explicit chain-of-thought — Model operates in non-thinking mode and does not generate <think></think> blocks. Unsuitable for tasks where explicit reasoning transparency is required.
  • Single-GPU inference with limited VRAM — While efficient relative to its parameter count, 80B models typically require multiple GPUs for reasonable throughput. Full precision requires significant VRAM; OOM is noted in docs as a common issue even with reduced context.
  • Real-time, ultra-low latency applications — Despite MoE efficiency, inference latency for 256k context or large completions will exceed sub-100ms SLA requirements typical of real-time user-facing products.
  • Proprietary or closed-source product deployment with customization constraints — While Apache 2.0 allows commercial use, fine-tuning a 80B model requires substantial compute and expertise. Heavy customization may be impractical without significant resources.

License & commercial use

Licensed under Apache 2.0, a permissive OSI-approved open-source license. No attribution requirements beyond standard license inclusion. No usage restrictions (commercial, academic, or otherwise) imposed by the license itself.

Apache 2.0 is a permissive open-source license that explicitly permits commercial use, modification, and distribution with minimal restrictions (license/copyright notice required). Model is not gated and fully open-weight. Commercial deployment is legally permissible. However, note: (1) Commercial viability depends on infrastructure cost (multi-GPU setup) and integration effort; (2) No warranties, support, or SLAs provided by Qwen in the license; (3) Verify compliance with any third-party dependencies used in deployment frameworks (vLLM, SGLang).

DEV.co evaluation signals

Editorial assessment — not user reviews. Directional, with an explicit confidence level.

SignalAssessment
MaintenanceActive
DocumentationStrong
License clarityClear
Deployment complexityModerate
DEV.co fitStrong
Assessment confidenceHigh
Security considerations

Standard LLM risks apply: no explicit security audits or adversarial robustness claims in provided data. Model is open-weight, enabling local inspection of weights but also allowing modification/misuse. Tool-calling capability introduces injection risk if tools are user-supplied or untrusted. Deployment with vLLM/SGLang should follow framework security best practices (API authentication, input validation). No mention of prompt injection defenses, jailbreak resistance, or content filtering. For production use, implement rate limiting, logging, and access controls independent of the model.

Alternatives to consider

Qwen2.5-Coder-32B

Official smaller sibling from Qwen; fewer parameters, lower deployment cost, but potentially reduced capability for complex agentic tasks. Consider if 80B is over-provisioned.

DeepSeek-Coder-V2 (or similar open-weight code LLMs)

Comparable open-source coding models may offer different efficiency/capability tradeoffs. Requires direct benchmark comparison for your use case.

Claude 3.5 Sonnet / GPT-4o (proprietary)

If self-hosting and multi-GPU deployment are not viable, proprietary APIs offer turnkey agentic coding (Claude Code agent, GPT-4 with tools). Trade open-weight flexibility for operational simplicity and Anthropic/OpenAI support.

Software development agency

Ship Qwen3-Coder-Next with senior software developers

Qwen3-Coder-Next is best suited for teams with multi-GPU infrastructure seeking self-hosted, open-weight coding agents. Start with a proof-of-concept on a 2-4 GPU cluster, test long-context performance on your largest codebases, and evaluate tool-calling accuracy against your IDE integration targets. Consult the GitHub repository and technical report for detailed benchmarks and optimization tips.

Talk to DEV.co

Related open-source tools

Surfaced by semantic similarity across the DEV.co open-source index.

Related on DEV.co

Explore the category and the services that help you build with it.

Qwen3-Coder-Next FAQ

Can I use Qwen3-Coder-Next commercially?
Yes. Apache 2.0 is a permissive open-source license that explicitly permits commercial use without restriction. You may deploy, modify, and distribute the model commercially, provided you include the license notice. No warranty or support is provided by Qwen under the license.
What GPU hardware do I need to run this model?
Estimated 160GB VRAM for full bfloat16 inference. Minimum 4 GPUs recommended for reasonable throughput using tensor parallelism. Single-GPU deployment requires aggressive quantization (int4/int8) but is not documented. Test on a 2-GPU setup with reduced context (32k) first before committing to hardware.
Does this model support fine-tuning or training?
Not documented. The model is open-weight and compatible with standard Hugging Face fine-tuning tools, but fine-tuning 80B parameters is compute-intensive. No recipes or LoRA support are provided. Consult the GitHub repository or technical report for guidance.
What is the native context length, and can I reduce it?
Native context length is 262,144 tokens (256k). The model card explicitly notes OOM issues with full-length inference; reducing to 32k is recommended for memory-constrained setups. Both vLLM and SGLang support context-length reduction at serving time.

Software development & web development with DEV.co

Adopting Qwen3-Coder-Next is usually one piece of a larger software development effort. As a software development agency, DEV.co provides software development services and web development expertise — pairing senior software developers and web developers with your team to design, build, and operate open-source llms software in production.

Ready to Deploy Qwen3-Coder-Next?

Qwen3-Coder-Next is best suited for teams with multi-GPU infrastructure seeking self-hosted, open-weight coding agents. Start with a proof-of-concept on a 2-4 GPU cluster, test long-context performance on your largest codebases, and evaluate tool-calling accuracy against your IDE integration targets. Consult the GitHub repository and technical report for detailed benchmarks and optimization tips.