> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kymaapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GPT-OSS (OpenAI)

> OpenAI's open source models.

## Available models

| Model ID       | Parameters | Context | Speed  | Best For                      |
| -------------- | ---------- | ------- | ------ | ----------------------------- |
| `gpt-oss-120b` | 120B       | 128K    | Medium | General intelligence, writing |

## Recommendation

**Use `gpt-oss-120b` for writing tasks** — strong writing and general intelligence capabilities.

```python theme={null}
from openai import OpenAI

client = OpenAI(base_url="https://kymaapi.com/v1", api_key="ky-...")

response = client.chat.completions.create(
    model="gpt-oss-120b",
    messages=[{"role": "user", "content": "Write a blog post about AI safety"}]
)
```

## Model aliases

| Alias                                                                          | Resolves to |
| ------------------------------------------------------------------------------ | ----------- |
| GPT-OSS 120B does not currently map to a default alias. Use the full model ID: |             |

```python theme={null}
model="gpt-oss-120b"
```
