@ax-llm/ax 19.0.23 → 19.0.25
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 +284 -247
- package/index.cjs.map +1 -1
- package/index.d.cts +164 -61
- package/index.d.ts +164 -61
- package/index.global.js +251 -214
- package/index.global.js.map +1 -1
- package/index.js +284 -247
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent-optimize.md +3 -3
- package/skills/ax-agent.md +39 -22
- 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.ts
CHANGED
|
@@ -347,6 +347,7 @@ type AxFunctionHandler = (args?: any, extra?: Readonly<{
|
|
|
347
347
|
type AxAgentCompletionProtocol = Readonly<{
|
|
348
348
|
final: (...args: unknown[]) => never;
|
|
349
349
|
askClarification: (...args: unknown[]) => never;
|
|
350
|
+
guideAgent: (guidance: string) => never;
|
|
350
351
|
}>;
|
|
351
352
|
type AxFunctionJSONSchema = {
|
|
352
353
|
type: string | string[];
|
|
@@ -2924,6 +2925,7 @@ declare class AxGen<IN = any, OUT extends AxGenOut = any> extends AxProgram<IN,
|
|
|
2924
2925
|
stop(): void;
|
|
2925
2926
|
setInstruction(instruction: string): void;
|
|
2926
2927
|
getInstruction(): string | undefined;
|
|
2928
|
+
clearInstruction(): void;
|
|
2927
2929
|
private renderPromptForInternalUse;
|
|
2928
2930
|
/** @internal */
|
|
2929
2931
|
_measurePromptCharsForInternalUse(ai: Readonly<AxAIService>, values: IN | AxMessage<IN>[], options?: Readonly<Partial<Omit<AxProgramForwardOptions<any>, 'functions'>>>): Promise<number>;
|
|
@@ -3099,8 +3101,10 @@ declare class AxPromptTemplate {
|
|
|
3099
3101
|
private fieldTemplates?;
|
|
3100
3102
|
private task;
|
|
3101
3103
|
private customInstruction?;
|
|
3104
|
+
private rebuildTask;
|
|
3102
3105
|
setInstruction(instruction: string): void;
|
|
3103
3106
|
getInstruction(): string | undefined;
|
|
3107
|
+
clearInstruction(): void;
|
|
3104
3108
|
private readonly thoughtFieldName;
|
|
3105
3109
|
private readonly functions?;
|
|
3106
3110
|
private readonly contextCache?;
|
|
@@ -9870,14 +9874,6 @@ declare class AxEmbeddingAdapter {
|
|
|
9870
9874
|
type ActionLogTag = 'error' | 'dead-end' | 'foundational' | 'pivot' | 'superseded';
|
|
9871
9875
|
type ActionLogStepKind = 'explore' | 'transform' | 'query' | 'finalize' | 'error';
|
|
9872
9876
|
type ActionReplayMode = 'full' | 'omit';
|
|
9873
|
-
type DiscoveryModuleSection = {
|
|
9874
|
-
module: string;
|
|
9875
|
-
text: string;
|
|
9876
|
-
};
|
|
9877
|
-
type DiscoveryFunctionSection = {
|
|
9878
|
-
qualifiedName: string;
|
|
9879
|
-
text: string;
|
|
9880
|
-
};
|
|
9881
9877
|
type ActionLogEntry = {
|
|
9882
9878
|
turn: number;
|
|
9883
9879
|
code: string;
|
|
@@ -9896,10 +9892,6 @@ type ActionLogEntry = {
|
|
|
9896
9892
|
tombstone?: string;
|
|
9897
9893
|
/** @internal Pending tombstone generation. */
|
|
9898
9894
|
_tombstonePromise?: Promise<string>;
|
|
9899
|
-
/** @internal Parsed discovery module sections for prompt-facing filtering. */
|
|
9900
|
-
_discoveryModuleSections?: readonly DiscoveryModuleSection[];
|
|
9901
|
-
/** @internal Parsed discovery callable sections for prompt-facing filtering. */
|
|
9902
|
-
_discoveryFunctionSections?: readonly DiscoveryFunctionSection[];
|
|
9903
9895
|
/** @internal Direct qualified callable usages like `db.search(...)`. */
|
|
9904
9896
|
_directQualifiedCalls?: readonly string[];
|
|
9905
9897
|
};
|
|
@@ -9949,7 +9941,7 @@ type AxAgentRecursiveTraceNode = {
|
|
|
9949
9941
|
role: AxAgentRecursiveNodeRole;
|
|
9950
9942
|
taskDigest?: string;
|
|
9951
9943
|
contextDigest?: string;
|
|
9952
|
-
completionType?: 'final' | '
|
|
9944
|
+
completionType?: 'final' | 'askClarification';
|
|
9953
9945
|
turnCount: number;
|
|
9954
9946
|
childCount: number;
|
|
9955
9947
|
actorTurns: AxAgentRecursiveTurn[];
|
|
@@ -10020,7 +10012,7 @@ type AxAgentFunctionGroup = AxAgentFunctionModuleMeta & {
|
|
|
10020
10012
|
functions: readonly Omit<AxAgentFunction, 'namespace'>[];
|
|
10021
10013
|
};
|
|
10022
10014
|
type AxAgentTestCompletionPayload = {
|
|
10023
|
-
type: 'final' | '
|
|
10015
|
+
type: 'final' | 'askClarification';
|
|
10024
10016
|
args: unknown[];
|
|
10025
10017
|
};
|
|
10026
10018
|
type AxAgentTestResult = string | AxAgentTestCompletionPayload;
|
|
@@ -10039,17 +10031,32 @@ type AxAgentStructuredClarification = {
|
|
|
10039
10031
|
type AxAgentStateActionLogEntry = Pick<ActionLogEntry, 'turn' | 'code' | 'output' | 'actorFieldsOutput' | 'tags' | 'summary' | 'producedVars' | 'referencedVars' | 'stateDelta' | 'stepKind' | 'replayMode' | 'rank' | 'tombstone'>;
|
|
10040
10032
|
type AxAgentStateCheckpointState = CheckpointSummaryState;
|
|
10041
10033
|
type AxAgentStateRuntimeEntry = AxCodeSessionSnapshotEntry;
|
|
10042
|
-
type
|
|
10043
|
-
model: string;
|
|
10044
|
-
abovePromptChars: number;
|
|
10045
|
-
aboveErrorTurns?: number;
|
|
10046
|
-
} | {
|
|
10034
|
+
type AxActorModelPolicyEntryBase = {
|
|
10047
10035
|
model: string;
|
|
10036
|
+
namespaces?: readonly string[];
|
|
10048
10037
|
abovePromptChars?: number;
|
|
10049
|
-
aboveErrorTurns
|
|
10038
|
+
aboveErrorTurns?: number;
|
|
10050
10039
|
};
|
|
10040
|
+
type AxActorModelPolicyEntry = (AxActorModelPolicyEntryBase & {
|
|
10041
|
+
abovePromptChars: number;
|
|
10042
|
+
}) | (AxActorModelPolicyEntryBase & {
|
|
10043
|
+
aboveErrorTurns: number;
|
|
10044
|
+
}) | (AxActorModelPolicyEntryBase & {
|
|
10045
|
+
namespaces: readonly string[];
|
|
10046
|
+
});
|
|
10051
10047
|
type AxAgentStateActorModelState = {
|
|
10052
10048
|
consecutiveErrorTurns: number;
|
|
10049
|
+
matchedNamespaces?: string[];
|
|
10050
|
+
};
|
|
10051
|
+
type AxAgentDiscoveryPromptState = {
|
|
10052
|
+
modules?: Array<{
|
|
10053
|
+
module: string;
|
|
10054
|
+
text: string;
|
|
10055
|
+
}>;
|
|
10056
|
+
functions?: Array<{
|
|
10057
|
+
qualifiedName: string;
|
|
10058
|
+
text: string;
|
|
10059
|
+
}>;
|
|
10053
10060
|
};
|
|
10054
10061
|
type AxActorModelPolicy = readonly [
|
|
10055
10062
|
AxActorModelPolicyEntry,
|
|
@@ -10060,9 +10067,11 @@ type AxAgentState = {
|
|
|
10060
10067
|
runtimeBindings: Record<string, unknown>;
|
|
10061
10068
|
runtimeEntries: AxAgentStateRuntimeEntry[];
|
|
10062
10069
|
actionLogEntries: AxAgentStateActionLogEntry[];
|
|
10070
|
+
discoveryPromptState?: AxAgentDiscoveryPromptState;
|
|
10063
10071
|
checkpointState?: AxAgentStateCheckpointState;
|
|
10064
10072
|
provenance: Record<string, RuntimeStateVariableProvenance>;
|
|
10065
10073
|
actorModelState?: AxAgentStateActorModelState;
|
|
10074
|
+
guidanceToken?: string;
|
|
10066
10075
|
};
|
|
10067
10076
|
declare class AxAgentClarificationError extends Error {
|
|
10068
10077
|
readonly question: string;
|
|
@@ -10082,6 +10091,14 @@ type AxContextFieldInput = string | {
|
|
|
10082
10091
|
keepInPromptChars?: number;
|
|
10083
10092
|
reverseTruncate?: boolean;
|
|
10084
10093
|
};
|
|
10094
|
+
type AxContextFieldPromptConfig = {
|
|
10095
|
+
kind: 'threshold';
|
|
10096
|
+
promptMaxChars: number;
|
|
10097
|
+
} | {
|
|
10098
|
+
kind: 'truncate';
|
|
10099
|
+
keepInPromptChars: number;
|
|
10100
|
+
reverseTruncate: boolean;
|
|
10101
|
+
};
|
|
10085
10102
|
/**
|
|
10086
10103
|
* Demo traces for AxAgent's split architecture.
|
|
10087
10104
|
* Actor demos use `{ javascriptCode }` + optional actorFields.
|
|
@@ -10140,7 +10157,7 @@ type AxAgentEvalPrediction<OUT = any> = (AxAgentEvalPredictionShared & {
|
|
|
10140
10157
|
output: OUT;
|
|
10141
10158
|
clarification?: undefined;
|
|
10142
10159
|
}) | (AxAgentEvalPredictionShared & {
|
|
10143
|
-
completionType: '
|
|
10160
|
+
completionType: 'askClarification';
|
|
10144
10161
|
output?: undefined;
|
|
10145
10162
|
clarification: AxAgentStructuredClarification;
|
|
10146
10163
|
});
|
|
@@ -10182,7 +10199,7 @@ type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions
|
|
|
10182
10199
|
* - `{ field, promptMaxChars }`: runtime + conditionally inlined into Actor prompt
|
|
10183
10200
|
* - `{ field, keepInPromptChars, reverseTruncate? }`: runtime + truncated string excerpt in Actor prompt
|
|
10184
10201
|
*/
|
|
10185
|
-
contextFields
|
|
10202
|
+
contextFields?: readonly AxContextFieldInput[];
|
|
10186
10203
|
/** Child agents and agent sharing configuration. */
|
|
10187
10204
|
agents?: {
|
|
10188
10205
|
/** Agents registered under the configured child-agent module namespace (default: `agents.*`). */
|
|
@@ -10267,6 +10284,35 @@ type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions
|
|
|
10267
10284
|
/** Default options for the built-in judge used by optimize(). */
|
|
10268
10285
|
judgeOptions?: AxAgentJudgeOptions;
|
|
10269
10286
|
};
|
|
10287
|
+
type AxAgentJudgeInput = {
|
|
10288
|
+
taskInput: AxFieldValue;
|
|
10289
|
+
criteria: string;
|
|
10290
|
+
expectedOutput?: AxFieldValue;
|
|
10291
|
+
expectedActions?: string[];
|
|
10292
|
+
forbiddenActions?: string[];
|
|
10293
|
+
metadata?: AxFieldValue;
|
|
10294
|
+
};
|
|
10295
|
+
type AxAgentJudgeOutput = {
|
|
10296
|
+
completionType: 'final' | 'askClarification';
|
|
10297
|
+
clarification?: AxFieldValue;
|
|
10298
|
+
finalOutput?: AxFieldValue;
|
|
10299
|
+
actionLog: string;
|
|
10300
|
+
functionCalls: AxFieldValue;
|
|
10301
|
+
toolErrors: string[];
|
|
10302
|
+
turnCount: number;
|
|
10303
|
+
usage: AxFieldValue;
|
|
10304
|
+
recursiveTrace?: AxFieldValue;
|
|
10305
|
+
recursiveStats?: AxFieldValue;
|
|
10306
|
+
};
|
|
10307
|
+
type AxAgentJudgeEvalInput = AxAgentJudgeInput & AxAgentJudgeOutput;
|
|
10308
|
+
type AxAgentJudgeEvalOutput = {
|
|
10309
|
+
reasoning: string;
|
|
10310
|
+
quality: string;
|
|
10311
|
+
};
|
|
10312
|
+
type AxNormalizedAgentEvalDataset<IN = any> = {
|
|
10313
|
+
train: readonly AxAgentEvalTask<IN>[];
|
|
10314
|
+
validation?: readonly AxAgentEvalTask<IN>[];
|
|
10315
|
+
};
|
|
10270
10316
|
type AxAgentRecursionOptions = Partial<Omit<AxProgramForwardOptions<string>, 'functions'>> & {
|
|
10271
10317
|
/** Maximum nested recursion depth for llmQuery sub-agent calls. */
|
|
10272
10318
|
maxDepth?: number;
|
|
@@ -10274,6 +10320,69 @@ type AxAgentRecursionOptions = Partial<Omit<AxProgramForwardOptions<string>, 'fu
|
|
|
10274
10320
|
promptLevel?: AxActorPromptLevel;
|
|
10275
10321
|
};
|
|
10276
10322
|
type AxActorPromptLevel = 'detailed' | 'basic';
|
|
10323
|
+
type AxResolvedContextPolicy = {
|
|
10324
|
+
preset: AxContextPolicyPreset;
|
|
10325
|
+
summarizerOptions?: Omit<AxProgramForwardOptions<string>, 'functions'>;
|
|
10326
|
+
actionReplay: 'full' | 'adaptive' | 'minimal' | 'checkpointed';
|
|
10327
|
+
recentFullActions: number;
|
|
10328
|
+
errorPruning: boolean;
|
|
10329
|
+
hindsightEvaluation: boolean;
|
|
10330
|
+
pruneRank: number;
|
|
10331
|
+
rankPruneGraceTurns: number;
|
|
10332
|
+
tombstoning: boolean | Omit<AxProgramForwardOptions<string>, 'functions'> | undefined;
|
|
10333
|
+
stateSummary: {
|
|
10334
|
+
enabled: boolean;
|
|
10335
|
+
maxEntries?: number;
|
|
10336
|
+
maxChars?: number;
|
|
10337
|
+
};
|
|
10338
|
+
stateInspection: {
|
|
10339
|
+
enabled: boolean;
|
|
10340
|
+
contextThreshold?: number;
|
|
10341
|
+
};
|
|
10342
|
+
checkpoints: {
|
|
10343
|
+
enabled: boolean;
|
|
10344
|
+
triggerChars?: number;
|
|
10345
|
+
};
|
|
10346
|
+
};
|
|
10347
|
+
type AxResolvedActorModelPolicyEntry = {
|
|
10348
|
+
model: string;
|
|
10349
|
+
abovePromptChars?: number;
|
|
10350
|
+
aboveErrorTurns?: number;
|
|
10351
|
+
namespaces?: string[];
|
|
10352
|
+
};
|
|
10353
|
+
type AxResolvedActorModelPolicy = readonly AxResolvedActorModelPolicyEntry[];
|
|
10354
|
+
type AxAgentActorResultPayload = AxAgentTestCompletionPayload;
|
|
10355
|
+
type AxPreparedRestoredState = {
|
|
10356
|
+
runtimeBindings: Record<string, unknown>;
|
|
10357
|
+
runtimeEntries: AxAgentStateRuntimeEntry[];
|
|
10358
|
+
actionLogEntries: ActionLogEntry[];
|
|
10359
|
+
discoveryPromptState?: AxAgentDiscoveryPromptState;
|
|
10360
|
+
checkpointState?: AxAgentStateCheckpointState;
|
|
10361
|
+
provenance: Record<string, RuntimeStateVariableProvenance>;
|
|
10362
|
+
actorModelState?: AxAgentStateActorModelState;
|
|
10363
|
+
guidanceToken?: string;
|
|
10364
|
+
};
|
|
10365
|
+
type AxAgentRuntimeExecutionContext = {
|
|
10366
|
+
effectiveContextConfig: AxResolvedContextPolicy;
|
|
10367
|
+
bootstrapContextSummary?: string;
|
|
10368
|
+
applyBootstrapRuntimeContext: () => Promise<string | undefined>;
|
|
10369
|
+
captureRuntimeStateSummary: () => Promise<string | undefined>;
|
|
10370
|
+
consumeDiscoveryTurnArtifacts: () => {
|
|
10371
|
+
summary?: string;
|
|
10372
|
+
texts: string[];
|
|
10373
|
+
};
|
|
10374
|
+
getActorModelMatchedNamespaces: () => readonly string[];
|
|
10375
|
+
exportRuntimeState: () => Promise<AxAgentState>;
|
|
10376
|
+
restoreRuntimeState: (state: Readonly<AxAgentState>) => Promise<AxPreparedRestoredState>;
|
|
10377
|
+
syncRuntimeInputsToSession: () => Promise<void>;
|
|
10378
|
+
executeActorCode: (code: string) => Promise<{
|
|
10379
|
+
result: unknown;
|
|
10380
|
+
output: string;
|
|
10381
|
+
isError: boolean;
|
|
10382
|
+
}>;
|
|
10383
|
+
executeTestCode: (code: string) => Promise<AxAgentTestResult>;
|
|
10384
|
+
close: () => void;
|
|
10385
|
+
};
|
|
10277
10386
|
/**
|
|
10278
10387
|
* A split-architecture AI agent that uses two AxGen programs:
|
|
10279
10388
|
* - **Actor**: generates code to gather information (inputs, actionLog -> code)
|
|
@@ -10281,7 +10390,7 @@ type AxActorPromptLevel = 'detailed' | 'basic';
|
|
|
10281
10390
|
*
|
|
10282
10391
|
* The execution loop is managed by TypeScript, not the LLM:
|
|
10283
10392
|
* 1. Actor generates code → executed in runtime → result appended to actionLog
|
|
10284
|
-
* 2. Loop until Actor calls final(...) /
|
|
10393
|
+
* 2. Loop until Actor calls final(...) / askClarification(...) or maxTurns reached
|
|
10285
10394
|
* 3. Responder synthesizes final answer from actorResult payload
|
|
10286
10395
|
*/
|
|
10287
10396
|
declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAgentic<IN, OUT> {
|
|
@@ -10326,6 +10435,11 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10326
10435
|
private llmQueryBudgetState;
|
|
10327
10436
|
private recursiveInstructionSlots;
|
|
10328
10437
|
private baseActorDefinition;
|
|
10438
|
+
private currentDiscoveryPromptState;
|
|
10439
|
+
private actorDefinitionBaseDescription;
|
|
10440
|
+
private actorDefinitionContextFields;
|
|
10441
|
+
private actorDefinitionResponderOutputFields;
|
|
10442
|
+
private actorDefinitionBuildOptions;
|
|
10329
10443
|
private recursiveEvalContext;
|
|
10330
10444
|
private currentRecursiveTraceNodeId;
|
|
10331
10445
|
private recursiveInstructionRoleOverride;
|
|
@@ -10340,6 +10454,9 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10340
10454
|
private _supportsRecursiveActorSlotOptimization;
|
|
10341
10455
|
private _getRecursiveActorRole;
|
|
10342
10456
|
private _applyRecursiveActorInstruction;
|
|
10457
|
+
private _renderActorDefinition;
|
|
10458
|
+
private _buildActorInstruction;
|
|
10459
|
+
private _applyActorInstruction;
|
|
10343
10460
|
private _setRecursiveInstructionSlot;
|
|
10344
10461
|
private _copyRecursiveOptimizationStateTo;
|
|
10345
10462
|
constructor({ ai, judgeAI, agentIdentity, agentModuleNamespace, signature, }: Readonly<{
|
|
@@ -10465,35 +10582,16 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
|
|
|
10465
10582
|
*/
|
|
10466
10583
|
private _buildFuncParameters;
|
|
10467
10584
|
}
|
|
10468
|
-
/**
|
|
10469
|
-
* Configuration options for creating an agent using the agent() factory function.
|
|
10470
|
-
*/
|
|
10471
10585
|
interface AxAgentConfig<_IN extends AxGenIn, _OUT extends AxGenOut> extends AxAgentOptions<_IN> {
|
|
10472
10586
|
ai?: AxAIService;
|
|
10473
10587
|
judgeAI?: AxAIService;
|
|
10474
10588
|
agentIdentity?: AxAgentIdentity;
|
|
10475
10589
|
}
|
|
10476
|
-
|
|
10477
|
-
|
|
10478
|
-
* This is the recommended way to create agents, providing better type inference and cleaner syntax.
|
|
10479
|
-
*
|
|
10480
|
-
* @param signature - The input/output signature as a string or AxSignature object
|
|
10481
|
-
* @param config - Configuration options for the agent (contextFields is required)
|
|
10482
|
-
* @returns A typed agent instance
|
|
10483
|
-
*
|
|
10484
|
-
* @example
|
|
10485
|
-
* ```typescript
|
|
10486
|
-
* const myAgent = agent('context:string, query:string -> answer:string', {
|
|
10487
|
-
* contextFields: ['context'],
|
|
10488
|
-
* runtime: new AxJSRuntime(),
|
|
10489
|
-
* });
|
|
10490
|
-
* ```
|
|
10491
|
-
*/
|
|
10492
|
-
declare function agent<const T extends string, const CF extends readonly AxContextFieldInput[]>(signature: T, config: Omit<AxAgentConfig<ParseSignature<T>['inputs'], ParseSignature<T>['outputs']>, 'contextFields'> & {
|
|
10493
|
-
contextFields: CF;
|
|
10590
|
+
declare function agent<const T extends string, const CF extends readonly AxContextFieldInput[] = []>(signature: T, config: Omit<AxAgentConfig<ParseSignature<T>['inputs'], ParseSignature<T>['outputs']>, 'contextFields'> & {
|
|
10591
|
+
contextFields?: CF;
|
|
10494
10592
|
}): AxAgent<ParseSignature<T>['inputs'], ParseSignature<T>['outputs']>;
|
|
10495
|
-
declare function agent<TInput extends Record<string, any>, TOutput extends Record<string, any>, const CF extends readonly AxContextFieldInput[]>(signature: AxSignature<TInput, TOutput>, config: Omit<AxAgentConfig<TInput, TOutput>, 'contextFields'> & {
|
|
10496
|
-
contextFields
|
|
10593
|
+
declare function agent<TInput extends Record<string, any>, TOutput extends Record<string, any>, const CF extends readonly AxContextFieldInput[] = []>(signature: AxSignature<TInput, TOutput>, config: Omit<AxAgentConfig<TInput, TOutput>, 'contextFields'> & {
|
|
10594
|
+
contextFields?: CF;
|
|
10497
10595
|
}): AxAgent<TInput, TOutput>;
|
|
10498
10596
|
|
|
10499
10597
|
/**
|
|
@@ -10563,8 +10661,8 @@ interface AxCodeSession {
|
|
|
10563
10661
|
* into checkpoint summaries as context grows. Reliability-first defaults favor
|
|
10564
10662
|
* summaries before deletion. Best default for long multi-turn tasks.
|
|
10565
10663
|
* - `lean`: Most aggressive compression. Keep live runtime state visible, checkpoint
|
|
10566
|
-
* older successful work,
|
|
10567
|
-
*
|
|
10664
|
+
* older successful work, and summarize replay-pruned successful turns instead of
|
|
10665
|
+
* replaying their full code blocks. Reliability-first
|
|
10568
10666
|
* defaults still preserve recent evidence before deleting older low-value steps.
|
|
10569
10667
|
* Best when token pressure matters more than raw replay detail.
|
|
10570
10668
|
* - `checkpointed`: Keep full replay until the rendered actor prompt crosses a threshold, then
|
|
@@ -10594,18 +10692,6 @@ interface AxContextPolicyConfig {
|
|
|
10594
10692
|
* is never propagated so the summarizer stays stateless.
|
|
10595
10693
|
*/
|
|
10596
10694
|
summarizerOptions?: Omit<AxProgramForwardOptions<string>, 'functions'>;
|
|
10597
|
-
/**
|
|
10598
|
-
* Hide stale discovery docs from later actor prompts after a discovered
|
|
10599
|
-
* callable is used successfully. This only affects prompt replay; it does
|
|
10600
|
-
* not delete internal history or remove runtime values.
|
|
10601
|
-
*
|
|
10602
|
-
* Defaults by preset:
|
|
10603
|
-
* - `full`: false
|
|
10604
|
-
* - `adaptive`: false
|
|
10605
|
-
* - `lean`: true
|
|
10606
|
-
* - `checkpointed`: false
|
|
10607
|
-
*/
|
|
10608
|
-
pruneUsedDocs?: boolean;
|
|
10609
10695
|
/**
|
|
10610
10696
|
* Prune error entries after a successful (non-error) turn.
|
|
10611
10697
|
*
|
|
@@ -10732,6 +10818,12 @@ declare function axBuildActorDefinition(baseDefinition: string | undefined, cont
|
|
|
10732
10818
|
namespace: string;
|
|
10733
10819
|
selectionCriteria?: string;
|
|
10734
10820
|
}>;
|
|
10821
|
+
/** When true, render authenticated host-guidance rules in the actor template. */
|
|
10822
|
+
hasAuthenticatedGuidance?: boolean;
|
|
10823
|
+
/** Exact authenticated guidance prefix the actor should trust. */
|
|
10824
|
+
authenticatedGuidancePrefix?: string;
|
|
10825
|
+
/** Discovery docs accumulated during the current run. */
|
|
10826
|
+
discoveredDocsMarkdown?: string;
|
|
10735
10827
|
}>): string;
|
|
10736
10828
|
/**
|
|
10737
10829
|
* Builds the Responder system prompt. The Responder synthesizes a final answer
|
|
@@ -11146,6 +11238,17 @@ declare class AxMCPHTTPSSETransport implements AxMCPTransport {
|
|
|
11146
11238
|
close(): void;
|
|
11147
11239
|
}
|
|
11148
11240
|
|
|
11241
|
+
type AxAgentGuidancePayload = {
|
|
11242
|
+
type: 'guide_agent';
|
|
11243
|
+
guidance: string;
|
|
11244
|
+
triggeredBy?: string;
|
|
11245
|
+
};
|
|
11246
|
+
type AxAgentInternalCompletionPayload = AxAgentActorResultPayload | AxAgentGuidancePayload;
|
|
11247
|
+
declare class AxAgentProtocolCompletionSignal extends Error {
|
|
11248
|
+
readonly type: AxAgentInternalCompletionPayload['type'];
|
|
11249
|
+
constructor(type: AxAgentInternalCompletionPayload['type']);
|
|
11250
|
+
}
|
|
11251
|
+
|
|
11149
11252
|
/**
|
|
11150
11253
|
* Advanced Multi-hop RAG with iterative query refinement, context accumulation,
|
|
11151
11254
|
* parallel sub-queries, and self-healing quality feedback loops
|
|
@@ -11492,4 +11595,4 @@ declare class AxRateLimiterTokenUsage {
|
|
|
11492
11595
|
acquire(tokens: number): Promise<void>;
|
|
11493
11596
|
}
|
|
11494
11597
|
|
|
11495
|
-
export { AxACE, type AxACEBullet, type AxACECuratorOperation, type AxACECuratorOperationType, type AxACECuratorOutput, type AxACEFeedbackEvent, type AxACEGeneratorOutput, type AxACEOptimizationArtifact, AxACEOptimizedProgram, type AxACEOptions, type AxACEPlaybook, type AxACEReflectionOutput, type AxACEResult, AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicEffortLevel, type AxAIAnthropicEffortLevelMapping, type AxAIAnthropicErrorEvent, type AxAIAnthropicFunctionTool, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicOutputConfig, type AxAIAnthropicPingEvent, type AxAIAnthropicRequestTool, type AxAIAnthropicThinkingConfig, type AxAIAnthropicThinkingTokenBudgetLevels, type AxAIAnthropicThinkingWire, AxAIAnthropicVertexModel, type AxAIAnthropicWebSearchTool, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiCacheCreateRequest, type AxAIGoogleGeminiCacheResponse, type AxAIGoogleGeminiCacheUpdateRequest, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, type AxAIGoogleGeminiRetrievalConfig, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiThinkingLevel, type AxAIGoogleGeminiThinkingLevelMapping, type AxAIGoogleGeminiThinkingTokenBudgetLevels, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleMaps, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, type AxAIMetricsInstruments, AxAIMistral, type AxAIMistralArgs, type AxAIMistralChatRequest, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIAnnotation, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUrlCitation, type AxAIOpenAIUsage, AxAIOpenRouter, type AxAIOpenRouterArgs, AxAIRefusalError, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, type AxAIServiceModelType, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAITogetherChatModel, AxAITogetherModel, AxAIWebLLM, type AxAIWebLLMArgs, type AxAIWebLLMChatRequest, type AxAIWebLLMChatResponse, type AxAIWebLLMChatResponseDelta, type AxAIWebLLMConfig, type AxAIWebLLMEmbedModel, type AxAIWebLLMEmbedRequest, type AxAIWebLLMEmbedResponse, AxAIWebLLMModel, type AxAPI, type AxAPIConfig, type AxActorModelPolicy, type AxActorModelPolicyEntry, type AxActorPromptLevel, AxAgent, type AxAgentClarification, type AxAgentClarificationChoice, AxAgentClarificationError, type AxAgentClarificationKind, type AxAgentCompletionProtocol, type AxAgentConfig, type AxAgentDemos, type AxAgentEvalDataset, type AxAgentEvalFunctionCall, type AxAgentEvalPrediction, type AxAgentEvalTask, type AxAgentFunction, type AxAgentFunctionExample, type AxAgentFunctionGroup, type AxAgentInputUpdateCallback, type AxAgentJudgeOptions, type AxAgentOptimizeOptions, type AxAgentOptimizeResult, type AxAgentOptimizeTarget, type AxAgentOptions, type AxAgentRecursionOptions, type AxAgentRecursiveExpensiveNode, type AxAgentRecursiveFunctionCall, type AxAgentRecursiveNodeRole, type AxAgentRecursiveStats, type AxAgentRecursiveTargetId, type AxAgentRecursiveTraceNode, type AxAgentRecursiveTurn, type AxAgentRecursiveUsage, type AxAgentState, type AxAgentStateActionLogEntry, type AxAgentStateActorModelState, type AxAgentStateCheckpointState, type AxAgentStateRuntimeEntry, type AxAgentStructuredClarification, type AxAgentTestCompletionPayload, type AxAgentTestResult, type AxAgentTurnCallbackArgs, type AxAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBaseOptimizer, AxBootstrapFewShot, type AxBootstrapOptimizerOptions, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, type AxCheckpoint, type AxCheckpointLoadFn, type AxCheckpointSaveFn, type AxCitation, type AxCodeInterpreter, type AxCodeRuntime, type AxCodeSession, type AxCodeSessionSnapshot, type AxCodeSessionSnapshotEntry, type AxCompileOptions, AxContentProcessingError, type AxContentProcessingServices, type AxContextCacheInfo, type AxContextCacheOperation, type AxContextCacheOptions, type AxContextCacheRegistry, type AxContextCacheRegistryEntry, type AxContextFieldInput, type AxContextPolicyConfig, type AxContextPolicyPreset, type AxCostTracker, type AxCostTrackerOptions, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultCostTracker, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, type AxErrorCategory, AxEvalUtil, type AxEvaluateArgs, type AxExample$1 as AxExample, type AxExamples, type AxField, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, AxFlow, type AxFlowAutoParallelConfig, type AxFlowBranchContext, type AxFlowBranchEvaluationData, type AxFlowCompleteData, AxFlowDependencyAnalyzer, type AxFlowDynamicContext, type AxFlowErrorData, AxFlowExecutionPlanner, type AxFlowExecutionStep, type AxFlowLogData, type AxFlowLoggerData, type AxFlowLoggerFunction, type AxFlowNodeDefinition, type AxFlowParallelBranch, type AxFlowParallelGroup, type AxFlowParallelGroupCompleteData, type AxFlowParallelGroupStartData, type AxFlowStartData, type AxFlowState, type AxFlowStepCompleteData, type AxFlowStepFunction, type AxFlowStepStartData, type AxFlowSubContext, AxFlowSubContextImpl, type AxFlowTypedParallelBranch, type AxFlowTypedSubContext, AxFlowTypedSubContextImpl, type AxFlowable, type AxFluentFieldInfo, AxFluentFieldType, type AxForwardable, type AxFunction, type AxFunctionCallRecord, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, type AxFunctionResult, type AxFunctionResultFormatter, AxGEPA, type AxGEPAAdapter, type AxGEPAEvaluationBatch, type AxGEPAOptimizationReport, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenInput, type AxGenMetricsInstruments, type AxGenOut, type AxGenOutput, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSRuntime, type AxJSRuntimeOutputMode, AxJSRuntimePermission, type AxJudgeForwardOptions, type AxJudgeOptions, AxLLMRequestTypeValues, AxLearn, type AxLearnArtifact, type AxLearnCheckpointMode, type AxLearnCheckpointState, type AxLearnContinuousOptions, type AxLearnMode, type AxLearnOptimizeOptions, type AxLearnOptions, type AxLearnPlaybook, type AxLearnPlaybookOptions, type AxLearnPlaybookSummary, type AxLearnProgress, type AxLearnResult, type AxLearnUpdateFeedback, type AxLearnUpdateInput, type AxLearnUpdateOptions, type AxLoggerData, type AxLoggerFunction, type AxMCPBlobResourceContents, AxMCPClient, type AxMCPEmbeddedResource, type AxMCPFunctionDescription, AxMCPHTTPSSETransport, type AxMCPImageContent, type AxMCPInitializeParams, type AxMCPInitializeResult, type AxMCPJSONRPCErrorResponse, type AxMCPJSONRPCNotification, type AxMCPJSONRPCRequest, type AxMCPJSONRPCResponse, type AxMCPJSONRPCSuccessResponse, type AxMCPOAuthOptions, type AxMCPPrompt, type AxMCPPromptArgument, type AxMCPPromptGetResult, type AxMCPPromptMessage, type AxMCPPromptsListResult, type AxMCPResource, type AxMCPResourceReadResult, type AxMCPResourceTemplate, type AxMCPResourceTemplatesListResult, type AxMCPResourcesListResult, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTextContent, type AxMCPTextResourceContents, type AxMCPToolsListResult, type AxMCPTransport, AxMediaNotSupportedError, AxMemory, type AxMemoryData, type AxMemoryMessageValue, type AxMessage, type AxMetricFn, type AxMetricFnArgs, type AxMetricsConfig, AxMiPRO, type AxMiPROOptimizerOptions, type AxMiPROResult, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, type AxMultiMetricFn, type AxMultiProviderConfig, AxMultiServiceRouter, type AxNamedProgramInstance, type AxOptimizationCheckpoint, type AxOptimizationProgress, type AxOptimizationStats, type AxOptimizedProgram, AxOptimizedProgramImpl, type AxOptimizer, type AxOptimizerArgs, type AxOptimizerLoggerData, type AxOptimizerLoggerFunction, type AxOptimizerMetricsConfig, type AxOptimizerMetricsInstruments, type AxOptimizerResult, type AxParetoResult, type AxPreparedChatRequest, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramForwardOptionsWithModels, type AxProgramOptions, type AxProgramStreamingForwardOptions, type AxProgramStreamingForwardOptionsWithModels, type AxProgramTrace, type AxProgramUsage, type AxProgrammable, AxPromptTemplate, type AxPromptTemplateOptions, AxProviderRouter, type AxRLMConfig, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResponseHandlerArgs, type AxResultPickerFunction, type AxResultPickerFunctionFieldResults, type AxResultPickerFunctionFunctionResults, type AxRewriteIn, type AxRewriteOut, type AxRoutingResult, type AxSamplePickerOptions, type AxSelfTuningConfig, type AxSetExamplesOptions, AxSignature, AxSignatureBuilder, type AxSignatureConfig, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStepContext, AxStepContextImpl, type AxStepHooks, type AxStepUsage, AxStopFunctionCallException, type AxStorage, type AxStorageQuery, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxSynth, type AxSynthExample, type AxSynthOptions, type AxSynthResult, AxTestPrompt, type AxThoughtBlockItem, AxTokenLimitError, type AxTokenUsage, type AxTrace, AxTraceLogger, type AxTraceLoggerOptions, type AxTunable, type AxTypedExample, type AxUsable, type AxWorkerRuntimeConfig, agent, ai, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIOpenRouterDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axAIWebLLMCreativeConfig, axAIWebLLMDefaultConfig, axAnalyzeChatPromptRequirements, axAnalyzeRequestRequirements, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axBuildActorDefinition, axBuildResponderDefinition, axCheckMetricsHealth, axCreateDefaultColorLogger, axCreateDefaultOptimizerColorLogger, axCreateDefaultOptimizerTextLogger, axCreateDefaultTextLogger, axCreateFlowColorLogger, axCreateFlowTextLogger, axCreateJSRuntime, axDefaultFlowLogger, axDefaultMetricsConfig, axDefaultOptimizerLogger, axDefaultOptimizerMetricsConfig, axGetCompatibilityReport, axGetFormatCompatibility, axGetMetricsConfig, axGetOptimizerMetricsConfig, axGetProvidersWithMediaSupport, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoOpenAIResponses, axModelInfoReka, axModelInfoTogether, axModelInfoWebLLM, axProcessContentForProvider, axRAG, axScoreProvidersForRequest, axSelectOptimalProvider, axSpanAttributes, axSpanEvents, axUpdateMetricsConfig, axUpdateOptimizerMetricsConfig, axValidateChatRequestMessage, axValidateChatResponseResult, axValidateProviderCapabilities, axWorkerRuntime, f, flow, fn, s };
|
|
11598
|
+
export { AxACE, type AxACEBullet, type AxACECuratorOperation, type AxACECuratorOperationType, type AxACECuratorOutput, type AxACEFeedbackEvent, type AxACEGeneratorOutput, type AxACEOptimizationArtifact, AxACEOptimizedProgram, type AxACEOptions, type AxACEPlaybook, type AxACEReflectionOutput, type AxACEResult, AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicEffortLevel, type AxAIAnthropicEffortLevelMapping, type AxAIAnthropicErrorEvent, type AxAIAnthropicFunctionTool, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicOutputConfig, type AxAIAnthropicPingEvent, type AxAIAnthropicRequestTool, type AxAIAnthropicThinkingConfig, type AxAIAnthropicThinkingTokenBudgetLevels, type AxAIAnthropicThinkingWire, AxAIAnthropicVertexModel, type AxAIAnthropicWebSearchTool, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiCacheCreateRequest, type AxAIGoogleGeminiCacheResponse, type AxAIGoogleGeminiCacheUpdateRequest, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, type AxAIGoogleGeminiRetrievalConfig, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiThinkingLevel, type AxAIGoogleGeminiThinkingLevelMapping, type AxAIGoogleGeminiThinkingTokenBudgetLevels, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleMaps, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, type AxAIMetricsInstruments, AxAIMistral, type AxAIMistralArgs, type AxAIMistralChatRequest, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIAnnotation, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUrlCitation, type AxAIOpenAIUsage, AxAIOpenRouter, type AxAIOpenRouterArgs, AxAIRefusalError, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, type AxAIServiceModelType, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAITogetherChatModel, AxAITogetherModel, AxAIWebLLM, type AxAIWebLLMArgs, type AxAIWebLLMChatRequest, type AxAIWebLLMChatResponse, type AxAIWebLLMChatResponseDelta, type AxAIWebLLMConfig, type AxAIWebLLMEmbedModel, type AxAIWebLLMEmbedRequest, type AxAIWebLLMEmbedResponse, AxAIWebLLMModel, type AxAPI, type AxAPIConfig, type AxActorModelPolicy, type AxActorModelPolicyEntry, type AxActorPromptLevel, AxAgent, type AxAgentActorResultPayload, type AxAgentClarification, type AxAgentClarificationChoice, AxAgentClarificationError, type AxAgentClarificationKind, type AxAgentCompletionProtocol, type AxAgentConfig, type AxAgentDemos, type AxAgentDiscoveryPromptState, type AxAgentEvalDataset, type AxAgentEvalFunctionCall, type AxAgentEvalPrediction, type AxAgentEvalTask, type AxAgentFunction, type AxAgentFunctionCollection, type AxAgentFunctionExample, type AxAgentFunctionGroup, type AxAgentFunctionModuleMeta, type AxAgentGuidancePayload, type AxAgentIdentity, type AxAgentInputUpdateCallback, type AxAgentInternalCompletionPayload, type AxAgentJudgeEvalInput, type AxAgentJudgeEvalOutput, type AxAgentJudgeInput, type AxAgentJudgeOptions, type AxAgentJudgeOutput, type AxAgentOptimizeOptions, type AxAgentOptimizeResult, type AxAgentOptimizeTarget, type AxAgentOptions, AxAgentProtocolCompletionSignal, type AxAgentRecursionOptions, type AxAgentRecursiveExpensiveNode, type AxAgentRecursiveFunctionCall, type AxAgentRecursiveNodeRole, type AxAgentRecursiveStats, type AxAgentRecursiveTargetId, type AxAgentRecursiveTraceNode, type AxAgentRecursiveTurn, type AxAgentRecursiveUsage, type AxAgentRuntimeExecutionContext, type AxAgentState, type AxAgentStateActionLogEntry, type AxAgentStateActorModelState, type AxAgentStateCheckpointState, type AxAgentStateRuntimeEntry, type AxAgentStructuredClarification, type AxAgentTestCompletionPayload, type AxAgentTestResult, type AxAgentTurnCallbackArgs, type AxAgentic, type AxAnyAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBaseOptimizer, AxBootstrapFewShot, type AxBootstrapOptimizerOptions, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, type AxCheckpoint, type AxCheckpointLoadFn, type AxCheckpointSaveFn, type AxCitation, type AxCodeInterpreter, type AxCodeRuntime, type AxCodeSession, type AxCodeSessionSnapshot, type AxCodeSessionSnapshotEntry, type AxCompileOptions, AxContentProcessingError, type AxContentProcessingServices, type AxContextCacheInfo, type AxContextCacheOperation, type AxContextCacheOptions, type AxContextCacheRegistry, type AxContextCacheRegistryEntry, type AxContextFieldInput, type AxContextFieldPromptConfig, type AxContextPolicyConfig, type AxContextPolicyPreset, type AxCostTracker, type AxCostTrackerOptions, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultCostTracker, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, type AxErrorCategory, AxEvalUtil, type AxEvaluateArgs, type AxExample$1 as AxExample, type AxExamples, type AxField, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, AxFlow, type AxFlowAutoParallelConfig, type AxFlowBranchContext, type AxFlowBranchEvaluationData, type AxFlowCompleteData, AxFlowDependencyAnalyzer, type AxFlowDynamicContext, type AxFlowErrorData, AxFlowExecutionPlanner, type AxFlowExecutionStep, type AxFlowLogData, type AxFlowLoggerData, type AxFlowLoggerFunction, type AxFlowNodeDefinition, type AxFlowParallelBranch, type AxFlowParallelGroup, type AxFlowParallelGroupCompleteData, type AxFlowParallelGroupStartData, type AxFlowStartData, type AxFlowState, type AxFlowStepCompleteData, type AxFlowStepFunction, type AxFlowStepStartData, type AxFlowSubContext, AxFlowSubContextImpl, type AxFlowTypedParallelBranch, type AxFlowTypedSubContext, AxFlowTypedSubContextImpl, type AxFlowable, type AxFluentFieldInfo, AxFluentFieldType, type AxForwardable, type AxFunction, type AxFunctionCallRecord, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, type AxFunctionResult, type AxFunctionResultFormatter, AxGEPA, type AxGEPAAdapter, type AxGEPAEvaluationBatch, type AxGEPAOptimizationReport, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenInput, type AxGenMetricsInstruments, type AxGenOut, type AxGenOutput, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSRuntime, type AxJSRuntimeOutputMode, AxJSRuntimePermission, type AxJudgeForwardOptions, type AxJudgeOptions, AxLLMRequestTypeValues, AxLearn, type AxLearnArtifact, type AxLearnCheckpointMode, type AxLearnCheckpointState, type AxLearnContinuousOptions, type AxLearnMode, type AxLearnOptimizeOptions, type AxLearnOptions, type AxLearnPlaybook, type AxLearnPlaybookOptions, type AxLearnPlaybookSummary, type AxLearnProgress, type AxLearnResult, type AxLearnUpdateFeedback, type AxLearnUpdateInput, type AxLearnUpdateOptions, type AxLoggerData, type AxLoggerFunction, type AxMCPBlobResourceContents, AxMCPClient, type AxMCPEmbeddedResource, type AxMCPFunctionDescription, AxMCPHTTPSSETransport, type AxMCPImageContent, type AxMCPInitializeParams, type AxMCPInitializeResult, type AxMCPJSONRPCErrorResponse, type AxMCPJSONRPCNotification, type AxMCPJSONRPCRequest, type AxMCPJSONRPCResponse, type AxMCPJSONRPCSuccessResponse, type AxMCPOAuthOptions, type AxMCPPrompt, type AxMCPPromptArgument, type AxMCPPromptGetResult, type AxMCPPromptMessage, type AxMCPPromptsListResult, type AxMCPResource, type AxMCPResourceReadResult, type AxMCPResourceTemplate, type AxMCPResourceTemplatesListResult, type AxMCPResourcesListResult, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTextContent, type AxMCPTextResourceContents, type AxMCPToolsListResult, type AxMCPTransport, AxMediaNotSupportedError, AxMemory, type AxMemoryData, type AxMemoryMessageValue, type AxMessage, type AxMetricFn, type AxMetricFnArgs, type AxMetricsConfig, AxMiPRO, type AxMiPROOptimizerOptions, type AxMiPROResult, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, type AxMultiMetricFn, type AxMultiProviderConfig, AxMultiServiceRouter, type AxNamedProgramInstance, type AxNormalizedAgentEvalDataset, type AxOptimizationCheckpoint, type AxOptimizationProgress, type AxOptimizationStats, type AxOptimizedProgram, AxOptimizedProgramImpl, type AxOptimizer, type AxOptimizerArgs, type AxOptimizerLoggerData, type AxOptimizerLoggerFunction, type AxOptimizerMetricsConfig, type AxOptimizerMetricsInstruments, type AxOptimizerResult, type AxParetoResult, type AxPreparedChatRequest, type AxPreparedRestoredState, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramForwardOptionsWithModels, type AxProgramOptions, type AxProgramStreamingForwardOptions, type AxProgramStreamingForwardOptionsWithModels, type AxProgramTrace, type AxProgramUsage, type AxProgrammable, AxPromptTemplate, type AxPromptTemplateOptions, AxProviderRouter, type AxRLMConfig, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResolvedActorModelPolicy, type AxResolvedActorModelPolicyEntry, type AxResolvedContextPolicy, type AxResponseHandlerArgs, type AxResultPickerFunction, type AxResultPickerFunctionFieldResults, type AxResultPickerFunctionFunctionResults, type AxRewriteIn, type AxRewriteOut, type AxRoutingResult, type AxSamplePickerOptions, type AxSelfTuningConfig, type AxSetExamplesOptions, AxSignature, AxSignatureBuilder, type AxSignatureConfig, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStepContext, AxStepContextImpl, type AxStepHooks, type AxStepUsage, AxStopFunctionCallException, type AxStorage, type AxStorageQuery, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxSynth, type AxSynthExample, type AxSynthOptions, type AxSynthResult, AxTestPrompt, type AxThoughtBlockItem, AxTokenLimitError, type AxTokenUsage, type AxTrace, AxTraceLogger, type AxTraceLoggerOptions, type AxTunable, type AxTypedExample, type AxUsable, type AxWorkerRuntimeConfig, agent, ai, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIOpenRouterDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axAIWebLLMCreativeConfig, axAIWebLLMDefaultConfig, axAnalyzeChatPromptRequirements, axAnalyzeRequestRequirements, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axBuildActorDefinition, axBuildResponderDefinition, axCheckMetricsHealth, axCreateDefaultColorLogger, axCreateDefaultOptimizerColorLogger, axCreateDefaultOptimizerTextLogger, axCreateDefaultTextLogger, axCreateFlowColorLogger, axCreateFlowTextLogger, axCreateJSRuntime, axDefaultFlowLogger, axDefaultMetricsConfig, axDefaultOptimizerLogger, axDefaultOptimizerMetricsConfig, axGetCompatibilityReport, axGetFormatCompatibility, axGetMetricsConfig, axGetOptimizerMetricsConfig, axGetProvidersWithMediaSupport, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoOpenAIResponses, axModelInfoReka, axModelInfoTogether, axModelInfoWebLLM, axProcessContentForProvider, axRAG, axScoreProvidersForRequest, axSelectOptimalProvider, axSpanAttributes, axSpanEvents, axUpdateMetricsConfig, axUpdateOptimizerMetricsConfig, axValidateChatRequestMessage, axValidateChatResponseResult, axValidateProviderCapabilities, axWorkerRuntime, f, flow, fn, s };
|