diff --git a/packages/web/src/content/docs/providers.mdx b/packages/web/src/content/docs/providers.mdx index 1a5d0fd23a97..bbe80a2eabe2 100644 --- a/packages/web/src/content/docs/providers.mdx +++ b/packages/web/src/content/docs/providers.mdx @@ -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.