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 jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf jondale/Olmo-3-7B-Instruct-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 jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf jondale/Olmo-3-7B-Instruct-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 jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf jondale/Olmo-3-7B-Instruct-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 jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/jondale/Olmo-3-7B-Instruct-GGUF:Q4_K_M
Quick Links

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.

Downloads last month
165
GGUF
Model size
7B params
Architecture
olmo2
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for jondale/Olmo-3-7B-Instruct-GGUF