HERMES
GGUF
English
qwen3_5
qwen3.5
reasoning
chain-of-thought
self-correction
tool-calling
agent
llama.cpp
unsloth
conversational
Instructions to use DJLougen/Harmonic-Hermes-9B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- HERMES
How to use DJLougen/Harmonic-Hermes-9B-GGUF with HERMES:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use DJLougen/Harmonic-Hermes-9B-GGUF with Ollama:
ollama run hf.co/DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
- Unsloth Studio
How to use DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DJLougen/Harmonic-Hermes-9B-GGUF to start chatting
- Pi
How to use DJLougen/Harmonic-Hermes-9B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DJLougen/Harmonic-Hermes-9B-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": "DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use DJLougen/Harmonic-Hermes-9B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DJLougen/Harmonic-Hermes-9B-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 "DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF with Docker Model Runner:
docker model run hf.co/DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
- Lemonade
How to use DJLougen/Harmonic-Hermes-9B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Harmonic-Hermes-9B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-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 DJLougen/Harmonic-Hermes-9B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Add training data quality visuals from dataset
Browse files- README.md +24 -0
- categories.png +0 -0
- conversation_structure.png +0 -0
- metrics_summary.png +0 -0
- quality_comparison.png +0 -0
- reasoning_flow.png +0 -0
README.md
CHANGED
|
@@ -50,6 +50,14 @@ This model includes `Harmonic-Hermes-9B-BF16-mmproj.gguf` — the vision project
|
|
| 50 |
|
| 51 |
## How Our Training Data Compares
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
We ran the same structural quality analysis used for Stage 1 against comparable public agentic datasets. The results show why starting from quality-filtered data matters:
|
| 54 |
|
| 55 |
| Metric | **Harmonic Traces** (ours) | **Carnice GLM-5** (kai-os) |
|
|
@@ -69,6 +77,22 @@ The critical gap is reasoning depth: **581 vs 40 words** in think blocks. Carnic
|
|
| 69 |
|
| 70 |
The conversation depth also matters for agent training. Our traces average 32 messages and 18 tool calls per trajectory — complete agentic sessions, not short dispatches. This teaches the model to maintain coherent state across extended multi-step workflows.
|
| 71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
## What This Model Does
|
| 73 |
|
| 74 |
- **Tool calling / function calling** — structured JSON tool use in the Hermes agent format
|
|
|
|
| 50 |
|
| 51 |
## How Our Training Data Compares
|
| 52 |
|
| 53 |
+
### Quality Comparison
|
| 54 |
+
|
| 55 |
+

|
| 56 |
+
|
| 57 |
+
### Metrics Summary
|
| 58 |
+
|
| 59 |
+

|
| 60 |
+
|
| 61 |
We ran the same structural quality analysis used for Stage 1 against comparable public agentic datasets. The results show why starting from quality-filtered data matters:
|
| 62 |
|
| 63 |
| Metric | **Harmonic Traces** (ours) | **Carnice GLM-5** (kai-os) |
|
|
|
|
| 77 |
|
| 78 |
The conversation depth also matters for agent training. Our traces average 32 messages and 18 tool calls per trajectory — complete agentic sessions, not short dispatches. This teaches the model to maintain coherent state across extended multi-step workflows.
|
| 79 |
|
| 80 |
+
### Reasoning Flow
|
| 81 |
+
|
| 82 |
+

|
| 83 |
+
|
| 84 |
+
Marker density across thinking traces — the filtered set shows tighter, more consistent reasoning structure.
|
| 85 |
+
|
| 86 |
+
### Conversation Structure
|
| 87 |
+
|
| 88 |
+

|
| 89 |
+
|
| 90 |
+
### Category Distribution
|
| 91 |
+
|
| 92 |
+

|
| 93 |
+
|
| 94 |
+
Training data: [DJLougen/hermes-agent-traces-filtered](https://huggingface.co/datasets/DJLougen/hermes-agent-traces-filtered)
|
| 95 |
+
|
| 96 |
## What This Model Does
|
| 97 |
|
| 98 |
- **Tool calling / function calling** — structured JSON tool use in the Hermes agent format
|
categories.png
ADDED
|
conversation_structure.png
ADDED
|
metrics_summary.png
ADDED
|
quality_comparison.png
ADDED
|
reasoning_flow.png
ADDED
|