@ax-llm/ax 19.0.21 → 19.0.23

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.d.cts CHANGED
@@ -2238,6 +2238,7 @@ interface AxCompileOptions {
2238
2238
  feedbackFn?: (args: Readonly<{
2239
2239
  prediction: unknown;
2240
2240
  example: AxExample$1;
2241
+ componentId?: string;
2241
2242
  }>) => string | string[] | undefined;
2242
2243
  skipPerfectScore?: boolean;
2243
2244
  perfectScore?: number;
@@ -2324,6 +2325,8 @@ interface AxOptimizedProgram<OUT = any> {
2324
2325
  converged: boolean;
2325
2326
  scoreHistory?: number[];
2326
2327
  configurationHistory?: Record<string, unknown>[];
2328
+ artifactFormatVersion?: number;
2329
+ instructionSchema?: string;
2327
2330
  applyTo<IN, T extends AxGenOut>(program: AxGen<IN, T>): void;
2328
2331
  }
2329
2332
  declare class AxOptimizedProgramImpl<OUT = any> implements AxOptimizedProgram<OUT> {
@@ -2349,6 +2352,8 @@ declare class AxOptimizedProgramImpl<OUT = any> implements AxOptimizedProgram<OU
2349
2352
  readonly converged: boolean;
2350
2353
  readonly scoreHistory?: number[];
2351
2354
  readonly configurationHistory?: Record<string, unknown>[];
2355
+ readonly artifactFormatVersion?: number;
2356
+ readonly instructionSchema?: string;
2352
2357
  constructor(config: {
2353
2358
  bestScore: number;
2354
2359
  stats: AxOptimizationStats;
@@ -2363,6 +2368,8 @@ declare class AxOptimizedProgramImpl<OUT = any> implements AxOptimizedProgram<OU
2363
2368
  converged: boolean;
2364
2369
  scoreHistory?: number[];
2365
2370
  configurationHistory?: Record<string, unknown>[];
2371
+ artifactFormatVersion?: number;
2372
+ instructionSchema?: string;
2366
2373
  });
2367
2374
  applyTo<IN, T extends AxGenOut>(program: AxGen<IN, T>): void;
2368
2375
  }
@@ -2917,6 +2924,9 @@ declare class AxGen<IN = any, OUT extends AxGenOut = any> extends AxProgram<IN,
2917
2924
  stop(): void;
2918
2925
  setInstruction(instruction: string): void;
2919
2926
  getInstruction(): string | undefined;
2927
+ private renderPromptForInternalUse;
2928
+ /** @internal */
2929
+ _measurePromptCharsForInternalUse(ai: Readonly<AxAIService>, values: IN | AxMessage<IN>[], options?: Readonly<Partial<Omit<AxProgramForwardOptions<any>, 'functions'>>>): Promise<number>;
2920
2930
  private getSignatureName;
2921
2931
  private getMetricsInstruments;
2922
2932
  private getMergedCustomLabels;
@@ -3765,7 +3775,6 @@ declare class AxBaseAI<TModel, TEmbedModel, TChatRequest, TEmbedRequest, TChatRe
3765
3775
  private calculateRequestSize;
3766
3776
  private calculateResponseSize;
3767
3777
  private detectMultimodalContent;
3768
- private calculatePromptLength;
3769
3778
  private calculateContextWindowUsage;
3770
3779
  private estimateCost;
3771
3780
  private estimateCostByName;
@@ -7334,124 +7343,13 @@ declare const axGlobals: {
7334
7343
  functionResultFormatter: AxFunctionResultFormatter;
7335
7344
  };
7336
7345
 
7337
- /**
7338
- * AxJudge - Polymorphic & Relativistic Evaluation Engine
7339
- *
7340
- * Unlike traditional metrics that rely on brittle assertions or "Gold Standard" datasets,
7341
- * AxJudge dynamically adapts its evaluation strategy based on available data.
7342
- *
7343
- * Key insight from "Escaping the Verifier" (RARO): It is easier and more robust for an LLM
7344
- * to compare two answers (Relativistic) than to assign an absolute score to one.
7345
- *
7346
- * Three Evaluation Modes:
7347
- * 1. **Absolute Mode** - When ground truth is available (unit test style)
7348
- * 2. **Relativistic Mode** - Compare student vs teacher output (RARO adversarial check)
7349
- * 3. **Reference-Free Mode** - Heuristic quality check when no comparison data exists
7350
- */
7351
-
7352
- /**
7353
- * Evaluation mode used by the judge.
7354
- */
7355
- type AxJudgeMode = 'absolute' | 'relativistic' | 'reference-free';
7356
- /**
7357
- * Result from a single evaluation.
7358
- */
7359
- interface AxJudgeResult {
7360
- /** Score from 0 to 1 */
7361
- score: number;
7362
- /** Explanation for the score */
7363
- reasoning: string;
7364
- /** Which evaluation mode was used */
7365
- mode: AxJudgeMode;
7366
- /** Winner in relativistic mode */
7367
- winner?: 'student' | 'teacher' | 'tie';
7368
- /** Quality tier in reference-free mode */
7369
- qualityTier?: string;
7370
- }
7371
7346
  type AxJudgeForwardOptions = Omit<AxProgramForwardOptions<string>, 'functions' | 'description'>;
7372
- /**
7373
- * Configuration for AxJudge.
7374
- */
7375
- interface AxJudgeOptions {
7376
- /** AI service to use for judging (should be >= student model quality) */
7347
+ interface AxJudgeOptions extends AxJudgeForwardOptions {
7377
7348
  ai: AxAIService;
7378
- /** Custom criteria for reference-free evaluation */
7379
7349
  criteria?: string;
7380
- /** Additional judge-specific guidance appended to the evaluation prompt */
7381
7350
  description?: string;
7382
- /** Whether to randomize A/B position in relativistic mode to reduce bias */
7383
7351
  randomizeOrder?: boolean;
7384
7352
  }
7385
- interface AxJudgeOptions extends AxJudgeForwardOptions {
7386
- }
7387
- type AxJudgeRubric = 'accuracy' | 'helpfulness' | 'relevance' | 'clarity' | 'completeness' | 'safety' | 'custom';
7388
- /**
7389
- * AxJudge - Polymorphic evaluation engine that automatically selects the best strategy.
7390
- *
7391
- * @example
7392
- * ```typescript
7393
- * const judge = new AxJudge(signature, { ai: teacherAI });
7394
- *
7395
- * // Absolute mode (with ground truth)
7396
- * const result1 = await judge.evaluate(
7397
- * { question: 'Capital of France?' },
7398
- * { answer: 'Paris' },
7399
- * { answer: 'Paris' } // expected
7400
- * );
7401
- *
7402
- * // Relativistic mode (compare student vs teacher)
7403
- * const result2 = await judge.evaluate(
7404
- * { question: 'Explain quantum computing' },
7405
- * studentResponse,
7406
- * teacherResponse
7407
- * );
7408
- *
7409
- * // Reference-free mode (no comparison data)
7410
- * const result3 = await judge.evaluate(
7411
- * { question: 'Write a poem' },
7412
- * { poem: 'Roses are red...' }
7413
- * );
7414
- * ```
7415
- */
7416
- declare class AxJudge<IN extends AxGenIn, OUT extends AxGenOut> {
7417
- private signature;
7418
- private options;
7419
- constructor(signature: AxSignature<IN, OUT>, options: AxJudgeOptions);
7420
- private buildForwardOptions;
7421
- private buildTaskDescription;
7422
- /**
7423
- * The main entry point. Automatically routes to the best strategy.
7424
- */
7425
- evaluate(input: IN, studentOutput: OUT, referenceOutput?: OUT): Promise<AxJudgeResult>;
7426
- /**
7427
- * Strategy 1: Absolute Mode (The "Unit Test")
7428
- * Used when we can directly compare against a ground truth.
7429
- */
7430
- private runAbsolute;
7431
- /**
7432
- * Strategy 2: Relativistic Mode (The "RARO" Adversarial Check)
7433
- * Compares student output against teacher output.
7434
- * Key insight: Comparative judgment is more reliable than absolute scoring.
7435
- */
7436
- private runRelativistic;
7437
- /**
7438
- * Strategy 3: Reference-Free Mode (The "Vibe Check")
7439
- * Evaluates against general heuristic criteria using discrete quality tiers.
7440
- *
7441
- * Per RARO paper: LLMs are more reliable at classification than numeric scoring.
7442
- * Using discrete tiers reduces variance and degeneracy issues.
7443
- */
7444
- private runReferenceFree;
7445
- /**
7446
- * Convert this judge to a metric function for use with optimizers.
7447
- * Uses relativistic mode when teacher output is available as expected.
7448
- */
7449
- toMetricFn(): AxMetricFn;
7450
- /**
7451
- * Get the signature being evaluated.
7452
- */
7453
- getSignature(): AxSignature<IN, OUT>;
7454
- }
7455
7353
 
7456
7354
  /**
7457
7355
  * AxStorage - Persistence layer for traces, checkpoints, and agent state.
@@ -7997,7 +7895,7 @@ interface AxLearnOptions {
7997
7895
  teacher: AxAIService;
7998
7896
  /** Maximum optimization rounds (default: 20) */
7999
7897
  budget?: number;
8000
- /** Custom metric function (if not provided, auto-generates using AxJudge) */
7898
+ /** Custom metric function (if not provided, auto-generates using typed AxGen evaluation) */
8001
7899
  metric?: AxMetricFn;
8002
7900
  /** Judge options when auto-generating metric */
8003
7901
  judgeOptions?: Partial<AxJudgeOptions>;
@@ -10018,6 +9916,71 @@ type RuntimeStateVariableProvenance = {
10018
9916
  code?: string;
10019
9917
  };
10020
9918
 
9919
+ declare const AX_AGENT_RECURSIVE_TARGET_IDS: {
9920
+ readonly shared: "root.actor.shared";
9921
+ readonly root: "root.actor.root";
9922
+ readonly recursive: "root.actor.recursive";
9923
+ readonly terminal: "root.actor.terminal";
9924
+ readonly responder: "root.responder";
9925
+ };
9926
+ type AxAgentRecursiveTargetId = (typeof AX_AGENT_RECURSIVE_TARGET_IDS)[keyof typeof AX_AGENT_RECURSIVE_TARGET_IDS];
9927
+ type AxAgentRecursiveNodeRole = 'root' | 'recursive' | 'terminal';
9928
+ type AxAgentRecursiveUsage = {
9929
+ promptTokens: number;
9930
+ completionTokens: number;
9931
+ totalTokens: number;
9932
+ };
9933
+ type AxAgentRecursiveTurn = {
9934
+ turn: number;
9935
+ code: string;
9936
+ output: string;
9937
+ isError: boolean;
9938
+ thought?: string;
9939
+ };
9940
+ type AxAgentRecursiveFunctionCall = {
9941
+ qualifiedName: string;
9942
+ name?: string;
9943
+ error?: string;
9944
+ };
9945
+ type AxAgentRecursiveTraceNode = {
9946
+ nodeId: string;
9947
+ parentId?: string;
9948
+ depth: number;
9949
+ role: AxAgentRecursiveNodeRole;
9950
+ taskDigest?: string;
9951
+ contextDigest?: string;
9952
+ completionType?: 'final' | 'ask_clarification';
9953
+ turnCount: number;
9954
+ childCount: number;
9955
+ actorTurns: AxAgentRecursiveTurn[];
9956
+ functionCalls: AxAgentRecursiveFunctionCall[];
9957
+ toolErrors: string[];
9958
+ localUsage: AxAgentRecursiveUsage;
9959
+ cumulativeUsage: AxAgentRecursiveUsage;
9960
+ children: AxAgentRecursiveTraceNode[];
9961
+ };
9962
+ type AxAgentRecursiveExpensiveNode = {
9963
+ nodeId: string;
9964
+ role: AxAgentRecursiveNodeRole;
9965
+ depth: number;
9966
+ taskDigest?: string;
9967
+ totalTokens: number;
9968
+ };
9969
+ type AxAgentRecursiveStats = {
9970
+ nodeCount: number;
9971
+ leafCount: number;
9972
+ maxDepth: number;
9973
+ recursiveCallCount: number;
9974
+ batchedFanOutCount: number;
9975
+ clarificationCount: number;
9976
+ errorCount: number;
9977
+ directAnswerCount: number;
9978
+ delegatedAnswerCount: number;
9979
+ rootLocalUsage: AxAgentRecursiveUsage;
9980
+ rootCumulativeUsage: AxAgentRecursiveUsage;
9981
+ topExpensiveNodes: AxAgentRecursiveExpensiveNode[];
9982
+ };
9983
+
10021
9984
  /**
10022
9985
  * Interface for agents that can be used as child agents.
10023
9986
  * Provides methods to get the agent's function definition and features.
@@ -10040,8 +10003,8 @@ type AxAgentIdentity = {
10040
10003
  type AxAgentFunctionModuleMeta = {
10041
10004
  namespace: string;
10042
10005
  title: string;
10043
- selectionCriteria: string;
10044
- description: string;
10006
+ selectionCriteria?: string;
10007
+ description?: string;
10045
10008
  };
10046
10009
  type AxAgentFunctionExample = {
10047
10010
  code: string;
@@ -10049,7 +10012,8 @@ type AxAgentFunctionExample = {
10049
10012
  description?: string;
10050
10013
  language?: string;
10051
10014
  };
10052
- type AxAgentFunction = AxFunction & {
10015
+ type AxAgentFunction = Omit<AxFunction, 'description'> & {
10016
+ description?: string;
10053
10017
  examples?: readonly AxAgentFunctionExample[];
10054
10018
  };
10055
10019
  type AxAgentFunctionGroup = AxAgentFunctionModuleMeta & {
@@ -10075,6 +10039,22 @@ type AxAgentStructuredClarification = {
10075
10039
  type AxAgentStateActionLogEntry = Pick<ActionLogEntry, 'turn' | 'code' | 'output' | 'actorFieldsOutput' | 'tags' | 'summary' | 'producedVars' | 'referencedVars' | 'stateDelta' | 'stepKind' | 'replayMode' | 'rank' | 'tombstone'>;
10076
10040
  type AxAgentStateCheckpointState = CheckpointSummaryState;
10077
10041
  type AxAgentStateRuntimeEntry = AxCodeSessionSnapshotEntry;
10042
+ type AxActorModelPolicyEntry = {
10043
+ model: string;
10044
+ abovePromptChars: number;
10045
+ aboveErrorTurns?: number;
10046
+ } | {
10047
+ model: string;
10048
+ abovePromptChars?: number;
10049
+ aboveErrorTurns: number;
10050
+ };
10051
+ type AxAgentStateActorModelState = {
10052
+ consecutiveErrorTurns: number;
10053
+ };
10054
+ type AxActorModelPolicy = readonly [
10055
+ AxActorModelPolicyEntry,
10056
+ ...AxActorModelPolicyEntry[]
10057
+ ];
10078
10058
  type AxAgentState = {
10079
10059
  version: 1;
10080
10060
  runtimeBindings: Record<string, unknown>;
@@ -10082,6 +10062,7 @@ type AxAgentState = {
10082
10062
  actionLogEntries: AxAgentStateActionLogEntry[];
10083
10063
  checkpointState?: AxAgentStateCheckpointState;
10084
10064
  provenance: Record<string, RuntimeStateVariableProvenance>;
10065
+ actorModelState?: AxAgentStateActorModelState;
10085
10066
  };
10086
10067
  declare class AxAgentClarificationError extends Error {
10087
10068
  readonly question: string;
@@ -10144,25 +10125,25 @@ type AxAgentEvalFunctionCall = {
10144
10125
  result?: AxFieldValue;
10145
10126
  error?: string;
10146
10127
  };
10147
- type AxAgentEvalPrediction<OUT = any> = {
10148
- completionType: 'final';
10149
- output: OUT;
10150
- clarification?: undefined;
10128
+ type AxAgentEvalPredictionShared = {
10151
10129
  actionLog: string;
10152
10130
  functionCalls: AxAgentEvalFunctionCall[];
10153
10131
  toolErrors: string[];
10154
10132
  turnCount: number;
10155
10133
  usage?: AxProgramUsage[];
10156
- } | {
10134
+ recursiveTrace?: AxAgentRecursiveTraceNode;
10135
+ recursiveStats?: AxAgentRecursiveStats;
10136
+ recursiveSummary?: string;
10137
+ };
10138
+ type AxAgentEvalPrediction<OUT = any> = (AxAgentEvalPredictionShared & {
10139
+ completionType: 'final';
10140
+ output: OUT;
10141
+ clarification?: undefined;
10142
+ }) | (AxAgentEvalPredictionShared & {
10157
10143
  completionType: 'ask_clarification';
10158
10144
  output?: undefined;
10159
10145
  clarification: AxAgentStructuredClarification;
10160
- actionLog: string;
10161
- functionCalls: AxAgentEvalFunctionCall[];
10162
- toolErrors: string[];
10163
- turnCount: number;
10164
- usage?: AxProgramUsage[];
10165
- };
10146
+ });
10166
10147
  type AxAgentEvalTask<IN = any> = {
10167
10148
  input: IN;
10168
10149
  criteria: string;
@@ -10191,7 +10172,7 @@ type AxAgentOptimizeOptions<_IN extends AxGenIn = AxGenIn, _OUT extends AxGenOut
10191
10172
  optimizerLogger?: AxOptimizerLoggerFunction;
10192
10173
  onProgress?: (progress: Readonly<AxOptimizationProgress>) => void;
10193
10174
  onEarlyStop?: (reason: string, stats: Readonly<AxOptimizationStats>) => void;
10194
- };
10175
+ } & Pick<AxOptimizerArgs, 'numTrials' | 'minibatch' | 'minibatchSize' | 'earlyStoppingTrials' | 'minImprovementThreshold' | 'sampleCount' | 'seed'>;
10195
10176
  type AxAgentOptimizeResult<OUT extends AxGenOut = AxGenOut> = AxParetoResult<OUT>;
10196
10177
  type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions<string>, 'functions' | 'description'> & {
10197
10178
  debug?: boolean;
@@ -10266,12 +10247,18 @@ type AxAgentOptions<IN extends AxGenIn = AxGenIn> = Omit<AxProgramForwardOptions
10266
10247
  inputUpdateCallback?: AxAgentInputUpdateCallback<IN>;
10267
10248
  /** Sub-query execution mode (default: 'simple'). */
10268
10249
  mode?: 'simple' | 'advanced';
10250
+ /** Prompt detail level for the root Actor (default: 'detailed'). */
10251
+ promptLevel?: AxActorPromptLevel;
10252
+ /**
10253
+ * Ordered Actor-model overrides keyed by rendered prompt size or consecutive
10254
+ * error turns. Later entries take precedence over earlier ones.
10255
+ */
10256
+ actorModelPolicy?: AxActorModelPolicy;
10269
10257
  /** Default forward options for recursive llmQuery sub-agent calls. */
10270
10258
  recursionOptions?: AxAgentRecursionOptions;
10271
10259
  /** Default forward options for the Actor sub-program. */
10272
10260
  actorOptions?: Partial<Omit<AxProgramForwardOptions<string>, 'functions'> & {
10273
10261
  description?: string;
10274
- promptLevel?: AxActorPromptLevel;
10275
10262
  }>;
10276
10263
  /** Default forward options for the Responder sub-program. */
10277
10264
  responderOptions?: Partial<Omit<AxProgramForwardOptions<string>, 'functions'> & {
@@ -10319,6 +10306,7 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
10319
10306
  private excludedAgentFunctions;
10320
10307
  private actorDescription?;
10321
10308
  private actorPromptLevel?;
10309
+ private actorModelPolicy?;
10322
10310
  private responderDescription?;
10323
10311
  private judgeOptions?;
10324
10312
  private recursionForwardOptions?;
@@ -10336,6 +10324,11 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
10336
10324
  private stateError;
10337
10325
  private runtimeBootstrapContext;
10338
10326
  private llmQueryBudgetState;
10327
+ private recursiveInstructionSlots;
10328
+ private baseActorDefinition;
10329
+ private recursiveEvalContext;
10330
+ private currentRecursiveTraceNodeId;
10331
+ private recursiveInstructionRoleOverride;
10339
10332
  private func;
10340
10333
  private _parentSharedFields;
10341
10334
  private _parentSharedAgents;
@@ -10344,6 +10337,11 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
10344
10337
  private _mergeAgentFunctionModuleMetadata;
10345
10338
  private _validateConfiguredSignature;
10346
10339
  private _validateAgentFunctionNamespaces;
10340
+ private _supportsRecursiveActorSlotOptimization;
10341
+ private _getRecursiveActorRole;
10342
+ private _applyRecursiveActorInstruction;
10343
+ private _setRecursiveInstructionSlot;
10344
+ private _copyRecursiveOptimizationStateTo;
10347
10345
  constructor({ ai, judgeAI, agentIdentity, agentModuleNamespace, signature, }: Readonly<{
10348
10346
  ai?: Readonly<AxAIService>;
10349
10347
  judgeAI?: Readonly<AxAIService>;
@@ -10410,6 +10408,11 @@ declare class AxAgent<IN extends AxGenIn, OUT extends AxGenOut> implements AxAge
10410
10408
  resetUsage(): void;
10411
10409
  getState(): AxAgentState | undefined;
10412
10410
  setState(state?: AxAgentState): void;
10411
+ private _createRecursiveOptimizationProxy;
10412
+ private _listOptimizationTargetDescriptors;
10413
+ private _beginRecursiveTraceCapture;
10414
+ private _finalizeRecursiveTraceCapture;
10415
+ private _recordEphemeralRecursiveUsage;
10413
10416
  optimize(dataset: Readonly<AxAgentEvalDataset<IN>>, options?: Readonly<AxAgentOptimizeOptions<IN, OUT>>): Promise<AxAgentOptimizeResult<OUT>>;
10414
10417
  private _createOptimizationProgram;
10415
10418
  private _createAgentOptimizeMetric;
@@ -10564,8 +10567,12 @@ interface AxCodeSession {
10564
10567
  * successful turns instead of replaying their full code blocks. Reliability-first
10565
10568
  * defaults still preserve recent evidence before deleting older low-value steps.
10566
10569
  * Best when token pressure matters more than raw replay detail.
10570
+ * - `checkpointed`: Keep full replay until the rendered actor prompt crosses a threshold, then
10571
+ * replace older successful history with a checkpoint summary while keeping recent
10572
+ * actions and unresolved errors fully visible. Best when you want conservative,
10573
+ * debugging-friendly replay until prompt pressure becomes real.
10567
10574
  */
10568
- type AxContextPolicyPreset = 'full' | 'adaptive' | 'lean';
10575
+ type AxContextPolicyPreset = 'full' | 'adaptive' | 'lean' | 'checkpointed';
10569
10576
  /**
10570
10577
  * Public context policy for the Actor loop.
10571
10578
  * Presets provide the common behavior; top-level toggles plus `state`,
@@ -10578,6 +10585,7 @@ interface AxContextPolicyConfig {
10578
10585
  * - `full`: prefer raw replay of earlier actions
10579
10586
  * - `adaptive`: balance replay detail with checkpoint compression while keeping more recent evidence visible
10580
10587
  * - `lean`: prefer live state + compact summaries over raw replay detail
10588
+ * - `checkpointed`: keep full replay until the rendered actor prompt crosses a threshold, then replace older successful turns with a checkpoint summary
10581
10589
  */
10582
10590
  preset?: AxContextPolicyPreset;
10583
10591
  /**
@@ -10595,6 +10603,7 @@ interface AxContextPolicyConfig {
10595
10603
  * - `full`: false
10596
10604
  * - `adaptive`: false
10597
10605
  * - `lean`: true
10606
+ * - `checkpointed`: false
10598
10607
  */
10599
10608
  pruneUsedDocs?: boolean;
10600
10609
  /**
@@ -10604,15 +10613,16 @@ interface AxContextPolicyConfig {
10604
10613
  * - `full`: false
10605
10614
  * - `adaptive`: true
10606
10615
  * - `lean`: true
10616
+ * - `checkpointed`: false
10607
10617
  */
10608
10618
  pruneErrors?: boolean;
10609
10619
  /** Runtime-state visibility controls. */
10610
10620
  state?: {
10611
10621
  /** Include a compact live runtime state block ahead of the action log. */
10612
10622
  summary?: boolean;
10613
- /** Expose `inspect_runtime()` to the actor and show the large-context hint. */
10623
+ /** Expose `inspect_runtime()` to the actor and show the large-prompt hint. */
10614
10624
  inspect?: boolean;
10615
- /** Character count above which the actor is reminded to call `inspect_runtime()`. */
10625
+ /** Full rendered actor-prompt char count above which the actor is reminded to call `inspect_runtime()`. */
10616
10626
  inspectThresholdChars?: number;
10617
10627
  /** Maximum number of runtime state entries to render in the summary block. */
10618
10628
  maxEntries?: number;
@@ -10623,13 +10633,13 @@ interface AxContextPolicyConfig {
10623
10633
  checkpoints?: {
10624
10634
  /** Enable checkpoint summaries for older successful turns. */
10625
10635
  enabled?: boolean;
10626
- /** Character count above which a checkpoint summary is generated. */
10636
+ /** Full rendered actor-prompt char count above which a checkpoint summary is generated. */
10627
10637
  triggerChars?: number;
10628
10638
  };
10629
10639
  /** Expert-level overrides for the preset-derived internal policy. */
10630
10640
  expert?: {
10631
10641
  /** Controls how prior actor actions are replayed before checkpoint compression. */
10632
- replay?: 'full' | 'adaptive' | 'minimal';
10642
+ replay?: 'full' | 'adaptive' | 'minimal' | 'checkpointed';
10633
10643
  /** Number of most-recent actions that should always remain fully rendered. */
10634
10644
  recentFullActions?: number;
10635
10645
  /** Rank-based pruning of low-value actions. Off by default for built-in presets. */
@@ -10708,7 +10718,7 @@ declare function axBuildActorDefinition(baseDefinition: string | undefined, cont
10708
10718
  /** Agent functions available under namespaced globals in the JS runtime. */
10709
10719
  agentFunctions?: ReadonlyArray<{
10710
10720
  name: string;
10711
- description: string;
10721
+ description?: string;
10712
10722
  parameters: AxFunctionJSONSchema;
10713
10723
  returns?: AxFunctionJSONSchema;
10714
10724
  namespace: string;
@@ -11482,4 +11492,4 @@ declare class AxRateLimiterTokenUsage {
11482
11492
  acquire(tokens: number): Promise<void>;
11483
11493
  }
11484
11494
 
11485
- 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 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 AxAgentState, type AxAgentStateActionLogEntry, 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, AxJudge, type AxJudgeForwardOptions, type AxJudgeMode, type AxJudgeOptions, type AxJudgeResult, type AxJudgeRubric, 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 };
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 };