@morphllm/morph-setup 1.0.3 → 1.0.4
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/index.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -634,6 +634,7 @@ function buildCodexMorphBlock(input) {
|
|
|
634
634
|
const argsToml = morphArgs.map((a) => `"${tomlEscapeString(a)}"`).join(", ");
|
|
635
635
|
lines.push(`args = [${argsToml}]`);
|
|
636
636
|
lines.push("enabled = true");
|
|
637
|
+
lines.push("startup_timeout_sec = 45");
|
|
637
638
|
const env = [];
|
|
638
639
|
if (input.apiKey) env.push(`MORPH_API_KEY = "${tomlEscapeString(input.apiKey)}"`);
|
|
639
640
|
if (input.enabledTools) env.push(`ENABLED_TOOLS = "${tomlEscapeString(input.enabledTools)}"`);
|