Instructions to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="FINAL-Bench/Ourbox-35B-JGOS-GGUF", filename="ourbox35b-IQ1_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
Use Docker
docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Ourbox-35B-JGOS-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": "FINAL-Bench/Ourbox-35B-JGOS-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
- Ollama
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with Ollama:
ollama run hf.co/FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
- Unsloth Studio
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for FINAL-Bench/Ourbox-35B-JGOS-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for FINAL-Bench/Ourbox-35B-JGOS-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for FINAL-Bench/Ourbox-35B-JGOS-GGUF to start chatting
- Pi
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-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 FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FINAL-Bench/Ourbox-35B-JGOS-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 "FINAL-Bench/Ourbox-35B-JGOS-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"
- Docker Model Runner
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
- Lemonade
How to use FINAL-Bench/Ourbox-35B-JGOS-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FINAL-Bench/Ourbox-35B-JGOS-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ourbox-35B-JGOS-GGUF-Q4_K_M
List all available models
lemonade list
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)Ourbox-35B-JGOS โ GGUF (consumer / edge)
GGUF quantizations of Ourbox-35B-JGOS โ a 34.7B-total / ~3B-active (A3B) sparse Mixture-of-Experts reasoning model (Qwen3.5-MoE / Qwen3-Next family: Gated-DeltaNet linear attention interleaved with full attention, 256 experts top-8).
These files are built to run a 35B-class reasoner on ordinary consumer hardware โ including an 8 GB gaming laptop.
Highlight โ measured on a gaming laptop
20.01 tok/s decode for a 34.7B model on an RTX 5060 Laptop GPU (8 GB VRAM) + an AVX2-only laptop CPU. Coherent chain-of-thought output. Measured with
llama-bench(tg64, stable ยฑ 0.24).
The whole point of an A3B model is that decode cost scales with active parameters (~3B), not total (34.7B). So the experts sit in system RAM, only attention/router/shared layers occupy the GPU, and per token the machine moves ~1.45 GB instead of a dense 34B's ~16.7 GB โ about 11ร less memory traffic.
Same weights, both extremes (measured)
The identical model spans the entire hardware spectrum:
| Tier | Hardware | Throughput | Serving |
|---|---|---|---|
| Datacenter ceiling | single B200 | 18,057 tok/s aggregate | VIDRAFT optimized serving (VKAE) |
| Consumer floor | 8 GB laptop (RTX 5060) | 20.01 tok/s single-stream | open llama.cpp, Q3_K_M (VKUE) |
Both numbers are measured. One set of weights, from a datacenter B200 down to a gaming laptop.
Files
| File | Quant | Size | Notes |
|---|---|---|---|
ourbox35b-Q3_K_M.gguf |
Q3_K_M (~3.9 bpw) | 16.8 GB | recommended for 8โ12 GB VRAM + 24โ32 GB RAM |
ourbox35b-Q4_K_M.gguf |
Q4_K_M (~4.5 bpw) | 21.2 GB | higher quality; needs a bit more RAM headroom |
How to run (llama.cpp)
Requires a recent llama.cpp build with Qwen3.5-MoE / qwen35moe support (Feb 2026+; a current release is recommended). On Blackwell GPUs use the CUDA-13.x build.
The optimal consumer configuration keeps all experts on CPU and puts attention/router/shared layers on the GPU:
# 8 GB VRAM laptop โ experts on CPU, rest on GPU
llama-bench -m ourbox35b-Q3_K_M.gguf -ngl 99 --n-cpu-moe 99 -n 128 -p 512
# interactive
llama-cli -m ourbox35b-Q3_K_M.gguf -ngl 99 --n-cpu-moe 99 -c 8192 -p "..."
Tip: --n-cpu-moe 99 (all experts on CPU) was measured to be the optimum on an 8 GB card โ partially offloading experts to the GPU was slower (per-layer GPUโCPU transfer overhead outweighs the GPU compute gain).
Objective performance context
How this A3B result compares to running a dense 32โ35B (same ~16 GB footprint) โ decode is memory-bandwidth bound, so a dense model that reads all its params per token collapses on an 8 GB card, while this A3B stays usable.
Head-to-head A/B, measured by us on the identical laptop (same 8 GB GPU, same engine, same Q3_K_M class, near-identical footprint):
| Model | Active params | Footprint | Decode (same laptop) | Basis |
|---|---|---|---|---|
| Ourbox-35B (A3B), this repo | ~3 B | 15.6 GiB | 20.01 tok/s | measured |
| Qwen2.5-32B (dense) | 32.8 B | 14.84 GiB | 5.36 tok/s | measured (our A/B) |
โ 3.7ร faster from sparsity alone, identical hardware. The only variable is active parameters (3 B vs 32.8 B).
External reference points (for context โ not our hardware):
| Setup | Hardware | 35B-class decode | Basis |
|---|---|---|---|
| Dense 32B, best-case 8 GB | RTX 4060 8 GB, short ctx, minimal offload | 10.8 tok/s | published |
| Dense 30B+, forced 8 GB offload | 8 GB consumer GPU | 1โ3 tok/s ("impractical") | published guides |
| Dense 32B, fully in VRAM | RTX 3090 / 4090 24 GB desktop (~$700โ2,100) | 30โ40 tok/s | published |
Takeaways (honest):
- On the identical laptop, we measured a dense 32B (Qwen2.5-32B,
same footprint) at 5.36 tok/s vs this A3B at 20.01 โ a 3.7ร speedup attributable purely to A3B sparsity, and **2ร even the best-documented dense-32B result on any 8 GB machine** (10.8). - This lifts a 35B-class model from the field's "impractical on 8 GB" band (1โ3 tok/s) to a genuinely usable interactive speed.
- To exceed 20 tok/s on a dense 35B you normally need a 24 GB desktop GPU ($700โ2,100). This runs on an 8 GB laptop.
- We do not claim to beat a 24 GB card streaming a model fully in VRAM (those reach 30โ40 tok/s dense, and 87โ196 tok/s for an A3B held entirely in VRAM). This is explicitly the 8 GB-tier result.
- Numbers labeled estimate are reasoned from public offload-cliff benchmarks, not single measurements.
tg64is pure token-generation; real chat with long context is lower for every model.
Live demo
Try the identical weights on GPU vs a GPU-less CPU box, live:
- GPU vs CPU (one box): https://huggingface.co/spaces/FINAL-Bench/Ourbox-35B-VKUE-Demo
- CPU-only: https://huggingface.co/spaces/FINAL-Bench/Ourbox-35B-VKUE-CPU
- VKUE efficiency leaderboard: https://huggingface.co/spaces/FINAL-Bench/VKUE
Notes
- Text-only. An auxiliary prediction head that the base model carries is omitted in these GGUF files; it is not needed for standard decoding.
- Part of VIDRAFT's efficiency-serving line โ the same weights run from a single datacenter GPU down to a consumer laptop.
- Downloads last month
- 1
1-bit
2-bit
3-bit
4-bit
Model tree for FINAL-Bench/Ourbox-35B-JGOS-GGUF
Base model
FINAL-Bench/Ourbox-35B-JGOS
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="FINAL-Bench/Ourbox-35B-JGOS-GGUF", filename="", )