From 02ec44ad8dac486889c134fee2b636112090c751 Mon Sep 17 00:00:00 2001 From: Matt Cowger Date: Wed, 10 Jun 2026 06:26:20 +0000 Subject: [PATCH] chore: adjust PR-Agent config settings Disable output of relevant configurations and suppress the semantic files walkthrough. Update code suggestion behavior by increasing suggestions per chunk, lowering the score threshold, and enabling committable code suggestions. --- .pr_agent.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.pr_agent.toml b/.pr_agent.toml index 51222d0c..0a861b26 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -1,7 +1,12 @@ [config] -output_relevant_configurations = true +output_relevant_configurations = false ai_timeout = 300 +[pr_description] +enable_semantic_files_types = false # suppress the File Walkthrough section + [pr_code_suggestions] -num_code_suggestions = 3 -suggestions_score_threshold = 7 +num_code_suggestions_per_chunk = 5 +suggestions_score_threshold = 6 +publish_output_no_suggestions = false +commitable_code_suggestions = true