Instructions to use openjev/openjev-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 openjev/openjev-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 openjev/openjev-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf openjev/openjev-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 openjev/openjev-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf openjev/openjev-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 openjev/openjev-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf openjev/openjev-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 openjev/openjev-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf openjev/openjev-GGUF:Q4_K_M
Use Docker
docker model run hf.co/openjev/openjev-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use openjev/openjev-GGUF with Ollama:
ollama run hf.co/openjev/openjev-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use openjev/openjev-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf openjev/openjev-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": "openjev/openjev-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use openjev/openjev-GGUF with Docker Model Runner:
docker model run hf.co/openjev/openjev-GGUF:Q4_K_M
- Lemonade
How to use openjev/openjev-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull openjev/openjev-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.openjev-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use openjev/openjev-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 openjev/openjev-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 openjev/openjev-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use openjev/openjev-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf openjev/openjev-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 "openjev/openjev-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"
OpenJev, GGUF
The GGUF files of OpenJev, the open 27B one-pass decision model for browser and desktop agents, quantized with llama.cpp for 24 GB cards, Macs and CPUs. Text only (no vision tower).
| file | bits | size | fits |
|---|---|---|---|
| OpenJev-Q4_K_M.gguf | ~4.8 | 16.5 GB | 24 GB cards (RTX 3090 / 4090), 32 GB Macs |
| OpenJev-Q5_K_M.gguf | ~5.7 | 19.2 GB | 24 GB cards with a short context |
| OpenJev-Q6_K.gguf | ~6.6 | 22.1 GB | 32 GB+ |
| OpenJev-Q8_0.gguf | 8.5 | 28.6 GB | 40 GB+, closest to the 16-bit weights |
Built from the merged 16-bit weights (revision 5ec9e5fd) with llama.cpp build b11147; SHA256SUMS and MANIFEST.json carry every hash and the validation numbers.
Run it
llama-server -m OpenJev-Q4_K_M.gguf -ngl 999 -c 16384 -np 2 --port 8080
Ask for a decision the way OpenJev was trained: state, question, lettered options, and read the letter.
curl -s localhost:8080/v1/chat/completions -H 'Content-Type: application/json' -d '{
"messages": [{"role": "user", "content": "State:\nA checkout page shows: Subtotal $40, Shipping $5, a Place order button, and a Coupon field.\n\nQuestion: Which action completes the purchase?\nOptions:\n[A] click_coupon: type a coupon\n[B] click_place_order: click Place order\n[C] go_back: return to cart\n\nAnswer with the letter of the best option only."}],
"max_tokens": 4, "temperature": 0, "chat_template_kwargs": {"enable_thinking": false}}'
For probabilities over every option use n_probs on /completion and read the letter tokens at the first output position; that is what the openjev-server helper does against vLLM and MLX. A llama.cpp backend for the helper is on the list.
Validation
Measured on the same 1,789 development rows and option letterings as the 16-bit model (accuracy / NLL); see validation/ for per-row records.
| build | accuracy | NLL | flip | agrees with 16-bit answer |
|---|---|---|---|---|
| 16-bit (vLLM reference, same rows) | 83.17 | 0.4195 | 4.3% | — |
| Q8_0 (llama.cpp) | 82.56 | 0.4207 | 4.7% | 98.2% |
| Q4_K_M (llama.cpp) | 82.84 | 0.4239 | 4.4% | 96.6% |
Paired against the 16-bit model on the same 1,789 rows: Q4_K_M −0.34 points (95% interval −1.06 to +0.39), Q8_0 −0.61 points (−1.17 to −0.11). Both sit within a point of the reference; the interval on 1,789 rows is too wide to certify the 0.5-point non-inferiority used for FP8, which needs the 10,000-question run. Readout here goes through llama.cpp's /completion top-64 token probabilities, not the vLLM helper.
Notes
- Yes/no questions are lettered
[A] yes/[B] noin this build's prompts. - Q4_K_M is the recommended file for 24 GB cards; leave room for the context.
- The FP8 and MLX builds keep the exact production readout; GGUF is the portable build.
OpenJev is an independent project, not affiliated with TypeSafe; Jev is their product.
- Downloads last month
- -
4-bit
5-bit
6-bit
8-bit
Model tree for openjev/openjev-GGUF
Base model
openjev/openjev