Best for
- Default chat / agent
- Coding assistance
- Tool calling and low-cost reasoning
- Workloads where GPT-4-class output quality at open-weight pricing matters
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
OpenAI’s open-weight 120B MoE. Strong general reasoning at near-commodity pricing.
| Slug | gpt-oss-120b |
| Parameters | 120B (MoE, ~5B active) |
| Context | 131,072 tokens (128K) |
| Throughput | 70 tokens/sec |
| TTFT | 240ms |
| License | Apache 2.0 |
| Pricing | cogito.decart.ai/models/gpt-oss-120b |
from openai import OpenAI
client = OpenAI(
base_url="https://api.cogito.decart.ai/v1",
api_key=os.environ["COGITO_API_KEY"],
)
response = client.chat.completions.create(
model="gpt-oss-120b",
messages=[{"role": "user", "content": "Hello!"}],
)