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
- Remove extra blank line between imports in index.ts
- Remove space inside empty catch callback braces
- Fix trailing newline in prompt template causing double blank line
Copy file name to clipboardExpand all lines: lib/prompt.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ export function buildAnalysisPrompt(
119
119
120
120
// Build optional context section if reason provided
121
121
constreasonContext=reason
122
-
? `\nContext: The AI has requested pruning with the following reason: "${reason}"\nUse this context to inform your decisions about what is most relevant to keep.\n`
122
+
? `\nContext: The AI has requested pruning with the following reason: "${reason}"\nUse this context to inform your decisions about what is most relevant to keep.`
123
123
: ''
124
124
125
125
return`You are a conversation analyzer that identifies obsolete tool outputs in a coding session.
0 commit comments