From 666fcb6264947fff7e99f7c429c4e5e242601e0e Mon Sep 17 00:00:00 2001 From: mrT23 Date: Sun, 23 Jun 2024 11:33:33 +0300 Subject: [PATCH] fix: update prompt key from `suggestion_content` to `suggestion_summary` in code suggestions --- pr_agent/settings/pr_code_suggestions_reflect_prompts.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pr_agent/settings/pr_code_suggestions_reflect_prompts.toml b/pr_agent/settings/pr_code_suggestions_reflect_prompts.toml index 7c0cb785a..0fbdb8629 100644 --- a/pr_agent/settings/pr_code_suggestions_reflect_prompts.toml +++ b/pr_agent/settings/pr_code_suggestions_reflect_prompts.toml @@ -59,12 +59,13 @@ class PRCodeSuggestionsFeedback(BaseModel): Example output: ```yaml code_suggestions: -- suggestion_content: | +- suggestion_summary: | Use a more descriptive variable name here relevant_file: "src/file1.py" suggestion_score: 6 why: | The variable name 't' is not descriptive enough +- ... ```