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
console.log(` ⚠️ Diff too large (${Math.round(diffSize/1024)}KB), truncating...`);
169
170
}
170
171
171
-
consttruncatedDiff=diffSize>100000
172
-
? diffSummary.substring(0,100000)+'\n\n... (diff truncated due to size)'
173
-
: diffSummary;
172
+
consttruncatedDiff=diffSize>100000
173
+
? diffSummary.slice(0,100000)+'\n\n... (diff truncated due to size)'
174
+
: diffSummary;
174
175
175
176
constprompt=`You are a technical documentation analyst for Strapi CMS. Your expertise is in identifying documentation gaps and suggesting precise updates.
0 commit comments