jondale/Olmo-3-7B-Instruct-GGUF overview
Olmo 3 7B Instruct GGUF Quantized from allenai/Olmo 3 7B Instruct https://huggingface.co/allenai/Olmo 3 7B Instruct . All credit to Ai2 https://huggingface.co/…
Runs locally from ~4.16 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| olmo-3-7b-instruct-q4_k_m.gguf | GGUF | Q4_K_M | 4.16 GB | Download |
Model Details
| Model ID | jondale/Olmo-3-7B-Instruct-GGUF |
|---|---|
| Author | jondale |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | allenai/Olmo-3-7B-Instruct |
| Last modified | 2026-08-03T02:27:58.000Z |
Model README
---
license: apache-2.0
base_model: allenai/Olmo-3-7B-Instruct
base_model_relation: quantized
pipeline_tag: text-generation
library_name: gguf
tags:
- gguf
- llama.cpp
- olmo
- allenai
language:
- en
---
Olmo 3 7B Instruct - GGUF
Quantized from allenai/Olmo-3-7B-Instruct.
All credit to Ai2 - this is a format
conversion, with the chat template tweaked to suit llama.cpp.
Chat template
llama.cpp renders the template with tools undefined rather than none, so we
guarded the two places that care:
-{%- if tools is none -%}
+{%- if tools is not defined or tools is none -%}
-{%- if tools is not none -%}
+{%- if tools is defined and tools is not none -%}
That is the whole change. Plain chat comes out exactly as Ai2 wrote it.
Files
| | Size | |
|---|---|---|
| olmo-3-7b-instruct-q4_k_m.gguf | 4.5 GB | the only one so far, ask if you want Q8_0 |
Running it
llama-server -m olmo-3-7b-instruct-q4_k_m.gguf --ctx-size 8192
Trained context is 65536. 8192 is just what we run.
Made with
llama.cpp b10223, --convert then --quantize out of the :full image,
template tweaked before converting.
Run jondale/Olmo-3-7B-Instruct-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models