2025-05-22 02:59:09 +08:00
---
title: Models
2025-07-03 06:44:01 +08:00
description: Configuring an LLM provider and model.
2025-05-22 02:59:09 +08:00
---
2026-01-13 02:30:30 +08:00
OpenCode uses the [AI SDK](https://ai-sdk.dev/) and [Models.dev](https://models.dev) to support **75+ LLM providers** and it supports running local models.
2025-05-22 02:59:09 +08:00
2025-06-20 04:26:58 +08:00
---
## Providers
2025-05-22 03:01:12 +08:00
2025-12-03 07:08:19 +08:00
Most popular providers are preloaded by default. If you've added the credentials for a provider through the `/connect` command, they'll be available when you start OpenCode.
2025-05-22 03:01:12 +08:00
2025-07-31 06:16:11 +08:00
Learn more about [providers](/docs/providers).
2025-06-20 04:26:58 +08:00
2025-07-11 01:49:24 +08:00
---
2025-07-31 06:16:11 +08:00
## Select a model
2025-07-16 02:57:50 +08:00
2025-07-31 06:16:11 +08:00
Once you've configured your provider you can select the model you want by typing in:
2025-07-16 02:57:50 +08:00
2025-07-31 06:16:11 +08:00
```bash frame="none"
/models
2025-07-16 02:57:50 +08:00
```
---
2025-07-31 06:16:11 +08:00
## Recommended models
2025-07-20 00:40:28 +08:00
2025-07-31 06:16:11 +08:00
There are a lot of models out there, with new models coming out every week.
2025-07-20 00:40:28 +08:00
2025-07-31 06:16:11 +08:00
:::tip
Consider using one of the models we recommend.
:::
2025-07-20 00:40:28 +08:00
2025-10-13 10:35:31 +08:00
However, there are only a few of them that are good at both generating code and tool calling.
2025-07-20 00:40:28 +08:00
2025-12-31 15:17:50 +08:00
Here are several models that work well with OpenCode, in no particular order. (This is not an exhaustive list nor is it necessarily up to date):
2025-11-21 03:17:06 +08:00
2025-12-31 15:17:50 +08:00
- GPT 5.2
2025-11-21 03:16:27 +08:00
- GPT 5.1 Codex
2025-12-31 15:17:50 +08:00
- Claude Opus 4.5
2025-10-04 05:06:20 +08:00
- Claude Sonnet 4.5
2025-12-31 15:17:50 +08:00
- Minimax M2.1
2025-11-21 03:16:27 +08:00
- Gemini 3 Pro
2025-07-20 00:40:28 +08:00
---
2025-07-31 06:16:11 +08:00
## Set a default
2025-06-20 04:26:58 +08:00
2025-07-31 06:16:11 +08:00
To set one of these as the default model, you can set the `model` key in your
2025-10-04 01:46:56 +08:00
OpenCode config.
2025-07-11 01:49:24 +08:00
```json title="opencode.json" {3}
{
"$schema": "https://opencode.ai/config.json",
"model": "lmstudio/google/gemma-3n-e4b"
}
```
2025-12-21 03:51:13 +08:00
Here the full ID is `provider_id/model_id`. For example, if you're using [OpenCode Zen](/docs/zen), you would use `opencode/gpt-5.1-codex` for GPT 5.1 Codex.
2025-06-20 04:26:58 +08:00
2025-07-31 06:16:11 +08:00
If you've configured a [custom provider](/docs/providers#custom), the `provider_id` is key from the `provider` part of your config, and the `model_id` is the key from `provider.models`.
2025-06-20 04:26:58 +08:00
---
2025-08-14 02:07:08 +08:00
## Configure models
You can globally configure a model's options through the config.
2025-08-27 22:41:51 +08:00
```jsonc title="opencode.jsonc" {7-12,19-24}
2025-08-14 02:07:08 +08:00
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"openai": {
"models": {
"gpt-5": {
"options": {
"reasoningEffort": "high",
"textVerbosity": "low",
"reasoningSummary": "auto",
2025-08-27 22:41:51 +08:00
"include": ["reasoning.encrypted_content"],
},
},
},
},
"anthropic": {
"models": {
2025-10-04 05:06:20 +08:00
"claude-sonnet-4-5-20250929": {
2025-08-27 22:41:51 +08:00
"options": {
"thinking": {
"type": "enabled",
"budgetTokens": 16000,
},
},
},
},
},
},
2025-08-14 02:07:08 +08:00
}
```
2025-10-13 10:35:31 +08:00
Here we're configuring global settings for two built-in models: `gpt-5` when accessed via the `openai` provider, and `claude-sonnet-4-20250514` when accessed via the `anthropic` provider.
2025-09-29 19:52:26 +08:00
The built-in provider and model names can be found on [Models.dev](https://models.dev).
2025-08-14 02:07:08 +08:00
You can also configure these options for any agents that you are using. The agent config overrides any global options here. [Learn more](/docs/agents/#additional).
2025-12-31 15:17:50 +08:00
You can also define custom variants that extend built-in ones. Variants let you configure different settings for the same model without creating duplicate entries:
2025-09-29 19:52:26 +08:00
2025-12-31 15:17:50 +08:00
```jsonc title="opencode.jsonc" {6-21}
2025-09-29 19:52:26 +08:00
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"opencode": {
"models": {
2025-12-31 15:17:50 +08:00
"gpt-5": {
"variants": {
"high": {
"reasoningEffort": "high",
"textVerbosity": "low",
"reasoningSummary": "auto",
},
"low": {
"reasoningEffort": "low",
"textVerbosity": "low",
"reasoningSummary": "auto",
},
2025-10-13 10:35:31 +08:00
},
2025-09-29 19:52:26 +08:00
},
2025-12-31 15:17:50 +08:00
},
},
},
}
```
---
## Variants
Many models support multiple variants with different configurations. OpenCode ships with built-in default variants for popular providers.
### Built-in variants
OpenCode ships with default variants for many providers:
**Anthropic**:
- `high` - High thinking budget (default)
- `max` - Maximum thinking budget
**OpenAI**:
Varies by model but roughly:
- `none` - No reasoning
- `minimal` - Minimal reasoning effort
- `low` - Low reasoning effort
- `medium` - Medium reasoning effort
- `high` - High reasoning effort
- `xhigh` - Extra high reasoning effort
**Google**:
- `low` - Lower effort/token budget
- `high` - Higher effort/token budget
:::tip
This list is not comprehensive. Many other providers have built-in defaults too.
:::
### Custom variants
You can override existing variants or add your own:
```jsonc title="opencode.jsonc" {7-18}
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"openai": {
"models": {
"gpt-5": {
"variants": {
"thinking": {
"reasoningEffort": "high",
"textVerbosity": "low",
},
"fast": {
"disabled": true,
},
2025-10-13 10:35:31 +08:00
},
},
},
},
},
2025-09-29 19:52:26 +08:00
}
```
2025-12-31 15:17:50 +08:00
### Cycle variants
Use the keybind `variant_cycle` to quickly switch between variants. [Learn more](/docs/keybinds).
2025-08-14 02:07:08 +08:00
---
2025-06-20 04:26:58 +08:00
## Loading models
2025-10-04 01:46:56 +08:00
When OpenCode starts up, it checks for models in the following priority order:
2025-06-20 04:26:58 +08:00
2025-08-02 22:29:03 +08:00
1. The `--model` or `-m` command line flag. The format is the same as in the config file: `provider_id/model_id`.
2025-10-04 01:46:56 +08:00
2. The model list in the OpenCode config.
2025-06-20 04:26:58 +08:00
2025-06-20 04:36:15 +08:00
```json title="opencode.json"
2025-06-20 04:26:58 +08:00
{
"$schema": "https://opencode.ai/config.json",
"model": "anthropic/claude-sonnet-4-20250514"
}
```
The format here is `provider/model`.
2025-08-02 22:29:03 +08:00
3. The last used model.
2025-06-20 04:26:58 +08:00
2025-08-02 22:29:03 +08:00
4. The first model using an internal priority.