mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-06 13:50:44 +08:00
43 lines
879 B
Markdown
43 lines
879 B
Markdown
|
|
The default models used by Qodo Merge (June 2025) are a combination of Claude Sonnet 4 and Gemini 2.5 Pro.
|
|
|
|
### Selecting a Specific Model
|
|
|
|
Users can configure Qodo Merge to use only a specific model by editing the [configuration](https://qodo-merge-docs.qodo.ai/usage-guide/configuration_options/) file.
|
|
The models supported by Qodo Merge are:
|
|
|
|
- `claude-4-sonnet`
|
|
- `o4-mini`
|
|
- `gpt-4.1`
|
|
- `gemini-2.5-pro`
|
|
- `deepseek/r1`
|
|
|
|
To restrict Qodo Merge to using only `o4-mini`, add this setting:
|
|
|
|
```toml
|
|
[config]
|
|
model="o4-mini"
|
|
```
|
|
|
|
To restrict Qodo Merge to using only `GPT-4.1`, add this setting:
|
|
|
|
```toml
|
|
[config]
|
|
model="gpt-4.1"
|
|
```
|
|
|
|
To restrict Qodo Merge to using only `gemini-2.5-pro`, add this setting:
|
|
|
|
```toml
|
|
[config]
|
|
model="gemini-2.5-pro"
|
|
```
|
|
|
|
|
|
To restrict Qodo Merge to using only `deepseek-r1` us-hosted, add this setting:
|
|
|
|
```toml
|
|
[config]
|
|
model="deepseek/r1"
|
|
```
|