ollama - 💡(How to fix) Fix quwen3-next:80b failed to load 500 server error on ollama v0.17.7 [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
ollama/ollama#14700Fetched 2026-04-08 00:32:46
View on GitHub
Comments
1
Participants
2
Timeline
3
Reactions
1
Author
Timeline (top)
closed ×1commented ×1labeled ×1

Error Message

quwen3-next:80b failed to load 500 server error on ollama v0.17.7 500 Internal Server Error: failed to initialize model: qwen3next: layer 0 missing attn_qkv/attn_gate projections

RAW_BUFFERClick to expand / collapse

What is the issue?

hi there , having issues with new ollama versions

quwen3-next:80b failed to load 500 server error on ollama v0.17.7 500 Internal Server Error: failed to initialize model: qwen3next: layer 0 missing attn_qkv/attn_gate projections

the older ollama version before qwen3.5 support used to work and still does i think v0.17.0 works but the later versions supporting qwen3.5 don't work with qwen3next anymore.

im using the quwen3-next:80b model from ollama website.

Relevant log output

OS

Windows

GPU

Nvidia

CPU

AMD

Ollama version

v0.17.7

extent analysis

Fix Plan

The fix involves updating the model configuration to include the missing attn_qkv and attn_gate projections for the qwen3-next:80b model.

Step-by-Step Solution

  • Update the ollama configuration file to include the missing projections:
model_config = {
    'qwen3-next:80b': {
        'layer_0': {
            'attn_qkv': True,
            'attn_gate': True
        }
    }
}
  • Alternatively, you can try downgrading to ollama version v0.17.0 which is reported to work with the qwen3-next:80b model.
  • If you are using a config.json file, update it with the following:
{
    "models": {
        "qwen3-next:80b": {
            "layer_0": {
                "attn_qkv": true,
                "attn_gate": true
            }
        }
    }
}

Verification

To verify that the fix worked, restart the ollama server and try loading the qwen3-next:80b model again. If the model loads successfully, the fix was successful.

Extra Tips

  • Make sure to update the ollama configuration file correctly to avoid any syntax errors.
  • If you are still experiencing issues, try checking the ollama documentation for any specific requirements for the qwen3-next:80b model.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING