@datalyr/wizard 1.0.5 → 1.0.6
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/bin/wizard.js +1 -1
- package/dist/bin/wizard.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -10
package/dist/bin/wizard.js
CHANGED
|
@@ -2370,7 +2370,7 @@ async function executeAgent(params) {
|
|
|
2370
2370
|
}
|
|
2371
2371
|
try {
|
|
2372
2372
|
const controller = new AbortController();
|
|
2373
|
-
const timeoutId = setTimeout(() => controller.abort(),
|
|
2373
|
+
const timeoutId = setTimeout(() => controller.abort(), 3e5);
|
|
2374
2374
|
const response = await fetch(`${LLM_GATEWAY_URL}/agent`, {
|
|
2375
2375
|
method: "POST",
|
|
2376
2376
|
headers: {
|