mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-08 14:50:40 +08:00

This can help teams compare the review of the PR agent with that of a human reviewer, and fine-tune a score threshold for automatic approval where they decide the agent's review is satisfactory.
20 lines
751 B
Markdown
20 lines
751 B
Markdown
## Configuration
|
|
|
|
The different tools and sub-tools used by CodiumAI pr-agent are easily configurable via the configuration file: `/pr-agent/settings/configuration.toml`.
|
|
##### Git Provider:
|
|
You can select your git_provider with the flag `git_provider` in the `config` section
|
|
|
|
##### PR Reviewer:
|
|
|
|
You can enable/disable the different PR Reviewer abilities with the following flags (`pr_reviewer` section):
|
|
```
|
|
require_focused_review=true
|
|
require_score_review=true
|
|
require_tests_review=true
|
|
require_security_review=true
|
|
```
|
|
You can contol the number of suggestions returned by the PR Reviewer with the following flag:
|
|
```inline_code_comments=3```
|
|
And enable/disable the inline code suggestions with the following flag:
|
|
```inline_code_comments=true```
|