How to use from
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 RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
# Run inference directly in the terminal:
llama cli -hf RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
# Run inference directly in the terminal:
llama cli -hf RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
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 RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
# Run inference directly in the terminal:
./llama-cli -hf RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
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 RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
Use Docker
docker model run hf.co/RefinedNeuro/VibeThinker-3B-Hermes-GGUF:
Quick Links

VibeThinker-3B-Hermes — GGUF (Research Preview)

⚠️ Research preview / experimental. Read Limitations before use. Known issues: repetition loops on out-of-distribution multi-turn input, and over-eagerness to call tools.

GGUF quantizations of a LoRA fine-tune of WeiboAI/VibeThinker-3B that adds Hermes-style function calling (<think>…</think> + <tool_call>…</tool_call>) while preserving reasoning. See the full (transformers) model card for training details and benchmarks.

Files

File Quant Size
…-Q6_K.gguf Q6_K 2.4 GB
…-Q8_0.gguf Q8_0 3.1 GB
…-f16.gguf F16 5.8 GB

Why only Q6_K and up? We measured tool-call fidelity on a multi-step agentic task: Q6_K, Q8_0 and F16 pass; Q3/Q4/Q5 fail (they emit malformed/incomplete tool calls and can loop). Since this is a tool-calling model, the lower quants were removed to avoid shipping a broken experience. Use Q6_K for the best size/quality balance.

Usage (llama.cpp)

# use Q6_K+ for tool-calling
llama-cli -m VibeThinker-3B-Hermes-Q6_K.gguf \
  --temp 0.6 --top-p 0.95 --repeat-penalty 1.1 \
  -p "<your Hermes-formatted prompt>"

Recommended settings

  • Use a stop on </tool_call> for single-call settings — essential to avoid the model appending duplicate/hallucinated calls.
  • temperature 0.6, top_p 0.95, repeat-penalty ≈ 1.1.
  • Stop tokens: <|im_end|> (151645) and <|endoftext|> (151643).
  • Hermes system prompt with a <tools> block; the model emits <think>…</think> then <tool_call>\n{"name": …, "arguments": …}\n</tool_call>.

Benchmarks (summary)

  • Reasoning (AIME 2024): base avg@4 0.842 → this model 0.783; pass@4 0.867 unchanged.
  • Tool-calling (BFCL single-turn, with stop fix): live_simple ~60 %, live_multiple ~31 %, live_relevance 87.5 %, live_irrelevance ~34 % (over-eager).

Limitations

  • Repetition loops on OOD multi-turn input (emits the same call many times; avg ~25 calls/turn vs ~1.3 expected). Mitigate with stop=["</tool_call>"] + repeat-penalty.
  • Over-eager to call tools (does not always decline when it should).
  • Single-turn exact-match is poor without the stop fix.
  • ~6-pt avg@4 reasoning dip vs base; trained 1 epoch on one dataset config.

Not recommended for production agents as-is.

License

Apache-2.0. Built on WeiboAI/VibeThinker-3B and lambda/hermes-agent-reasoning-traces (both Apache-2.0).

Downloads last month
452
GGUF
Model size
3B params
Architecture
qwen2
Hardware compatibility
Log In to add your hardware

6-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for RefinedNeuro/VibeThinker-3B-Hermes-GGUF

Base model

Qwen/Qwen2.5-3B
Quantized
(48)
this model

Dataset used to train RefinedNeuro/VibeThinker-3B-Hermes-GGUF