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

# Llama (Meta)

> Meta's open source language models.

## Active model

| Model ID        | Parameters | Context | Speed | Best For                 |
| --------------- | ---------- | ------- | ----- | ------------------------ |
| `llama-3.3-70b` | 70B        | 128K    | Fast  | General, code, reasoning |

## Recommendation

**Start with `llama-3.3-70b`** — it's the most popular open source model. Great at coding, reasoning, writing, and general tasks.

Use `gemini-2.5-flash` or `gemini-3-flash` when you need very long context on Kyma.

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

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

response = client.chat.completions.create(
    model="llama-3.3-70b",
    messages=[{"role": "user", "content": "Hello!"}]
)
```

## Model aliases

| Alias      | Resolves to     |
| ---------- | --------------- |
| `balanced` | `llama-3.3-70b` |

```python theme={null}
model="balanced"  # → llama-3.3-70b
```
