orquesta-cli 0.2.103 → 0.2.104
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/dist/cli.js +4 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -374,7 +374,10 @@ program
|
|
|
374
374
|
else {
|
|
375
375
|
logger.flow('No LLM endpoints configured');
|
|
376
376
|
}
|
|
377
|
-
await Promise.
|
|
377
|
+
await Promise.race([
|
|
378
|
+
Promise.all([toolsPromise, syncPromise]),
|
|
379
|
+
new Promise(resolve => setTimeout(resolve, Number(process.env['ORQUESTA_INIT_TIMEOUT_MS']) || 12000).unref?.()),
|
|
380
|
+
]);
|
|
378
381
|
spinner.stop();
|
|
379
382
|
process.stdout.write('\x1B[2J\x1B[0f');
|
|
380
383
|
if (!process.stdin.isTTY) {
|