@cloud411716/fancy-webnovel 1.0.26 → 1.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/scan/index.js +1 -9
- package/package.json +1 -1
package/commands/scan/index.js
CHANGED
|
@@ -221,21 +221,13 @@ export function apply(ctx) {
|
|
|
221
221
|
|
|
222
222
|
// ---------- output results ----------
|
|
223
223
|
if (lastReceipt && totalFiles > 0) {
|
|
224
|
-
notify(session, 'success', scan.notify({
|
|
224
|
+
return notify(session, 'success', scan.notify({
|
|
225
225
|
type: 'handover',
|
|
226
226
|
platform,
|
|
227
227
|
files: lastReceipt.scan_files,
|
|
228
228
|
topicFile: lastReceipt.topic_decision || '',
|
|
229
229
|
projectRoot,
|
|
230
230
|
}));
|
|
231
|
-
const prompt = scan.llmAnalysisPrompt({
|
|
232
|
-
platform,
|
|
233
|
-
date: lastReceipt.date || '',
|
|
234
|
-
files: lastReceipt.scan_files,
|
|
235
|
-
topicFile: lastReceipt.topic_decision || '',
|
|
236
|
-
projectRoot,
|
|
237
|
-
});
|
|
238
|
-
llmFollowup(invocation, prompt);
|
|
239
231
|
}
|
|
240
232
|
|
|
241
233
|
if (failedRanks.length > 0) {
|