fix: improve markdown rendering when git provider is unavailable

This commit is contained in:
mrT23
2024-12-19 21:08:27 +02:00
parent 3ab2cac089
commit c2f1f2dba0

View File

@ -80,7 +80,7 @@ class SubPR(BaseModel):
class KeyIssuesComponentLink(BaseModel): class KeyIssuesComponentLink(BaseModel):
relevant_file: str = Field(description="The full file path of the relevant file") relevant_file: str = Field(description="The full file path of the relevant file")
issue_header: str = Field(description="One or two word title for the the issue. For example: 'Possible Bug', 'Performance Issue', 'Code Smell', etc.") issue_header: str = Field(description="One or two word title for the the issue. For example: 'Possible Bug', etc.")
issue_content: str = Field(description="A short and concise summary of what should be further inspected and validated during the PR review process for this issue. Do not reference line numbers in this field.") issue_content: str = Field(description="A short and concise summary of what should be further inspected and validated during the PR review process for this issue. Do not reference line numbers in this field.")
start_line: int = Field(description="The start line that corresponds to this issue in the relevant file") start_line: int = Field(description="The start line that corresponds to this issue in the relevant file")
end_line: int = Field(description="The end line that corresponds to this issue in the relevant file") end_line: int = Field(description="The end line that corresponds to this issue in the relevant file")