@ax-llm/ax 19.0.10 → 19.0.11
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 +125 -125
- package/index.cjs.map +1 -1
- package/index.d.cts +7 -0
- package/index.d.ts +7 -0
- package/index.global.js +120 -120
- package/index.global.js.map +1 -1
- package/index.js +127 -127
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent.md +10 -4
- package/skills/ax-llm.md +1 -1
package/index.d.cts
CHANGED
|
@@ -10396,6 +10396,11 @@ type AxAgentOptions = Omit<AxProgramForwardOptions<string>, 'functions' | 'descr
|
|
|
10396
10396
|
};
|
|
10397
10397
|
/** Field sharing configuration. */
|
|
10398
10398
|
fields?: {
|
|
10399
|
+
/**
|
|
10400
|
+
* Shared/global fields that should remain available in this agent's own
|
|
10401
|
+
* Actor/Responder flow instead of bypassing it.
|
|
10402
|
+
*/
|
|
10403
|
+
local?: string[];
|
|
10399
10404
|
/** Input fields to pass directly to subagents, bypassing the top-level LLM. */
|
|
10400
10405
|
shared?: string[];
|
|
10401
10406
|
/** Fields to pass to ALL descendants recursively (entire agent tree). */
|
|
@@ -10471,6 +10476,7 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10471
10476
|
private rlmConfig;
|
|
10472
10477
|
private runtime;
|
|
10473
10478
|
private actorFieldNames;
|
|
10479
|
+
private localFieldNames;
|
|
10474
10480
|
private sharedFieldNames;
|
|
10475
10481
|
private globalSharedFieldNames;
|
|
10476
10482
|
private excludedSharedFields;
|
|
@@ -10554,6 +10560,7 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10554
10560
|
resetUsage(): void;
|
|
10555
10561
|
getFunction(): AxFunction;
|
|
10556
10562
|
getExcludedSharedFields(): readonly string[];
|
|
10563
|
+
private _getBypassedSharedFieldNames;
|
|
10557
10564
|
getExcludedAgents(): readonly string[];
|
|
10558
10565
|
getExcludedAgentFunctions(): readonly string[];
|
|
10559
10566
|
getSignature(): AxSignature;
|
package/index.d.ts
CHANGED
|
@@ -10396,6 +10396,11 @@ type AxAgentOptions = Omit<AxProgramForwardOptions<string>, 'functions' | 'descr
|
|
|
10396
10396
|
};
|
|
10397
10397
|
/** Field sharing configuration. */
|
|
10398
10398
|
fields?: {
|
|
10399
|
+
/**
|
|
10400
|
+
* Shared/global fields that should remain available in this agent's own
|
|
10401
|
+
* Actor/Responder flow instead of bypassing it.
|
|
10402
|
+
*/
|
|
10403
|
+
local?: string[];
|
|
10399
10404
|
/** Input fields to pass directly to subagents, bypassing the top-level LLM. */
|
|
10400
10405
|
shared?: string[];
|
|
10401
10406
|
/** Fields to pass to ALL descendants recursively (entire agent tree). */
|
|
@@ -10471,6 +10476,7 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10471
10476
|
private rlmConfig;
|
|
10472
10477
|
private runtime;
|
|
10473
10478
|
private actorFieldNames;
|
|
10479
|
+
private localFieldNames;
|
|
10474
10480
|
private sharedFieldNames;
|
|
10475
10481
|
private globalSharedFieldNames;
|
|
10476
10482
|
private excludedSharedFields;
|
|
@@ -10554,6 +10560,7 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10554
10560
|
resetUsage(): void;
|
|
10555
10561
|
getFunction(): AxFunction;
|
|
10556
10562
|
getExcludedSharedFields(): readonly string[];
|
|
10563
|
+
private _getBypassedSharedFieldNames;
|
|
10557
10564
|
getExcludedAgents(): readonly string[];
|
|
10558
10565
|
getExcludedAgentFunctions(): readonly string[];
|
|
10559
10566
|
getSignature(): AxSignature;
|