@ax-llm/ax 19.0.31 → 19.0.33
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/index.cjs +202 -202
- package/index.cjs.map +1 -1
- package/index.d.cts +8 -2
- package/index.d.ts +8 -2
- package/index.global.js +199 -199
- package/index.global.js.map +1 -1
- package/index.js +207 -207
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent-optimize.md +1 -1
- package/skills/ax-agent.md +27 -27
- package/skills/ax-ai.md +1 -1
- package/skills/ax-flow.md +1 -1
- package/skills/ax-gen.md +1 -1
- package/skills/ax-gepa.md +1 -1
- package/skills/ax-learn.md +1 -1
- package/skills/ax-llm.md +1 -1
- package/skills/ax-signature.md +1 -1
package/index.d.cts
CHANGED
|
@@ -10282,8 +10282,10 @@ type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions
|
|
|
10282
10282
|
runtime?: AxCodeRuntime;
|
|
10283
10283
|
/** Actor prompt verbosity and scaffolding level (default: 'default'). */
|
|
10284
10284
|
promptLevel?: 'default' | 'detailed';
|
|
10285
|
-
/**
|
|
10285
|
+
/** Global cap on recursive sub-agent calls across all descendants (default: 100). */
|
|
10286
10286
|
maxSubAgentCalls?: number;
|
|
10287
|
+
/** Per-child cap on recursive sub-agent calls (default: 50). */
|
|
10288
|
+
maxSubAgentCallsPerChild?: number;
|
|
10287
10289
|
/** Maximum parallel llmQuery calls in batched mode (default: 8). */
|
|
10288
10290
|
maxBatchedLlmQueryConcurrency?: number;
|
|
10289
10291
|
/** Maximum Actor turns before forcing Responder (default: 10). */
|
|
@@ -10359,6 +10361,8 @@ type AxNormalizedAgentEvalDataset<IN = any> = {
|
|
|
10359
10361
|
type AxAgentRecursionOptions = Partial<Omit<AxProgramForwardOptions<string>, 'functions'>> & {
|
|
10360
10362
|
/** Maximum nested recursion depth for llmQuery sub-agent calls. */
|
|
10361
10363
|
maxDepth?: number;
|
|
10364
|
+
/** When true (default), child agents inherit discovered tool docs from parent. */
|
|
10365
|
+
inheritDiscovery?: boolean;
|
|
10362
10366
|
};
|
|
10363
10367
|
type AxResolvedContextPolicy = {
|
|
10364
10368
|
preset: AxContextPolicyPreset;
|
|
@@ -10743,8 +10747,10 @@ interface AxRLMConfig {
|
|
|
10743
10747
|
sharedFields?: string[];
|
|
10744
10748
|
/** Code runtime for the REPL loop (default: AxJSRuntime). */
|
|
10745
10749
|
runtime?: AxCodeRuntime;
|
|
10746
|
-
/**
|
|
10750
|
+
/** Global cap on recursive sub-agent calls across all descendants (default: 100). */
|
|
10747
10751
|
maxSubAgentCalls?: number;
|
|
10752
|
+
/** Per-child cap on recursive sub-agent calls (default: 50). */
|
|
10753
|
+
maxSubAgentCallsPerChild?: number;
|
|
10748
10754
|
/** Maximum parallel llmQuery calls in batched mode (default: 8). */
|
|
10749
10755
|
maxBatchedLlmQueryConcurrency?: number;
|
|
10750
10756
|
/** Maximum Actor turns before forcing Responder (default: 10). */
|
package/index.d.ts
CHANGED
|
@@ -10282,8 +10282,10 @@ type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions
|
|
|
10282
10282
|
runtime?: AxCodeRuntime;
|
|
10283
10283
|
/** Actor prompt verbosity and scaffolding level (default: 'default'). */
|
|
10284
10284
|
promptLevel?: 'default' | 'detailed';
|
|
10285
|
-
/**
|
|
10285
|
+
/** Global cap on recursive sub-agent calls across all descendants (default: 100). */
|
|
10286
10286
|
maxSubAgentCalls?: number;
|
|
10287
|
+
/** Per-child cap on recursive sub-agent calls (default: 50). */
|
|
10288
|
+
maxSubAgentCallsPerChild?: number;
|
|
10287
10289
|
/** Maximum parallel llmQuery calls in batched mode (default: 8). */
|
|
10288
10290
|
maxBatchedLlmQueryConcurrency?: number;
|
|
10289
10291
|
/** Maximum Actor turns before forcing Responder (default: 10). */
|
|
@@ -10359,6 +10361,8 @@ type AxNormalizedAgentEvalDataset<IN = any> = {
|
|
|
10359
10361
|
type AxAgentRecursionOptions = Partial<Omit<AxProgramForwardOptions<string>, 'functions'>> & {
|
|
10360
10362
|
/** Maximum nested recursion depth for llmQuery sub-agent calls. */
|
|
10361
10363
|
maxDepth?: number;
|
|
10364
|
+
/** When true (default), child agents inherit discovered tool docs from parent. */
|
|
10365
|
+
inheritDiscovery?: boolean;
|
|
10362
10366
|
};
|
|
10363
10367
|
type AxResolvedContextPolicy = {
|
|
10364
10368
|
preset: AxContextPolicyPreset;
|
|
@@ -10743,8 +10747,10 @@ interface AxRLMConfig {
|
|
|
10743
10747
|
sharedFields?: string[];
|
|
10744
10748
|
/** Code runtime for the REPL loop (default: AxJSRuntime). */
|
|
10745
10749
|
runtime?: AxCodeRuntime;
|
|
10746
|
-
/**
|
|
10750
|
+
/** Global cap on recursive sub-agent calls across all descendants (default: 100). */
|
|
10747
10751
|
maxSubAgentCalls?: number;
|
|
10752
|
+
/** Per-child cap on recursive sub-agent calls (default: 50). */
|
|
10753
|
+
maxSubAgentCallsPerChild?: number;
|
|
10748
10754
|
/** Maximum parallel llmQuery calls in batched mode (default: 8). */
|
|
10749
10755
|
maxBatchedLlmQueryConcurrency?: number;
|
|
10750
10756
|
/** Maximum Actor turns before forcing Responder (default: 10). */
|