Views
No views yet
Model Size: 80B total parameters, 3B activated | Quantization: 4-bit AWQ | VRAM: ~45GB
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen3-Coder-Next |
| Quantization Method | AWQ |
| Quantization Tool | llm-compressor |
| Calibration Dataset | nvidia/Llama-Nemotron-Post-Training-Dataset |
| Bits | 4 |
| Group Size | 32 |
| Symmetric | Yes |
| Strategy | Group |
| Observer | MSE |
| Format | pack-quantized |
| Quant Method | compressed-tensors |
| Type | Size |
|---|---|
| Original (BF16) | ~151 GB |
| Quantized (4-bit) | ~45 GB |
model.embed_tokens)lm_head)*norm*, *RMSNorm*, *input_layernorm, *post_attention_layernorm)self_attn.q_proj, self_attn.k_proj, self_attn.v_proj, self_attn.o_proj)linear_attn.in_proj_qkvz, linear_attn.in_proj_ba, linear_attn.out_proj, linear_attn.norm, linear_attn.conv1d, linear_attn.A_log, linear_attn.dt_bias)mlp.gate, shared_expert_gate)shared_expert.gate_proj, shared_expert.up_proj, shared_expert.down_proj)mtp.*)post_attention_layernorm → mlp.experts.*.gate_proj, mlp.experts.*.up_projmlp.experts.*.up_proj → mlp.experts.*.down_proj<think></think> blocks in its output. Meanwhile, specifying enable_thinking=False is no longer required.transformers.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "bullpoint/Qwen3-Coder-Next-AWQ-4bit"
4
5# load the tokenizer and the model
6tokenizer = AutoTokenizer.from_pretrained(model_name)
7model = AutoModelForCausalLM.from_pretrained(
8 model_name,
9 torch_dtype="auto",
10 device_map="auto"
11)
12
13# prepare the model input
14prompt = "Write a quick sort algorithm."
15messages = [
16 {"role": "user", "content": prompt}
17]
18text = tokenizer.apply_chat_template(
19 messages,
20 tokenize=False,
21 add_generation_prompt=True,
22)
23model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
24
25# conduct text completion
26generated_ids = model.generate(
27 **model_inputs,
28 max_new_tokens=65536
29)
30output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
31
32content = tokenizer.decode(output_ids, skip_special_tokens=True)
33
34print("content:", content)32,768.sglang or vllm to create an OpenAI-compatible API endpoint.sglang>=v0.5.8 is required for Qwen3-Coder-Next, which can be installed using:pip install 'sglang[all]>=v0.5.8'http://localhost:30000/v1 with maximum context length 256K tokens using tensor parallel on 2 GPUs.python -m sglang.launch_server --model bullpoint/Qwen3-Coder-Next-AWQ-4bit --port 30000 --tp-size 2 --tool-call-parser qwen3_coder[!Note] The default context length is 256K. Consider reducing the context length to a smaller value, e.g.,32768, if the server fails to start.
vllm>=0.15.0 is required for Qwen3-Coder-Next, which can be installed using:pip install 'vllm>=0.15.0'http://localhost:8000/v1 with maximum context length 256K tokens using tensor parallel on 2 GPUs.vllm serve bullpoint/Qwen3-Coder-Next-AWQ-4bit --port 8000 --tensor-parallel-size 2 --enable-auto-tool-choice --tool-call-parser qwen3_coder[!Note] The default context length is 256K. Consider reducing the context length to a smaller value, e.g.,32768, if the server fails to start.
1# Your tool implementation
2def square_the_number(num: float) -> dict:
3 return num ** 2
4
5# Define Tools
6tools = [
7 {
8 "type": "function",
9 "function": {
10 "name": "square_the_number",
11 "description": "output the square of the number.",
12 "parameters": {
13 "type": "object",
14 "required": ["input_num"],
15 "properties": {
16 "input_num": {
17 "type": "number",
18 "description": "input_num is a number that will be squared"
19 }
20 },
21 }
22 }
23 }
24]
25
26from openai import OpenAI
27# Define LLM
28client = OpenAI(
29 # Use a custom endpoint compatible with OpenAI API
30 base_url="http://localhost:8000/v1", # api_base
31 api_key="EMPTY"
32)
33
34messages = [{"role": "user", "content": "square the number 1024"}]
35
36completion = client.chat.completions.create(
37 messages=messages,
38 model="Qwen3-Coder-Next-AWQ-4bit",
39 max_tokens=65536,
40 tools=tools,
41)
42
43print(completion.choices[0])temperature=1.0, top_p=0.95, top_k=40.1@techreport{qwen_qwen3_coder_next_tech_report,
2 title = {Qwen3-Coder-Next Technical Report},
3 author = {{Qwen Team}},
4 url = {https://github.com/QwenLM/Qwen3-Coder/blob/main/qwen3_coder_next_tech_report.pdf},
5 note = {Accessed: 2025}
6}