Instructions to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- HERMES
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-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
- llama-cpp-python
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF", filename="Ornstein-hermes-3.6-27b-IQ2_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf GestaltLabs/Ornstein-Hermes-3.6-27b-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 GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf GestaltLabs/Ornstein-Hermes-3.6-27b-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 GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GestaltLabs/Ornstein-Hermes-3.6-27b-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": "GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
- Ollama
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with Ollama:
ollama run hf.co/GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
- Unsloth Studio
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-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 GestaltLabs/Ornstein-Hermes-3.6-27b-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 GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF to start chatting
- Pi
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf GestaltLabs/Ornstein-Hermes-3.6-27b-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": "GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf GestaltLabs/Ornstein-Hermes-3.6-27b-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 GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with Docker Model Runner:
docker model run hf.co/GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
- Lemonade
How to use GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ornstein-Hermes-3.6-27b-GGUF-Q4_K_M
List all available models
lemonade list
Ornstein-hermes-3.6-27b — GGUF Quantizations
GGUF quantizations of GestaltLabs/Ornstein-hermes-3.6-27b — a Hermes-format function-calling fine-tune of Ornstein-3.6-27B (Qwen 3.6 27B multimodal).
All K- and I-quants are calibrated with an imatrix computed from 800 high-quality Hermes-format tool-use conversations sampled from DJLougen/Acta-Synthetic — so the quantization gradients are tuned for tool-calling distributions, not generic web text.
Support This Work
I'm a PhD student in visual neuroscience at the University of Toronto who also happens to spend way too much time fine-tuning, merging, and quantizing open-weight models on rented H100s and a local DGX Spark. All training compute is self-funded — balancing GPU costs against a student budget. If my uploads have been useful to you, consider buying a PhD student a coffee. It goes a long way toward keeping these experiments running.
Available Quants
| Quant | Bits/weight | Size | Notes |
|---|---|---|---|
Q8_0 |
~8.5 | 26.6 GB | Near-lossless. Use if you have ≥32 GB VRAM/RAM. |
Q6_K |
~6.6 | 20.6 GB | High fidelity, very small loss vs F16. |
Q5_K_M |
~5.7 | 17.9 GB | Strong default for ≥24 GB cards. |
Q4_K_M |
~4.8 | 15.4 GB | Most popular 4-bit; great quality/size tradeoff. |
IQ4_NL |
~4.5 | 14.7 GB | imatrix-aware non-linear 4-bit, smaller than Q4_K_M. |
IQ4_XS |
~4.3 | 14.0 GB | Smallest 4-bit; minor quality drop vs Q4_K_M. |
Q3_K_M |
~3.9 | 12.4 GB | Aggressive but usable; ≥16 GB VRAM. |
IQ3_M |
~3.7 | 11.7 GB | imatrix 3-bit; better than Q3_K_M at similar size. |
IQ2_M |
~2.7 | 9.3 GB | Tight VRAM budget; expect noticeable degradation. |
Picking a quant
- 24 GB GPU (e.g. RTX 3090/4090) →
Q4_K_MorIQ4_NL - 32 GB (e.g. RTX 5090) →
Q5_K_M - 48 GB (e.g. RTX A6000) →
Q6_K - 80 GB (H100/A100) →
Q8_0 - CPU-only with 32 GB RAM →
IQ4_XSorQ3_K_M - 16 GB VRAM →
IQ3_MorIQ2_M
Usage
llama.cpp
./llama-cli -m Ornstein-hermes-3.6-27b-Q4_K_M.gguf \
-ngl 999 \
-c 8192 \
--temp 0.7 \
-p "<|im_start|>user\nWhat's the weather in Tokyo?<|im_end|>\n<|im_start|>assistant\n"
For tool calling, register tools via the --chat-template system prompt or use the OpenAI-compatible server (llama-server) which handles tool registration automatically.
Ollama
ollama create ornstein-hermes-q4 -f - <<EOF
FROM ./Ornstein-hermes-3.6-27b-Q4_K_M.gguf
TEMPLATE """{{- range .Messages }}<|im_start|>{{ .Role }}
{{ .Content }}<|im_end|>
{{ end }}<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
EOF
ollama run ornstein-hermes-q4
LM Studio
- Download any GGUF from this repo
- Open in LM Studio (auto-detects Qwen3 chat template)
- Use the built-in tool-calling interface
Hermes Tool-Calling Format
The model was trained on Hermes-style function calling. Expected message flow:
<|im_start|>system
You are a function calling AI model. You are provided with function signatures within <tools></tools> XML tags.
<tools>
[{"name": "get_weather", "description": "...", "parameters": {...}}]
</tools>
<|im_end|>
<|im_start|>user
What's the weather in Tokyo?<|im_end|>
<|im_start|>assistant
<think>The user wants weather info. I'll call get_weather.</think>
<tool_call>{"name": "get_weather", "arguments": {"city": "Tokyo"}}</tool_call><|im_end|>
<|im_start|>tool
<tool_response>{"temp_c": 18, "condition": "cloudy"}</tool_response><|im_end|>
<|im_start|>assistant
It's 18°C and cloudy in Tokyo.<|im_end|>
Quantization Details
| Source | GestaltLabs/Ornstein-hermes-3.6-27b (bf16) |
| F16 GGUF size | 53.8 GB (851 tensors) |
| Tool | llama.cpp (latest) |
| imatrix corpus | 800 conversations from DJLougen/Acta-Synthetic, passes_thresholds=True, rendered with the Qwen3.6 chat template (~385K tokens, 1.74 MB) |
| imatrix params | --n-gpu-layers 999 -c 4096 -b 4096 --chunks 200 |
| Hardware | 1× NVIDIA RTX PRO 6000 Blackwell |
License
Apache 2.0 — inherited from Qwen 3.6 base.
Citation
If you use this model, please consider citing the dataset:
@dataset{lougen_acta_2026,
author = {DJLougen},
title = {Acta: A Premium Curated Sample of High-Quality Agentic Tool-Use Conversations},
year = {2026},
url = {https://huggingface.co/datasets/DJLougen/Acta}
}
- Downloads last month
- 1,209
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for GestaltLabs/Ornstein-Hermes-3.6-27b-GGUF
Base model
GestaltLabs/Ornstein-Hermes-3.6-27b
