@usabledev/usable-chat 1.198.0 → 1.198.2
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/cli.js +7 -3
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -217473,7 +217473,7 @@ var init_await_subagents = __esm({
|
|
|
217473
217473
|
init_redis();
|
|
217474
217474
|
init_spawned_task_store();
|
|
217475
217475
|
POLL_INTERVAL_MS = 250;
|
|
217476
|
-
HARD_TIMEOUT_MS =
|
|
217476
|
+
HARD_TIMEOUT_MS = 45 * 60 * 1e3;
|
|
217477
217477
|
awaitSubagentsParams = external_exports.object({
|
|
217478
217478
|
taskIds: external_exports.array(external_exports.string()).optional().describe(
|
|
217479
217479
|
"taskIds returned by `spawn_subagent`. Omit to await every running task in this conversation."
|
|
@@ -217578,7 +217578,11 @@ WHEN TO CALL THIS:
|
|
|
217578
217578
|
const stillPendingList = Array.from(stillPending);
|
|
217579
217579
|
for (const taskId of stillPendingList) {
|
|
217580
217580
|
const record2 = await spawnedTaskStore.get(redis, taskId);
|
|
217581
|
-
if (!record2)
|
|
217581
|
+
if (!record2) {
|
|
217582
|
+
resultsByTaskId.set(taskId, unknownTaskRow(taskId, registrySize));
|
|
217583
|
+
stillPending.delete(taskId);
|
|
217584
|
+
continue;
|
|
217585
|
+
}
|
|
217582
217586
|
if (record2.status !== "running") {
|
|
217583
217587
|
resultsByTaskId.set(taskId, recordToRow(record2));
|
|
217584
217588
|
stillPending.delete(taskId);
|
|
@@ -316165,7 +316169,7 @@ init_tui_select();
|
|
|
316165
316169
|
init_model_registry();
|
|
316166
316170
|
|
|
316167
316171
|
// package.json
|
|
316168
|
-
var version2 = "1.198.
|
|
316172
|
+
var version2 = "1.198.2";
|
|
316169
316173
|
|
|
316170
316174
|
// src/adapters/cli/model-catalog.ts
|
|
316171
316175
|
init_codex_auth();
|