@iletai/nzb 1.2.3 → 1.2.4
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.
|
@@ -415,6 +415,13 @@ export async function sendToOrchestrator(prompt, source, callback, onToolEvent,
|
|
|
415
415
|
catch {
|
|
416
416
|
/* best-effort */
|
|
417
417
|
}
|
|
418
|
+
// Auto-continue: if the response was cut short by timeout, automatically
|
|
419
|
+
// send a follow-up "Continue" message so the user doesn't have to
|
|
420
|
+
if (finalContent.includes("⏱ Response was cut short (timeout)")) {
|
|
421
|
+
console.log("[nzb] Auto-continuing after timeout…");
|
|
422
|
+
await sleep(1000);
|
|
423
|
+
void sendToOrchestrator("Continue from where you left off. Do not repeat what was already said.", source, callback, onToolEvent, onUsage);
|
|
424
|
+
}
|
|
418
425
|
return;
|
|
419
426
|
}
|
|
420
427
|
catch (err) {
|