GPT-OSS OpenAI Released 2025-08 reasoningthinkingtools

GPT-OSS

OpenAI's first open-weight model since GPT-2. Designed for powerful reasoning, agentic tasks, and versatile developer use cases. Strong function calling and code generation.

Best for OpenAI's open-weight model with strong reasoning
Sizes 20B · 120B
Context 128K
License Apache 2.0
Min VRAM (default size, Q4) 14 GB
Rec VRAM 24 GB

What is GPT-OSS?

GPT-OSS is OpenAI's open-weights language model. Released in 2025-08, it ships in 2 sizes (20B, 120B) and is licensed Apache 2.0. The most popular use case is OpenAI's open-weight model with strong reasoning.

VRAM and hardware

The smallest 20B size needs at least 14 GB VRAM; the largest 120B needs around 14 GB.

Size Min VRAM (Q4_K_M) Recommended VRAM Tokens/sec on 3090
20B 14 GB 21 GB ~19 tok/s
120B 70 GB 105 GB ~13 tok/s

How to run GPT-OSS locally

Option 1: Ollama (simplest)

ollama pull gpt-oss
ollama run gpt-oss

Option 2: Mullama (production)

mullama pull gpt-oss
mullama run gpt-oss

Option 3: llama.cpp (CLI)

# Download a GGUF from Hugging Face (search "gpt-oss gguf")
./llama-cli -m gpt-oss.Q4_K_M.gguf -p "Hello, AI!"

Option 4: Python with Mullama or llama-cpp-python

from mullama import Model, Context
model = Model.load("gpt-oss.Q4_K_M.gguf", n_gpu_layers=99)
ctx = Context(model, n_ctx=4096)
print(ctx.generate("Hello, AI!", 256))

What you can build with GPT-OSS

  • reasoning
  • agentic
  • tools
  • code

Hardware it fits on

  • Apple Silicon (8GB): 20B in MLX
  • Apple Silicon (16GB): 120B in MLX
  • Apple Silicon (32GB): 120B in MLX or GGUF
  • Apple Silicon (64GB+): 120B in MLX
  • RTX 3090 (24GB): 120B at Q4_K_M
  • RTX 4090 (24GB): same as 3090, ~30% faster
  • RTX 5090 (32GB): 120B at Q8_0
  • 2× RTX 6000 Ada (96GB total): 120B at Q4_K_M

Related models in the GPT-OSS family

This is the only GPT-OSS-family model in the catalog right now.

Other models you might consider

  • Llama 3.1 (Meta) — 8B, general-purpose chat, agentic workflows, code
  • Llama 3.2 (Meta) — 1B, low-end hardware, mobile, edge deployment
  • Llama 3.2 Vision (Meta) — 11B, vision + chat on desktop GPUs
  • Llama 3.3 (Meta) — 70B, best-in-class 70B for desktops
  • Llama 4 (Meta) — Scout 17B (109B MoE), vision + long context (10M tokens)
  • Qwen 2.5 (Alibaba) — 0.5B, strongest 7B-32B on consumer hardware