> ## 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.

# Qwen (Alibaba)

> Alibaba's Qwen series — #1 most popular model family on Kyma.

## Available models

| Model ID        | Parameters | Context | Speed  | Best For                 |
| --------------- | ---------- | ------- | ------ | ------------------------ |
| `qwen-3.6-plus` | — (closed) | 131K    | Medium | General, #1 most popular |
| `qwen-3-32b`    | 32B        | 32K     | Fast   | Code, math, multilingual |
| `qwen-3-coder`  | —          | 131K    | Medium | Code generation          |

## Recommendation

**`qwen-3.6-plus` is the #1 model on Kyma** — highest traffic, best overall quality. Use it as your default for any task.

**Use `qwen-3-32b` for coding** — top benchmarks in code generation, debugging, and math. Low-latency on Kyma.

**Use `qwen-3-coder` for dedicated coding** — specialized code model from the Qwen family.

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

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

# Best overall quality
response = client.chat.completions.create(
    model="qwen-3.6-plus",
    messages=[{"role": "user", "content": "Explain distributed systems"}]
)

# Best for coding
response = client.chat.completions.create(
    model="qwen-3-32b",
    messages=[{"role": "user", "content": "Write a Python web scraper"}]
)
```

## Model aliases

| Alias  | Resolves to     |
| ------ | --------------- |
| `best` | `qwen-3.6-plus` |

```python theme={null}
model="best"  # → qwen-3.6-plus
```
