Skip to content

Commit ea5c9b2

Browse files
Replace default o3-mini with o4-mini
1 parent 58f6943 commit ea5c9b2

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/docs/chrome-extension/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
With a single-click installation you will gain access to a context-aware chat on your pull requests code, a toolbar extension with multiple AI feedbacks, Qodo Merge filters, and additional abilities.
44

5-
The extension is powered by top code models like Claude 3.7 Sonnet and o3-mini. All the extension's features are free to use on public repositories.
5+
The extension is powered by top code models like Claude 3.7 Sonnet and o4-mini. All the extension's features are free to use on public repositories.
66

77
For private repositories, you will need to install [Qodo Merge](https://github.com/apps/qodo-merge-pro){:target="_blank"} in addition to the extension (Quick GitHub app setup with a 14-day free trial. No credit card needed).
88
For a demonstration of how to install Qodo Merge and use it with the Chrome extension, please refer to the tutorial video at the provided [link](https://codium.ai/images/pr_agent/private_repos.mp4){:target="_blank"}.

docs/docs/installation/locally.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
To run PR-Agent locally, you first need to acquire two keys:
22

3-
1. An OpenAI key from [here](https://platform.openai.com/api-keys){:target="_blank"}, with access to GPT-4 and o3-mini (or a key for other [language models](https://qodo-merge-docs.qodo.ai/usage-guide/changing_a_model/), if you prefer).
3+
1. An OpenAI key from [here](https://platform.openai.com/api-keys){:target="_blank"}, with access to GPT-4 and o4-mini (or a key for other [language models](https://qodo-merge-docs.qodo.ai/usage-guide/changing_a_model/), if you prefer).
44
2. A personal access token from your Git platform (GitHub, GitLab, BitBucket) with repo scope. GitHub token, for example, can be issued from [here](https://github.com/settings/tokens){:target="_blank"}
55

66

docs/docs/overview/pr_agent_pro.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Here are some of the additional features and capabilities that Qodo Merge offers
1919

2020
| Feature | Description |
2121
|----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
22-
| [**Model selection**](https://qodo-merge-docs.qodo.ai/usage-guide/PR_agent_pro_models/) | Choose the model that best fits your needs, among top models like `Claude Sonnet` and `o3-mini`
22+
| [**Model selection**](https://qodo-merge-docs.qodo.ai/usage-guide/PR_agent_pro_models/) | Choose the model that best fits your needs, among top models like `Claude Sonnet` and `o4-mini`
2323
| [**Global and wiki configuration**](https://qodo-merge-docs.qodo.ai/usage-guide/configuration_options/) | Control configurations for many repositories from a single location; <br>Edit configuration of a single repo without committing code |
2424
| [**Apply suggestions**](https://qodo-merge-docs.qodo.ai/tools/improve/#overview) | Generate committable code from the relevant suggestions interactively by clicking on a checkbox |
2525
| [**Suggestions impact**](https://qodo-merge-docs.qodo.ai/tools/improve/#assessing-impact) | Automatically mark suggestions that were implemented by the user (either directly in GitHub, or indirectly in the IDE) to enable tracking of the impact of the suggestions |
@@ -46,7 +46,7 @@ Here are additional tools that are available only for Qodo Merge users:
4646

4747
### Supported languages
4848

49-
Qodo Merge leverages the world's leading code models, such as Claude 3.7 Sonnet and o3-mini.
49+
Qodo Merge leverages the world's leading code models, such as Claude 3.7 Sonnet and o4-mini.
5050
As a result, its primary tools such as `describe`, `review`, and `improve`, as well as the PR-chat feature, support virtually all programming languages.
5151

5252
For specialized commands that require static code analysis, Qodo Merge offers support for specific languages. For more details about features that require static code analysis, please refer to the [documentation](https://qodo-merge-docs.qodo.ai/tools/analyze/#overview).

docs/docs/usage-guide/changing_a_model.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Changing a model in PR-Agent
22

33
See [here](https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/algo/__init__.py) for a list of available models.
4-
To use a different model than the default (o3-mini), you need to edit in the [configuration file](https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml#L2) the fields:
4+
To use a different model than the default (o4-mini), you need to edit in the [configuration file](https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml#L2) the fields:
55

66
```toml
77
[config]
@@ -284,7 +284,7 @@ To bypass chat templates and temperature controls, set `config.custom_reasoning_
284284
reasoning_efffort= = "medium" # "low", "medium", "high"
285285
```
286286

287-
With the OpenAI models that support reasoning effort (eg: o3-mini), you can specify its reasoning effort via `config` section. The default value is `medium`. You can change it to `high` or `low` based on your usage.
287+
With the OpenAI models that support reasoning effort (eg: o4-mini), you can specify its reasoning effort via `config` section. The default value is `medium`. You can change it to `high` or `low` based on your usage.
288288

289289
### Anthropic models
290290

docs/docs/usage-guide/qodo_merge_models.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Users can configure Qodo Merge to use a specific model by editing the [configura
77
The models supported by Qodo Merge are:
88

99
- `claude-3-7-sonnet` (default)
10-
- `o3-mini`
10+
- `o4-mini`
1111
- `gpt-4.1`
1212
- `deepseek/r1`
1313

14-
To restrict Qodo Merge to using only `o3-mini`, add this setting:
14+
To restrict Qodo Merge to using only `o4-mini`, add this setting:
1515
```
1616
[config]
17-
model="o3-mini"
17+
model="o4-mini"
1818
```
1919

2020
To restrict Qodo Merge to using only `GPT-4.1`, add this setting:

pr_agent/settings/configuration.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[config]
88
# models
9-
model="o3-mini"
9+
model="o4-mini"
1010
fallback_models=["gpt-4o-2024-11-20"]
1111
#model_weak="gpt-4o-mini-2024-07-18" # optional, a weaker model to use for some easier tasks
1212
# CLI

0 commit comments

Comments
 (0)