Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions packages/web/src/content/docs/providers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1885,6 +1885,55 @@ OpenCode Zen is a list of tested and verified models provided by the OpenCode te

---

### LLMTR

[LLMTR](https://llmtr.com) is an OpenAI-compatible AI gateway. A single API key gives access to models from OpenAI, Anthropic, Google, Qwen, xAI, Mistral, DeepSeek, and others, alongside its own models hosted in Turkey for data residency.

1. Head over to the [LLMTR dashboard](https://llmtr.com), create an account, and generate an API key.

2. Run the `/connect` command and search for **LLMTR**.

```txt
/connect
```

3. Enter your LLMTR API key.

```txt
┌ API key
└ enter
```

4. Run the `/models` command to select a model.

```txt
/models
```

The Turkey-hosted `llmtr/*` models are preloaded. To use any other model from the [LLMTR catalog](https://llmtr.com/models), add its id to your opencode config.

```json title="opencode.json"
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"llmtr": {
"models": {
"anthropic/claude-opus-4.8": {
"name": "Claude Opus 4.8"
},
"openai/gpt-5.4": {
"name": "GPT-5.4"
}
}
}
}
}
```

---

### Poolside

[Poolside](https://poolside.ai) provides access to its models through an OpenAI-compatible API.
Expand Down
Loading