From 6fbd95e1a9d9f69c830da201a38867e6c55d6d98 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Tue, 31 Dec 2024 08:36:32 +0200 Subject: [PATCH] fix: emphasize brevity in PR description bullet points --- pr_agent/settings/pr_description_prompts.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/settings/pr_description_prompts.toml b/pr_agent/settings/pr_description_prompts.toml index 315bc7ac..9748cbce 100644 --- a/pr_agent/settings/pr_description_prompts.toml +++ b/pr_agent/settings/pr_description_prompts.toml @@ -52,7 +52,7 @@ class PRDescription(BaseModel): {%- if enable_semantic_files_types %} pr_files: List[FileDescription] = Field(max_items=20, description="a list of all the files that were changed in the PR, and summary of their changes. Each file must be analyzed regardless of change size.") {%- endif %} - description: str = Field(description="a clear and concise description of the PR using bullet points (with sub-bullets if needed). Prioritize the most significant changes first") + description: str = Field(description="a clear and concise description of the PR using short bullet points (with sub-bullets if needed). Prioritize the most significant changes first") title: str = Field(description="a concise and descriptive title that captures the PR's main theme") =====