Skip to content

Commit

Permalink
Merge pull request #1367 from Codium-ai/tr/focus_only_on_problems_ena…
Browse files Browse the repository at this point in the history
…bled

Enable focus_only_on_problems mode by default in configuration and up…
  • Loading branch information
mrT23 authored Nov 18, 2024
2 parents a14b6a5 + 6120047 commit 751caca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,15 @@ Qode Merge PR-Agent aims to help efficiently review and handle pull requests, by

## News and Updates

### November 7, 2024
### November 18, 2024

Added new option: `--pr_code_suggestions.focus_only_on_problems=true`
A new mode was enabled by default for code suggestions - `--pr_code_suggestions.focus_only_on_problems=true`:

When enabled, this option reduces the number of code suggestions and categorizes them into just two groups: "Possible Issues" and "General". The suggestions will focus primarily on identifying and fixing code problems, rather than style considerations like best practices, maintainability, or readability.

This mode is ideal for developers who want to concentrate specifically on finding and fixing potential bugs in their pull request code.
- This option reduces the number of code suggestions received
- The suggestions will focus more on identifying and fixing code problems, rather than style considerations like best practices, maintainability, or readability.
- The suggestions will be categorized into just two groups: "Possible Issues" and "General".

Still, if you prefer the previous mode, you can set `--pr_code_suggestions.focus_only_on_problems=false` in the [configuration file](https://qodo-merge-docs.qodo.ai/usage-guide/configuration_options/).

**Example results:**

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tools/improve.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ Using a combination of both can help the AI model to provide relevant and tailor
</tr>
<tr>
<td><b>focus_only_on_problems</b></td>
<td>If set to true, suggestions will focus primarily on identifying and fixing code problems, and less on style considerations like best practices, maintainability, or readability. Default is false.</td>
<td>If set to true, suggestions will focus primarily on identifying and fixing code problems, and less on style considerations like best practices, maintainability, or readability. Default is true.</td>
</tr>
<tr>
<td><b>persistent_comment</b></td>
Expand Down
2 changes: 1 addition & 1 deletion pr_agent/settings/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ max_context_tokens=16000
#
commitable_code_suggestions = false
dual_publishing_score_threshold=-1 # -1 to disable, [0-10] to set the threshold (>=) for publishing a code suggestion both in a table and as commitable
focus_only_on_problems=false
focus_only_on_problems=true
#
extra_instructions = ""
rank_suggestions = false
Expand Down

0 comments on commit 751caca

Please sign in to comment.