MCPcopy
hub / github.com/openai/gpt-oss

github.com/openai/gpt-oss @v0.0.9 sqlite

repository ↗ · DeepWiki ↗ · release v0.0.9 ↗
482 symbols 1,742 edges 68 files 74 documented · 15%
README

gpt-oss-120

Try gpt-oss · Guides · Model card · OpenAI blog

Download gpt-oss-120b and gpt-oss-20b on Hugging Face

Welcome to the gpt-oss series, OpenAI's open-weight models designed for powerful reasoning, agentic tasks, and versatile developer use cases.

We're releasing two flavors of these open models:

  • gpt-oss-120b — for production, general purpose, high reasoning use cases that fit into a single 80GB GPU (like NVIDIA H100 or AMD MI300X) (117B parameters with 5.1B active parameters)
  • gpt-oss-20b — for lower latency, and local or specialized use cases (21B parameters with 3.6B active parameters)

Both models were trained using our [harmony response format][harmony] and should only be used with this format; otherwise, they will not work correctly.

Table of Contents

Highlights

  • Permissive Apache 2.0 license: Build freely without copyleft restrictions or patent risk—ideal for experimentation, customization, and commercial deployment.
  • Configurable reasoning effort: Easily adjust the reasoning effort (low, medium, high) based on your specific use case and latency needs.
  • Full chain-of-thought: Provides complete access to the model's reasoning process, facilitating easier debugging and greater trust in outputs. This information is not intended to be shown to end users.
  • Fine-tunable: Fully customize models to your specific use case through parameter fine-tuning.
  • Agentic capabilities: Use the models' native capabilities for function calling, web browsing, Python code execution, and Structured Outputs.
  • MXFP4 quantization: The models were post-trained with MXFP4 quantization of the MoE weights, making gpt-oss-120b run on a single 80GB GPU (like NVIDIA H100 or AMD MI300X) and the gpt-oss-20b model run within 16GB of memory. All evals were performed with the same MXFP4 quantization.

Inference examples

Transformers

You can use gpt-oss-120b and gpt-oss-20b with the Transformers library. If you use Transformers' chat template, it will automatically apply the [harmony response format][harmony]. If you use model.generate directly, you need to apply the harmony format manually using the chat template or use our [openai-harmony][harmony] package.

from transformers import pipeline
import torch

model_id = "openai/gpt-oss-120b"

pipe = pipeline(
    "text-generation",
    model=model_id,
    torch_dtype="auto",
    device_map="auto",
)

messages = [
    {"role": "user", "content": "Explain quantum mechanics clearly and concisely."},
]

outputs = pipe(
    messages,
    max_new_tokens=256,
)
print(outputs[0]["generated_text"][-1])

Learn more about how to use gpt-oss with Transformers.

vLLM

vLLM recommends using uv for Python dependency management. You can use vLLM to spin up an OpenAI-compatible web server. The following command will automatically download the model and start the server.

uv pip install --pre vllm==0.10.1+gptoss \
    --extra-index-url https://wheels.vllm.ai/gpt-oss/ \
    --extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
    --index-strategy unsafe-best-match

vllm serve openai/gpt-oss-20b

Learn more about how to use gpt-oss with vLLM.

Offline Serve Code: - run this code after installing proper libraries as described, while additionally installing this: - uv pip install openai-harmony

# source .oss/bin/activate

import os
os.environ["VLLM_USE_FLASHINFER_SAMPLER"] = "0"

import json
from openai_harmony import (
    HarmonyEncodingName,
    load_harmony_encoding,
    Conversation,
    Message,
    Role,
    SystemContent,
    DeveloperContent,
)

from vllm import LLM, SamplingParams
import os

# --- 1) Render the prefill with Harmony ---
encoding = load_harmony_encoding(HarmonyEncodingName.HARMONY_GPT_OSS)

convo = Conversation.from_messages(
    [
        Message.from_role_and_content(Role.SYSTEM, SystemContent.new()),
        Message.from_role_and_content(
            Role.DEVELOPER,
            DeveloperContent.new().with_instructions("Always respond in riddles"),
        ),
        Message.from_role_and_content(Role.USER, "What is the weather like in SF?"),
    ]
)

prefill_ids = encoding.render_conversation_for_completion(convo, Role.ASSISTANT)

# Harmony stop tokens (pass to sampler so they won't be included in output)
stop_token_ids = encoding.stop_tokens_for_assistant_actions()

# --- 2) Run vLLM with prefill ---
llm = LLM(
    model="openai/gpt-oss-20b",
    trust_remote_code=True,
    gpu_memory_utilization = 0.95,
    max_num_batched_tokens=4096,
    max_model_len=5000,
    tensor_parallel_size=1
)

sampling = SamplingParams(
    max_tokens=128,
    temperature=1,
    stop_token_ids=stop_token_ids,
)

outputs = llm.generate(
    prompt_token_ids=[prefill_ids],   # batch of size 1
    sampling_params=sampling,
)

# vLLM gives you both text and token IDs
gen = outputs[0].outputs[0]
text = gen.text
output_tokens = gen.token_ids  # <-- these are the completion token IDs (no prefill)

# --- 3) Parse the completion token IDs back into structured Harmony messages ---
entries = encoding.parse_messages_from_completion_tokens(output_tokens, Role.ASSISTANT)

# 'entries' is a sequence of structured conversation entries (assistant messages, tool calls, etc.).
for message in entries:
    print(f"{json.dumps(message.to_dict())}")

PyTorch / Triton / Metal

These implementations are largely reference implementations for educational purposes and are not expected to be run in production.

Learn more below.

Ollama

If you are trying to run gpt-oss on consumer hardware, you can use Ollama by running the following commands after installing Ollama.

# gpt-oss-20b
ollama pull gpt-oss:20b
ollama run gpt-oss:20b

# gpt-oss-120b
ollama pull gpt-oss:120b
ollama run gpt-oss:120b

Learn more about how to use gpt-oss with Ollama.

LM Studio

If you are using LM Studio you can use the following commands to download.

# gpt-oss-20b
lms get openai/gpt-oss-20b
# gpt-oss-120b
lms get openai/gpt-oss-120b

Check out our awesome list for a broader collection of gpt-oss resources and inference partners.

About this repository

This repository provides a collection of reference implementations:

  • Inference:
  • torch — a non-optimized PyTorch implementation for educational purposes only. Requires at least 4× H100 GPUs due to lack of optimization.
  • triton — a more optimized implementation using PyTorch & Triton incl. using CUDA graphs and basic caching
  • metal — a Metal-specific implementation for running the models on Apple Silicon hardware
  • Tools:
  • browser — a reference implementation of the browser tool the models got trained on
  • python — a stateless reference implementation of the python tool the model got trained on
  • Client examples:
  • chat — a basic terminal chat application that uses the PyTorch or Triton implementations for inference along with the python and browser tools
  • responses_api — an example Responses API compatible server that implements the browser tool along with other Responses-compatible functionality

Setup

Requirements

  • Python 3.12
  • On macOS: Install the Xcode CLI tools --> xcode-select --install
  • On Linux: These reference implementations require CUDA
  • On Windows: These reference implementations have not been tested on Windows. Try using solutions like Ollama if you are trying to run the model locally.

Installation

If you want to try any of the code you can install it directly from PyPI

# if you just need the tools
pip install gpt-oss
# if you want to try the torch implementation
pip install gpt-oss[torch]
# if you want to try the triton implementation
pip install gpt-oss[triton]

If you want to modify the code or try the metal implementation set the project up locally:

git clone https://github.com/openai/gpt-oss.git
GPTOSS_BUILD_METAL=1 pip install -e ".[metal]"

Download the model

You can download the model weights from the Hugging Face Hub directly from Hugging Face CLI:

# gpt-oss-120b
hf download openai/gpt-oss-120b --include "original/*" --local-dir gpt-oss-120b/

# gpt-oss-20b
hf download openai/gpt-oss-20b --include "original/*" --local-dir gpt-oss-20b/

Reference PyTorch implementation

We include an inefficient reference PyTorch implementation in gpt_oss/torch/model.py. This code uses basic PyTorch operators to show the exact model architecture, with a small addition of supporting tensor parallelism in MoE so that the larger model can run with this code (e.g., on 4xH100 or 2xH200). In this implementation, we upcast all weights to BF16 and run the model in BF16.

To run the reference implementation, install the dependencies:

pip install -e ".[torch]"

And then run:

# On 4xH100:
torchrun --nproc-per-node=4 -m gpt_oss.generate gpt-oss-120b/original/

Reference Triton implementation (single GPU)

We also include an optimized reference implementation that uses an optimized triton MoE kernel that supports MXFP4. It also has some optimization on the attention code to reduce the memory cost. To run this implementation, the nightly version of triton and torch will be installed. This version can be run on a single 80GB GPU for gpt-oss-120b.

To install the reference Triton implementation run

# You need to install triton from source to use the triton implementation
git clone https://github.com/triton-lang/triton
cd triton/
pip install -r python/requirements.txt
pip install -e . --verbose --no-build-isolation
pip install -e python/triton_kernels

# Install the gpt-oss triton implementation
pip install -e ".[triton]"

And then run:

# On 1xH100
export PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True
python -m gpt_oss.generate --backend triton gpt-oss-120b/original/

If you encounter torch.OutOfMemoryError, make sure to turn on the expandable allocator to avoid crashes when loading weights from the checkpoint.

Reference Metal implementation

Additionally we are providing a reference implementation for Metal to run on Apple Silicon. This implementation is not production-ready but is accurate to the PyTorch implementation.

The implementation will get automatically compiled when running the .[metal] installation on an Apple Silicon device:

GPTOSS_BUILD_METAL=1 pip install -e ".[metal]"

To perform inference you'll need to first convert the SafeTensor weights from Hugging Face into the right format using:

python gpt_oss/metal/scripts/create-local-model.py -s <model_dir> -d <output_file>

Or download the pre-converted weights:

hf download openai/gpt-oss-120b --include "metal/*" --local-dir gpt-oss-120b/metal/
hf download openai/gpt-oss-20b --include "metal/*" --local-dir gpt-oss-20b/metal/

To test it you can run:

python gpt_oss/metal/examples/generate.py gpt-oss-20b/metal/model.bin -p "why did the chicken cross the road?"

Harmony format & tools

Along with the model, we are also releasing a new chat format library harmony to interact with the model. Check this guide for more info about harmony.

We also include two system tools for the model: browsing and python container. Check gpt_oss/tools for the tool implementation.

Clients

Terminal Chat

The terminal chat application is a basic example of how to use the harmony format together with the PyTorch, Triton, and vLLM implementations. It also exposes both the python and browser tool as optional tools that can be used.

```bash usage: python -m gpt_oss.chat [-h] [-r REASONING_EFFORT] [-a] [-b] [--show-browser-results] [-p] [--developer-message DEVELOPER_MESSAGE] [-c CONTEXT] [--raw] [--backend {triton,torch,vllm}] FILE

Chat example

positional arguments: FILE Path to the SafeTensors checkpoint

options: -h, --help show this he

Core symbols most depended-on inside this repo

get
called by 145
gpt_oss/torch/weights.py
print
called by 90
gpt_oss/torch/utils.py
startswith
called by 32
gpt_oss/tools/apply_patch.py
_send_event
called by 29
gpt_oss/responses_api/api_server.py
get_tensor
called by 18
gpt_oss/metal/scripts/create-local-model.py
write_padding
called by 12
gpt_oss/metal/scripts/create-local-model.py
run
called by 11
gpt_oss/responses_api/api_server.py
process
called by 9
gpt_oss/tools/tool.py

Shape

Function 194
Method 176
Class 109
Route 3

Languages

Python97%
TypeScript3%

Modules by API surface

gpt_oss/tools/simple_browser/simple_browser_tool.py42 symbols
gpt_oss/tools/apply_patch.py32 symbols
gpt_oss/triton/model.py28 symbols
gpt_oss/torch/model.py28 symbols
tests/test_api_endpoints.py27 symbols
gpt_oss/responses_api/types.py24 symbols
gpt_oss/tools/simple_browser/page_contents.py23 symbols
gpt_oss/responses_api/events.py22 symbols
gpt_oss/tools/python_docker/docker_tool.py18 symbols
gpt_oss/responses_api/api_server.py18 symbols
gpt_oss/evals/healthbench_eval.py18 symbols
gpt_oss/tools/simple_browser/backend.py16 symbols

Dependencies from manifests, versioned

@openai/agents0.0.15 · 1×
ajv8.17.1 · 1×
listr29.0.1 · 1×
tsx4.20.3 · 1×
typescript5.8.3 · 1×
zod3.25.67 · 1×
aiohttp3.12.14 · 1×
chz0.3.0 · 1×
docker7.1.0 · 1×
fastapi0.116.1 · 1×
html2text2025.4.15 · 1×
jupyter-client8.6.3 · 1×

For agents

$ claude mcp add gpt-oss \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact