← All models
Ai2
OLMo 3 32B
Live · US + CAtextApache 2.0
Ai2's fully open reference model: weights, training data, code and every intermediate checkpoint.
Price per 1M tokens
Input
$0.90
Cached input
—
Output
$0.90
Priced per model · Same in US and CA · Free tier included · Pricing
Specs
- Model id
olmo-3-32b- Weights released
- Nov 20, 2025
- Parameters
- 32B
- Architecture
- Dense
- Context
- —
- Input
- text
- License
- Apache 2.0
- Regions
- us, ca
- Weights
- allenai/Olmo-3-1125-32B ↗
Benchmarks
Independent scores aren't published yet. They'll appear here as soon as they are.
Sources: allenai.org · huggingface.co
Use it
Three lines of code, or zero.
OpenAI-compatible. Use the model id below, or auto to let the router decide when this model is worth it.
import os
from openai import OpenAI
client = OpenAI(base_url=os.environ["ST_BASE_URL"], api_key=os.environ["ST_API_KEY"])
resp = client.chat.completions.create(
model="olmo-3-32b",
messages=[{"role": "user", "content": "Hello"}],
)