idk
This commit is contained in:
+6
-1
@@ -26,9 +26,14 @@ export function formatReview(
|
||||
files: string[],
|
||||
model: string,
|
||||
): string {
|
||||
console.log(
|
||||
`Formatting review for ${files.length} file${files.length === 1 ? "" : "s"} with model ${model}...`,
|
||||
);
|
||||
const parts: string[] = [];
|
||||
|
||||
parts.push(`## 🤖 shockbot review\n\n> Reviewed ${files.length} file${files.length === 1 ? "" : "s"} using \`${model}\``);
|
||||
parts.push(
|
||||
`## 🤖 shockbot review\n\n> Reviewed ${files.length} file${files.length === 1 ? "" : "s"} using \`${model}\``,
|
||||
);
|
||||
|
||||
// Summary section — join per-chunk summaries
|
||||
const summaries = review.summaries.filter(Boolean);
|
||||
|
||||
Reference in New Issue
Block a user