diff --git a/pr_agent/settings/pr_description_prompts.toml b/pr_agent/settings/pr_description_prompts.toml index f85c9e7b..40b68bad 100644 --- a/pr_agent/settings/pr_description_prompts.toml +++ b/pr_agent/settings/pr_description_prompts.toml @@ -38,8 +38,8 @@ class PRType(str, Enum): {%- if enable_semantic_files_types %} class FileDescription(BaseModel): - filename: str = Field(description="the relevant file full path") - language: str = Field(description="the relevant file language") + filename: str = Field(description="The complete file path of the relevant file.") + language: str = Field(description="The programming language of the relevant file.") changes_summary: str = Field(description="concise summary of the changes in the relevant file, in bullet points (1-4 bullet points).") changes_title: str = Field(description="an informative title for the changes in the files, describing its main theme (5-10 words).") label: str = Field(description="a single semantic label that represents a type of code changes that occurred in the File. Possible values (partial list): 'bug fix', 'tests', 'enhancement', 'documentation', 'error handling', 'configuration changes', 'dependencies', 'formatting', 'miscellaneous', ...")