naiad-cli 0.2.31 → 0.2.32
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.
|
@@ -614,7 +614,7 @@ When you're done, provide a clear, actionable summary the caller can act on.`;
|
|
|
614
614
|
const seerEffort = process.env.NAIAD_SEER_REASONING_EFFORT || "xhigh";
|
|
615
615
|
childEnv.NAIAD_FORCE_REASONING_EFFORT = seerEffort;
|
|
616
616
|
|
|
617
|
-
const timeoutMs = parseInt(process.env.NAIAD_SEER_TIMEOUT_MS || "
|
|
617
|
+
const timeoutMs = parseInt(process.env.NAIAD_SEER_TIMEOUT_MS || "600000", 10) || 600000;
|
|
618
618
|
|
|
619
619
|
const result = await new Promise<string>((resolve, reject) => {
|
|
620
620
|
const child = spawn(piPath, args, {
|