All models

OpenAI’s open-weight release

gpt-oss

by OpenAI

Chat Tools Thinking

OpenAI’s open-weight gpt-oss models (20B and 120B) bring strong general reasoning and tool use under an Apache 2.0 licence.

Publisher
OpenAI
API model name
gpt-oss:120b
Context window
128K tokens
Sizes
120B, 20B
Licence
Apache 2.0
Model card on Hugging Face

Run gpt-oss

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

response = client.chat.completions.create(
    model="gpt-oss:120b",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)

Run gpt-oss on your own UK infrastructure

Deploy a worker, install gpt-oss, and start serving it through one sovereign API endpoint.

Related models