CoolFace
Modelpublic

NandoG-AI/Nex-N2.5-mini-GGUF

sourceHugging Faceapache-2.0updated 16d agoView on Hugging Face
0likes245downloads
Model Card

๐Ÿง  Nex-N2.5-mini โ€” GGUF

GGUF quantizations of **nex-agi/Nex-N2.5-mini** for use with `llama.cpp` and compatible runtimes (LM Studio, Open WebUI, KoboldCpp, etc.).

Multimodal (vision) support is included via a separate mmproj projector file โ€” see the Multimodal Support section.

๐Ÿ“– About Nex-N2.5

Nex-N2.5 is a next-generation family of agentic models designed for long-horizon reasoning and real-world task execution.

Building on the multimodal foundations of Nex-N2, the Nex-N2.5 family introduces significant improvements in:

  • โ€”Software engineering
  • โ€”Tool calling
  • โ€”Browser use
  • โ€”Computer use
  • โ€”Agentic workflows
  • โ€”Reasoning
  • โ€”Multimodal understanding
  • โ€”Long-context processing

Unlike traditional chat models, Nex-N2.5 is designed to continuously interact with environments, verify outcomes, self-correct, and execute complex multi-step workflows.

The family consists of:

  • โ€”Nex-N2.5-mini (this repository)
  • โ€”Nex-N2.5-Pro
  • โ€”Nex-N2.5-Max

The original model supports a native context length of 262,144 tokens (256K).


๐Ÿ“Š Model Information

Base modelnex-agi/Nex-N2.5-mini
ArchitectureQwen3.5 MoE
Parameters35B (MoE)
Context length262,144 tokens
LicenseApache 2.0
FormatGGUF
Runtimellama.cpp
ModalityText + Vision

Primary use cases: coding, software development, autonomous agents, web automation, computer use, research, knowledge work, and multimodal tasks.


๐Ÿ“ฅ Available Quantizations

โญ Recommended

QuantUse case
Q4_K_MBest overall balance (start here)
Q5_K_MHigh-quality daily driver
Q6_KNear-lossless quality

โšก Performance / Low Memory

QuantUse case
Q2_KLowest memory usage
Q3_K_MBudget systems
Q4_K_MFastest recommended balance

๐ŸŽฏ Maximum Quality

QuantUse case
Q8_0Highest practical quality

๐Ÿ“‚ Files

FileType
Nex-N2.5-mini-Q2_K.ggufWeights
Nex-N2.5-mini-Q3_K_M.ggufWeights
Nex-N2.5-mini-Q4_K_M.ggufWeights
Nex-N2.5-mini-Q5_K_M.ggufWeights
Nex-N2.5-mini-Q6_K.ggufWeights
Nex-N2.5-mini-Q8_0.ggufWeights
mmproj-Nex-N2.5-mini-F16.ggufVision projector (optional)

Download a single quant

bash
hf download <your-username>/Nex-N2.5-mini-GGUF \
  Nex-N2.5-mini-Q4_K_M.gguf \
  --local-dir ./Nex-N2.5-mini-GGUF

For vision, also download mmproj-Nex-N2.5-mini-F16.gguf.


๐Ÿ–ผ๏ธ Multimodal Support

This repository includes a vision projector for image-enabled inference:

text
mmproj-Nex-N2.5-mini-F16.gguf

Pass it alongside your chosen quant with --mmproj:

bash
llama-server \
  -m Nex-N2.5-mini-Q4_K_M.gguf \
  --mmproj mmproj-Nex-N2.5-mini-F16.gguf \
  --jinja \
  -c 8192

Text-only usage does not require the projector.


โš™๏ธ Recommended Sampling Parameters

Original Nex-AGI recommendation:

text
temperature = 0.7
top_p       = 0.95
top_k       = 40

For deterministic benchmarking (identical input โ†’ identical output):

text
temperature = 0.0
top_p       = 1.0
top_k       = 0

๐Ÿ’ญ Thinking Modes

Nex-N2.5 supports multiple reasoning modes, usually exposed through your frontend's reasoning settings:

ModeDescription
noneDirect response generation
mediumAdaptive reasoning
highExtended reasoning

๐Ÿ–ฅ๏ธ llama.cpp Usage

Chat (CLI)

bash
llama-cli \
  -m Nex-N2.5-mini-Q4_K_M.gguf \
  -c 8192 \
  --jinja

OpenAI-compatible server

bash
llama-server \
  -m Nex-N2.5-mini-Q4_K_M.gguf \
  --jinja \
  -c 8192 \
  --host 0.0.0.0 \
  --port 8080

Increase -c (context size) as memory allows โ€” the model supports up to:

text
262144 tokens

โœ… Features

  • โ€”262K context support
  • โ€”Tool calling
  • โ€”Reasoning / thinking modes
  • โ€”Multimodal vision support
  • โ€”Agentic workflows
  • โ€”Coding-optimized
  • โ€”OpenAI-compatible serving
  • โ€”Compatible with llama.cpp, LM Studio, Open WebUI, and KoboldCpp

๐Ÿ”— Links


๐Ÿ™ Credits

  • โ€”Original model: Nex-AGI
  • โ€”GGUF conversion & quantization: Nando Gaarenstroom
  • โ€”Inference runtime: ggml-org/llama.cpp

Special thanks to the local AI community for testing and feedback.


โญ Support

If these GGUF quantizations are useful to you, please consider:

  • โ€”โค๏ธ Liking the repository
  • โ€”๐Ÿ“Š Sharing benchmark results
  • โ€”๐Ÿ› Reporting issues
  • โ€”๐Ÿงช Contributing testing feedback

Happy local inferencing ๐Ÿš€