@compilr-dev/sdk 0.2.12 → 0.2.13
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/agent.js +1 -0
- package/dist/config.d.ts +2 -0
- package/package.json +1 -1
package/dist/agent.js
CHANGED
package/dist/config.d.ts
CHANGED
|
@@ -141,6 +141,8 @@ export interface CompilrAgentConfig {
|
|
|
141
141
|
includeDefaultRules?: boolean;
|
|
142
142
|
/** Guardrail configuration. Default: true */
|
|
143
143
|
guardrails?: boolean | GuardrailConfig;
|
|
144
|
+
/** Tool execution timeout in milliseconds. 0 = no timeout. Default: 30000 (30s) */
|
|
145
|
+
toolTimeoutMs?: number;
|
|
144
146
|
/** Lifecycle hooks */
|
|
145
147
|
hooks?: HooksConfig;
|
|
146
148
|
/** Context management configuration */
|