GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

tarruda/Rio-3.5-Open-397B-GGUF overview

Intro Rio 3.5 Open 397B is a merge of Nex N2 Pro https://huggingface.co/nex agi/Nex N2 Pro and Qwen3.5 397B A17B https://huggingface.co/Qwen/Qwen3.5 397B A17B …

ggufimatrixconversationalqwen3_5_moemultimodalvisionllama.cpptext-generationbase_model:prefeitura-rio/Rio-3.5-Open-397Bbase_model:quantized:prefeitura-rio/Rio-3.5-Open-397Blicense:apache-2.0endpoints_compatibleregion:us

Runs locally from ~10.4 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

12 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
IQ2_XS/Rio-3.5-Open-397B-IQ2_XS-00001-of-00004.ggufGGUFIQ2_XS10.4 MBDownload
IQ2_XS/Rio-3.5-Open-397B-IQ2_XS-00002-of-00004.ggufGGUFIQ2_XS46.23 GBDownload
IQ2_XS/Rio-3.5-Open-397B-IQ2_XS-00003-of-00004.ggufGGUFIQ2_XS46.01 GBDownload
IQ2_XS/Rio-3.5-Open-397B-IQ2_XS-00004-of-00004.ggufGGUFIQ2_XS21.16 GBDownload
IQ3_XXS/Rio-3.5-Open-397B-IQ3_XXS-00001-of-00004.ggufGGUFIQ3_XXS10.4 MBDownload
IQ3_XXS/Rio-3.5-Open-397B-IQ3_XXS-00002-of-00004.ggufGGUFIQ3_XXS45.83 GBDownload
IQ3_XXS/Rio-3.5-Open-397B-IQ3_XXS-00003-of-00004.ggufGGUFIQ3_XXS46.34 GBDownload
IQ3_XXS/Rio-3.5-Open-397B-IQ3_XXS-00004-of-00004.ggufGGUFIQ3_XXS24.99 GBDownload
Rio-3.5-Open-397B-mmproj-BF16.ggufGGUFBF16879.0 MBDownload
Rio-3.5-Open-397B-mmproj-F16.ggufGGUFF16875.6 MBDownload
Rio-3.5-Open-397B-mmproj-Q8_0.ggufGGUFQ8_0595.3 MBDownload
imatrix.ggufGGUFGGUF1.06 GBDownload

Model Details

Model IDtarruda/Rio-3.5-Open-397B-GGUF
Authortarruda
Pipelinetext-generation
Licenseapache-2.0
Base modelprefeitura-rio/Rio-3.5-Open-397B
Last modified2026-06-19T12:35:09.000Z

Model README

---

quantized_by: tarruda

pipeline_tag: text-generation

base_model: prefeitura-rio/Rio-3.5-Open-397B

base_model_relation: quantized

license: apache-2.0

license_link: https://huggingface.co/Qwen/Qwen3.5-397B-A17B/blob/main/LICENSE

tags:

  • gguf
  • imatrix
  • conversational
  • qwen3_5_moe
  • multimodal
  • vision
  • llama.cpp

---

Intro

Rio 3.5 Open 397B is a merge of

Nex-N2-Pro and

Qwen3.5-397B-A17B. In a public

discussion, Nex-AGI reports that the released Rio weights are approximately an

element-wise 0.6 x Nex-N2-Pro + 0.4 x Qwen3.5-397B-A17B blend. I haven't

verified this myself, but the report can be found here:

https://github.com/nex-agi/Nex-N2/issues/4#issuecomment-4702181710

Nex-N2-Pro is itself built on Qwen3.5-397B-A17B. Because attribution around Rio

has been confusing, this quant explicitly credits both Nex-AGI and Qwen.

License metadata is set to Apache-2.0 to match the named upstream components:

Qwen3.5-397B-A17B and Nex-N2-Pro are both listed as Apache-2.0 on Hugging Face.

The chat template from Rio had misleading information about the model training,

so I replaced it with the original one from Qwen 3.5 397B.

Recipes

There are two quants in this repo:

The imatrix.gguf file was copied from bartowski's GGUF repo.

Why

Despite all the confusing information presented by the team behind Rio, they

created a good model that has become one of my favorite local coding

assistants.

Some people dismiss this model because of its inferior benchmark numbers

compared to N2, but I found that it improves on N2 Pro in some ways. This is

anecdotal, but it is my experience:

  • Mixed reasoning style. It normally has N2's "caveman" reasoning style, but it

seems to think less while producing similar results.

  • At the same time, it sometimes uses Qwen's style, which can be good for some

non-coding tasks.

  • It doesn't get stuck in reasoning loops.

Running

This is the script I use to run it locally:

#!/bin/sh -e

reasoning_budget_message=". Need answer.
Let's draft final."

llama-server --no-warmup --no-mmap \
  --model IQ2_XS/Rio-3.5-Open-397B-IQ2_XS-00001-of-00004.gguf \
  --mmproj Rio-3.5-Open-397B-mmproj-F16.gguf \
  --chat-template-kwargs '{"enable_thinking": true}' \
  --ctx-size 262144 -np 1 \
  --temp 1.0 --top-p 0.95 --top-k 20 \
  --reasoning-budget-message "$reasoning_budget_message"

Credits

Run tarruda/Rio-3.5-Open-397B-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models