PR Code Suggestions seem to max out at 3 #1962
LawrenceMantin
started this conversation in
General
Replies: 1 comment
-
Moving this to an issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm really enjoying this agent, but I can't seem to get more than 3 suggestions on the initial PR creation. I'm also curious if my 'extra_instructions' are formatted correctly. Below is my configuration. What am I missing? Thanks!
[pr_code_suggestions]
num_code_suggestions_per_chunk = 10
max_number_of_calls = 5
suggestions_score_threshold = 0
focus_only_on_problems = false
dual_publishing_score_threshold = 8
demand_code_suggestions_self_review = true
commitable_code_suggestions = true
allow_thumbs_up_down = true
auto_extended_mode = true
parallel_calls = true
extra_instructions = """
(1) Constants should use PascalCase naming convention.
(2) Avoid all-lowercase or all-uppercase unless following a known exception.
(3) Prefer clear naming aligned with C# standards.
(4) Public and protected members must have XML documentation comments.
(5) Blazor components must use properties (not fields) for all parameters and data bindings.
(6) Prefer partial classes over the @code directive in Blazor components and pages.
(7) Organize class members in the order: Protected, Public, and then Private.
"""
Beta Was this translation helpful? Give feedback.
All reactions