Instructions to use vcruz305/Hy3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use vcruz305/Hy3-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="vcruz305/Hy3-GGUF", filename="Hy3-IQ2_M/Hy3-IQ2_M-00001-of-00003.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 vcruz305/Hy3-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 vcruz305/Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf vcruz305/Hy3-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 vcruz305/Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf vcruz305/Hy3-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 vcruz305/Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf vcruz305/Hy3-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 vcruz305/Hy3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf vcruz305/Hy3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/vcruz305/Hy3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use vcruz305/Hy3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "vcruz305/Hy3-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": "vcruz305/Hy3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/vcruz305/Hy3-GGUF:Q4_K_M
- Ollama
How to use vcruz305/Hy3-GGUF with Ollama:
ollama run hf.co/vcruz305/Hy3-GGUF:Q4_K_M
- Unsloth Studio
How to use vcruz305/Hy3-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 vcruz305/Hy3-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 vcruz305/Hy3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for vcruz305/Hy3-GGUF to start chatting
- Pi
How to use vcruz305/Hy3-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf vcruz305/Hy3-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": "vcruz305/Hy3-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use vcruz305/Hy3-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 vcruz305/Hy3-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 vcruz305/Hy3-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use vcruz305/Hy3-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf vcruz305/Hy3-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 "vcruz305/Hy3-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 vcruz305/Hy3-GGUF with Docker Model Runner:
docker model run hf.co/vcruz305/Hy3-GGUF:Q4_K_M
- Lemonade
How to use vcruz305/Hy3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull vcruz305/Hy3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Hy3-GGUF-Q4_K_M
List all available models
lemonade list
early bench results
gave the Q3 a shot on one of our lab servers, appears it's quite prone to looping and also fails tool calls frequently. maybe this model is somewhat sensitive to quantization, reminds me a bit of minimax-m2.7.
ggml_cuda_init: found 2 CUDA devices (Total VRAM: 190661 MiB):
Device 0: NVIDIA H100 NVL, compute capability 9.0, VMM: yes, VRAM: 95330 MiB
Device 1: NVIDIA H100 NVL, compute capability 9.0, VMM: yes, VRAM: 95330 MiB
| model | size | params | backend | ngl | fa | test | t/s |
| ------------------------------ | ---------: | ---------: | ---------- | --: | --: | --------------: | -------------------: |
| hy-v3 295B.A21B Q3_K - Medium | 132.93 GiB | 298.79 B | CUDA | -1 | 1 | pp1024 | 964.78 ± 2.30 |
| hy-v3 295B.A21B Q3_K - Medium | 132.93 GiB | 298.79 B | CUDA | -1 | 1 | pp2048 | 1031.82 ± 1.04 |
| hy-v3 295B.A21B Q3_K - Medium | 132.93 GiB | 298.79 B | CUDA | -1 | 1 | tg128 | 58.02 ± 0.13 |
| hy-v3 295B.A21B Q3_K - Medium | 132.93 GiB | 298.79 B | CUDA | -1 | 1 | tg256 | 58.09 ± 0.03 |
| hy-v3 295B.A21B Q3_K - Medium | 132.93 GiB | 298.79 B | CUDA | -1 | 1 | tg512 | 57.94 ± 0.01 |
build: a4da4b5cf (9889)
Thanks for the H100 numbers — 58 tg / ~1000 pp on 2× NVL is a great datapoint, mind if I fold it into the model card as community-reported perf?
On the two issues, both reproduce on my side and I don't think either is (primarily) quant sensitivity:
Looping — likely the tokenizer EOG metadata, not the Q3. These GGUFs load with special_eos_id is not in special_eog_ids — the tokenizer config may be incorrect, and I can watch <|hy_eos:opensource|> leak into content on my cluster: the EOS token isn't registered as an end-of-generation token, so under some sampling/stop configs generation blows through it and keeps going. I'm investigating a metadata fix (would only touch first shards, like the arch patch below). Short-term: --jinja + an explicit stop on <|hy_eos:opensource|> kills most of it for me.
Tool calls — I can reproduce, and it's the native tools path specifically. Hy3 emits a bespoke tool-call format (<tool_calls:opensource> ... </tool_calls:opensource>, see the chat template), and llama-server's parser doesn't handle it — on my cluster a plain OpenAI-style tools request 500s with "The model produced output that does not match the expected peg-native format". So any harness using the native tools API will see frequent/total failures. Workaround that verifiably works: prompt-injected tools (describe tools in the prompt, parse the reply client-side — e.g. Continue.dev without the native tool_use capability drives browser automation fine with these quants). The model calls tools well; it's the server-side format parser that's missing on both PR builds.
Heads-up before you update llama.cpp: PR #25364 was closed; the successor PR #25395 (which adds working MTP spec decode — I measured +27% tg, 90% draft acceptance on a GB10) renamed the arch string hy-v3 → hy_v3. Your current files predate the rename, so they'll fail on the new build with unknown model architecture: 'hy-v3'. Fix is cheap: re-download only the first shard of your quant (repo was re-uploaded with the fix on 07-07), or run the 10-line in-place patch script now in the README.
Also, with 190GB across the pair you have room for IQ4_XS (159GB) — meaningfully better than Q3_K_M at ~4.3 BPW and my pick at your VRAM. If you rerun after switching to PR #25395, --spec-type draft-mtp --spec-draft-n-max 2 --spec-draft-p-min 0.75 --parallel 1 should stack nicely on those H100s (p_min matters — default makes spec a net loss on this model).
If you can share your serving flags / harness + a looping transcript, I'll dig further — genuinely useful reports, thanks.