vigthoria-cli 1.8.1 → 1.8.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/dist/commands/chat.js +1 -1
- package/dist/utils/api.js +1 -1
- package/package.json +1 -1
package/dist/commands/chat.js
CHANGED
|
@@ -1620,7 +1620,7 @@ class ChatCommand {
|
|
|
1620
1620
|
? Promise.race([
|
|
1621
1621
|
workflowPromise,
|
|
1622
1622
|
new Promise((_, reject) => {
|
|
1623
|
-
setTimeout(() => reject(new Error('V3_SAAS_SOFT_TIMEOUT')),
|
|
1623
|
+
setTimeout(() => reject(new Error('V3_SAAS_SOFT_TIMEOUT')), 3600000);
|
|
1624
1624
|
}),
|
|
1625
1625
|
])
|
|
1626
1626
|
: workflowPromise);
|
package/dist/utils/api.js
CHANGED
|
@@ -2732,7 +2732,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
2732
2732
|
&& context.localMachineCapable !== false;
|
|
2733
2733
|
const rescueEligibleSaaS = preferLocalV3
|
|
2734
2734
|
&& /(saas|dashboard|analytics|billing|team management|activity feed|login screen)/i.test(message);
|
|
2735
|
-
const timeoutMs = rescueEligibleSaaS ? Math.min(baseTimeoutMs,
|
|
2735
|
+
const timeoutMs = rescueEligibleSaaS ? Math.min(baseTimeoutMs, 3600000) : baseTimeoutMs;
|
|
2736
2736
|
const maxAttempts = preferLocalV3 ? 2 : 1;
|
|
2737
2737
|
let lastErrors = [];
|
|
2738
2738
|
for (let attempt = 1; attempt <= maxAttempts; attempt += 1) {
|