RefinedNeuro/VibeThinker-3B-Hermes-GGUF overview
π Newer model: RefinedToolCall V5 3B https://huggingface.co/RefinedNeuro/RefinedToolCallV5 3b β multi turn agentic ~3.7Γ, single turn 0.707, recovery 0.896, rβ¦
Runs locally from ~2.36 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| VibeThinker-3B-Hermes-Q6_K.gguf | GGUF | Q6_K | 2.36 GB | Download |
| VibeThinker-3B-Hermes-Q8_0.gguf | GGUF | Q8_0 | 3.06 GB | Download |
| VibeThinker-3B-Hermes-f16.gguf | GGUF | F16 | 5.75 GB | Download |
| VibeThinker-3B-Hermes-v03-Q6_K.gguf | GGUF | Q6_K | 2.36 GB | Download |
| VibeThinker-3B-Hermes-v03-Q8_0.gguf | GGUF | Q8_0 | 3.06 GB | Download |
| VibeThinker-3B-Hermes-v03-f16.gguf | GGUF | F16 | 5.75 GB | Download |
| VibeThinker-3B-Hermes-v04-Q6_K.gguf | GGUF | Q6_K | 2.36 GB | Download |
| VibeThinker-3B-Hermes-v04-Q8_0.gguf | GGUF | Q8_0 | 3.06 GB | Download |
| VibeThinker-3B-Hermes-v04-f16.gguf | GGUF | F16 | 5.75 GB | Download |
Model Details
| Model ID | RefinedNeuro/VibeThinker-3B-Hermes-GGUF |
|---|---|
| Author | RefinedNeuro |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | WeiboAI/VibeThinker-3B |
| Last modified | 2026-06-27T13:59:57.000Z |
Model README
---
license: apache-2.0
base_model: WeiboAI/VibeThinker-3B
datasets:
- lambda/hermes-agent-reasoning-traces
language:
- en
pipeline_tag: text-generation
tags:
- tool-calling
- function-calling
- hermes
- reasoning
- gguf
- llama-cpp
- research-preview
---
> π Newer model: RefinedToolCall-V5-3B β multi-turn agentic ~3.7Γ, single-turn 0.707, recovery 0.896, reasoning intact. ollama run refinedneuro/refinedtoolcallv5-3b
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 | min recommended |
| β¦-Q8_0.gguf | Q8_0 | 3.1 GB |
| β¦-f16.gguf | F16 | 5.8 GB | best |
> 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).
Run RefinedNeuro/VibeThinker-3B-Hermes-GGUF with guIDE
Download guIDE β the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face Β· Compare models