You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/revise/revise.prompts.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,12 +40,12 @@ export function buildRevisePrompt(ctx: RevisePromptContext): string {
40
40
constissueSections: string[]=[];
41
41
42
42
if(ctx.latestIssuesText){
43
-
issueSections.push(`Issues from the latest review:\n${ctx.latestIssuesText}`);
43
+
issueSections.push(`## Issues from the latest review\n\n${ctx.latestIssuesText}`);
44
44
}
45
45
46
46
if(ctx.priorIssuesText){
47
47
issueSections.push(
48
-
`Issues from the prior review pass (the reviewer may have overlooked some when updating their list — verify whether each is still present before skipping it):\n${ctx.priorIssuesText}`,
48
+
`## Issues from the prior review pass\n\nThe reviewer may have overlooked some when updating their list — verify whether each is still present before skipping it.\n\n${ctx.priorIssuesText}`,
0 commit comments