Text Generation
GGUF
llama.cpp
qwen3.5
qwen3.5-moe
quantized
image-text-to-text
multimodal
Mixture of Experts
long-context
tool-calling
conversational
imatrix
Instructions to use ngquocvinh/Nex-N2.5-mini-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ngquocvinh/Nex-N2.5-mini-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Use Docker
docker model run hf.co/ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use ngquocvinh/Nex-N2.5-mini-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ngquocvinh/Nex-N2.5-mini-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ngquocvinh/Nex-N2.5-mini-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
- Ollama
How to use ngquocvinh/Nex-N2.5-mini-GGUF with Ollama:
ollama run hf.co/ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use ngquocvinh/Nex-N2.5-mini-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use ngquocvinh/Nex-N2.5-mini-GGUF with Docker Model Runner:
docker model run hf.co/ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
- Lemonade
How to use ngquocvinh/Nex-N2.5-mini-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Nex-N2.5-mini-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use ngquocvinh/Nex-N2.5-mini-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ngquocvinh/Nex-N2.5-mini-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "ngquocvinh/Nex-N2.5-mini-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
| model file_size_bytes file_size_gib relative_to_bf16_pct prompt_tok_s generation_tok_s llama_bench_repetitions | |
| Nex-N2.5-mini-BF16.gguf 69376636992 64.61 100.0 81.49 15.58 3 | |
| Nex-N2.5-mini-IQ1_M.gguf 8239208480 7.67 11.9 708.86 113.61 3 | |
| Nex-N2.5-mini-IQ2_XS.gguf 10507030560 9.79 15.1 1306.48 107.88 3 | |
| Nex-N2.5-mini-IQ3_M.gguf 15429530112 14.37 22.2 1409.79 103.02 3 | |
| Nex-N2.5-mini-IQ3_S.gguf 15239434752 14.19 22.0 1410.51 101.16 3 | |
| Nex-N2.5-mini-IQ4_NL.gguf 19768289792 18.41 28.5 952.33 77.28 3 | |
| Nex-N2.5-mini-IQ4_XS.gguf 18717788672 17.43 27.0 1265.77 83.57 3 | |
| Nex-N2.5-mini-Q1_0.gguf 5316528160 4.95 7.7 2556.30 141.15 3 | |
| Nex-N2.5-mini-Q2_K.gguf 12939593760 12.05 18.7 1193.68 110.57 3 | |
| Nex-N2.5-mini-Q2_K_S.gguf 12141107712 11.31 17.5 1171.30 120.28 3 | |
| Nex-N2.5-mini-Q3_K_L.gguf 18104340992 16.86 26.1 1341.48 97.17 3 | |
| Nex-N2.5-mini-Q3_K_M.gguf 16764764192 15.61 24.2 1338.77 100.31 3 | |
| Nex-N2.5-mini-Q4_K_M.gguf 21166757920 19.71 30.5 702.23 78.02 3 | |
| Nex-N2.5-mini-Q5_K_M.gguf 24729131040 23.03 35.6 438.27 53.74 3 | |
| Nex-N2.5-mini-Q6_K.gguf 28514152480 26.56 41.1 342.70 44.63 3 | |
| Nex-N2.5-mini-Q8_0.gguf 36903139072 34.37 53.2 162.42 21.57 3 | |