@ax-llm/ax 19.0.44 → 19.0.45
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 +212 -202
- package/index.cjs.map +1 -1
- package/index.d.cts +257 -10
- package/index.d.ts +257 -10
- package/index.global.js +214 -204
- package/index.global.js.map +1 -1
- package/index.js +214 -204
- package/index.js.map +1 -1
- package/package.json +9 -1
- package/skills/ax-agent-optimize.md +1 -1
- package/skills/ax-agent.md +107 -1
- package/skills/ax-ai.md +1 -1
- package/skills/ax-flow.md +1 -1
- package/skills/ax-gen.md +52 -1
- package/skills/ax-gepa.md +1 -1
- package/skills/ax-learn.md +1 -1
- package/skills/ax-llm.md +23 -2
- package/skills/ax-signature.md +111 -6
package/index.d.ts
CHANGED
|
@@ -1089,6 +1089,58 @@ interface AxAIMemory {
|
|
|
1089
1089
|
removeByTag(name: string, sessionId?: string): AxMemoryData;
|
|
1090
1090
|
}
|
|
1091
1091
|
|
|
1092
|
+
/** The Standard Schema v1 interface. Structurally compatible with `@standard-schema/spec`. */
|
|
1093
|
+
interface StandardSchemaV1<Input = unknown, Output = Input> {
|
|
1094
|
+
readonly '~standard': StandardSchemaV1.Props<Input, Output>;
|
|
1095
|
+
}
|
|
1096
|
+
declare namespace StandardSchemaV1 {
|
|
1097
|
+
interface Props<Input = unknown, Output = Input> {
|
|
1098
|
+
readonly version: 1;
|
|
1099
|
+
readonly vendor: string;
|
|
1100
|
+
readonly validate: (value: unknown) => Result<Output> | Promise<Result<Output>>;
|
|
1101
|
+
readonly types?: Types<Input, Output> | undefined;
|
|
1102
|
+
}
|
|
1103
|
+
type Result<Output> = SuccessResult<Output> | FailureResult;
|
|
1104
|
+
interface SuccessResult<Output> {
|
|
1105
|
+
readonly value: Output;
|
|
1106
|
+
readonly issues?: undefined;
|
|
1107
|
+
}
|
|
1108
|
+
interface FailureResult {
|
|
1109
|
+
readonly issues: ReadonlyArray<Issue>;
|
|
1110
|
+
}
|
|
1111
|
+
interface Issue {
|
|
1112
|
+
readonly message: string;
|
|
1113
|
+
readonly path?: ReadonlyArray<PropertyKey | PathSegment> | undefined;
|
|
1114
|
+
}
|
|
1115
|
+
interface PathSegment {
|
|
1116
|
+
readonly key: PropertyKey;
|
|
1117
|
+
}
|
|
1118
|
+
interface Types<Input = unknown, Output = Input> {
|
|
1119
|
+
readonly input: Input;
|
|
1120
|
+
readonly output: Output;
|
|
1121
|
+
}
|
|
1122
|
+
type InferInput<Schema extends StandardSchemaV1> = NonNullable<Schema['~standard']['types']>['input'];
|
|
1123
|
+
type InferOutput<Schema extends StandardSchemaV1> = NonNullable<Schema['~standard']['types']>['output'];
|
|
1124
|
+
}
|
|
1125
|
+
/**
|
|
1126
|
+
* Per-field companion options for Standard Schema (zod/valibot/arktype) inputs
|
|
1127
|
+
* and outputs. These encode ax-specific hints that schema libraries don't
|
|
1128
|
+
* represent natively.
|
|
1129
|
+
*/
|
|
1130
|
+
interface AxFieldOptions {
|
|
1131
|
+
/** Mark this input field as a prefix-cache breakpoint (Anthropic-style). */
|
|
1132
|
+
cache?: boolean;
|
|
1133
|
+
/** Mark this output field as internal scratchpad (stripped from the final result). */
|
|
1134
|
+
internal?: boolean;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* Narrow a StandardSchemaV1 output type to a record so it satisfies the
|
|
1139
|
+
* builder's `Record<string, any>` constraint. Non-object schemas collapse to
|
|
1140
|
+
* `Record<string, any>` — acceptable because decomposition has already happened
|
|
1141
|
+
* at the value level before this type is reached.
|
|
1142
|
+
*/
|
|
1143
|
+
type AsRecord<T> = T extends Record<string, any> ? T : Record<string, any>;
|
|
1092
1144
|
interface AxFieldType {
|
|
1093
1145
|
readonly type: 'string' | 'number' | 'boolean' | 'json' | 'image' | 'audio' | 'file' | 'url' | 'date' | 'datetime' | 'class' | 'code' | 'object';
|
|
1094
1146
|
readonly isArray?: boolean;
|
|
@@ -1110,19 +1162,45 @@ declare class AxSignatureBuilder<_TInput extends Record<string, any> = {}, _TOut
|
|
|
1110
1162
|
private outputFields;
|
|
1111
1163
|
private desc?;
|
|
1112
1164
|
/**
|
|
1113
|
-
* Add an input field to the signature
|
|
1114
|
-
*
|
|
1115
|
-
*
|
|
1116
|
-
*
|
|
1165
|
+
* Add an input field to the signature. Three shapes:
|
|
1166
|
+
*
|
|
1167
|
+
* 1. **Native fluent field** — `.input('name', f.string())`. Supports every
|
|
1168
|
+
* LLM-optimized affordance (`.cache()`, `.internal()`, multimodal, etc.).
|
|
1169
|
+
* 2. **Per-field Standard Schema** — `.input('name', z.string().min(3), { cache: true })`.
|
|
1170
|
+
* Pass any zod/valibot/arktype schema. Companion `opts` adds ax-specific
|
|
1171
|
+
* hints (`cache`, `internal`) that schema libraries don't represent.
|
|
1172
|
+
* 3. **Whole-object Standard Schema** — `.input(z.object({...}), { fields: { ctx: { cache: true } } })`.
|
|
1173
|
+
* Decomposed into per-key fields in declaration order.
|
|
1174
|
+
*
|
|
1175
|
+
* @example
|
|
1176
|
+
* ```ts
|
|
1177
|
+
* f()
|
|
1178
|
+
* .input(z.object({
|
|
1179
|
+
* context: z.string(),
|
|
1180
|
+
* question: z.string().describe('User question'),
|
|
1181
|
+
* }), { fields: { context: { cache: true } } })
|
|
1182
|
+
* .output('answer', f.string())
|
|
1183
|
+
* .build();
|
|
1184
|
+
* ```
|
|
1117
1185
|
*/
|
|
1118
1186
|
input<K extends string, T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(name: K, fieldInfo: T, prepend?: boolean): AxSignatureBuilder<AddFieldToShape<_TInput, K, T>, _TOutput>;
|
|
1187
|
+
input<K extends string, T extends StandardSchemaV1>(name: K, schema: T, opts?: AxFieldOptions): AxSignatureBuilder<_TInput & {
|
|
1188
|
+
[P in K]: StandardSchemaV1.InferOutput<T>;
|
|
1189
|
+
}, _TOutput>;
|
|
1190
|
+
input<T extends StandardSchemaV1>(schema: T, opts?: {
|
|
1191
|
+
fields?: Record<string, AxFieldOptions>;
|
|
1192
|
+
}): AxSignatureBuilder<AsRecord<StandardSchemaV1.InferOutput<T>>, _TOutput>;
|
|
1119
1193
|
/**
|
|
1120
|
-
* Add an output field to the signature
|
|
1121
|
-
* @
|
|
1122
|
-
* @param fieldInfo - Field type created with f.string(), f.number(), etc.
|
|
1123
|
-
* @param prepend - If true, adds field to the beginning of output fields
|
|
1194
|
+
* Add an output field to the signature. Same three shapes as
|
|
1195
|
+
* {@link AxSignatureBuilder.input}.
|
|
1124
1196
|
*/
|
|
1125
1197
|
output<K extends string, T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(name: K, fieldInfo: T, prepend?: boolean): AxSignatureBuilder<_TInput, AddFieldToShape<_TOutput, K, T>>;
|
|
1198
|
+
output<K extends string, T extends StandardSchemaV1>(name: K, schema: T, opts?: AxFieldOptions): AxSignatureBuilder<_TInput, _TOutput & {
|
|
1199
|
+
[P in K]: StandardSchemaV1.InferOutput<T>;
|
|
1200
|
+
}>;
|
|
1201
|
+
output<T extends StandardSchemaV1>(schema: T, opts?: {
|
|
1202
|
+
fields?: Record<string, AxFieldOptions>;
|
|
1203
|
+
}): AxSignatureBuilder<_TInput, AsRecord<StandardSchemaV1.InferOutput<T>>>;
|
|
1126
1204
|
/**
|
|
1127
1205
|
* Add pre-existing input fields (e.g., extracted from another signature).
|
|
1128
1206
|
* Type safety is lost for these fields since they are dynamically defined.
|
|
@@ -1221,6 +1299,11 @@ declare class AxFluentFieldType<TType extends AxFieldType['type'] = AxFieldType[
|
|
|
1221
1299
|
* Set datetime format validation for strings
|
|
1222
1300
|
*/
|
|
1223
1301
|
datetime(): AxFluentFieldType<TType, TIsArray, TOptions, TIsOptional, TIsInternal, TFields, TIsCached>;
|
|
1302
|
+
/**
|
|
1303
|
+
* Standard Schema v1 surface — lets ax fields flow through any library that
|
|
1304
|
+
* accepts `StandardSchemaV1` (tRPC, TanStack Form, Vercel AI SDK, etc.).
|
|
1305
|
+
*/
|
|
1306
|
+
get '~standard'(): StandardSchemaV1.Props<unknown, unknown>;
|
|
1224
1307
|
}
|
|
1225
1308
|
type ValidateNoMediaTypes<TFields> = {
|
|
1226
1309
|
[K in keyof TFields]: TFields[K] extends {
|
|
@@ -1615,6 +1698,8 @@ interface AxField {
|
|
|
1615
1698
|
isOptional?: boolean;
|
|
1616
1699
|
isInternal?: boolean;
|
|
1617
1700
|
isCached?: boolean;
|
|
1701
|
+
/** Original Standard Schema (zod/valibot/arktype) stored so custom refinements and transforms run at parse time. */
|
|
1702
|
+
schema?: StandardSchemaV1;
|
|
1618
1703
|
}
|
|
1619
1704
|
type AxIField = Omit<AxField, 'title'> & {
|
|
1620
1705
|
title: string;
|
|
@@ -1732,15 +1817,57 @@ declare class AxFunctionBuilder<TArgs extends Record<string, any> = {}, TReturn
|
|
|
1732
1817
|
private returnFields;
|
|
1733
1818
|
private returnFieldType?;
|
|
1734
1819
|
private returnMode?;
|
|
1820
|
+
private returnJsonSchema?;
|
|
1735
1821
|
private fnHandler?;
|
|
1736
1822
|
private fnExamples;
|
|
1737
1823
|
constructor(name: string);
|
|
1738
1824
|
description(text: string): AxFunctionBuilder<TArgs, TReturn, THasExamples>;
|
|
1739
1825
|
namespace(text: string): AxFunctionBuilder<TArgs, TReturn, THasExamples>;
|
|
1826
|
+
/**
|
|
1827
|
+
* Declare a tool argument. Three shapes:
|
|
1828
|
+
*
|
|
1829
|
+
* 1. **Fluent** — `.arg('name', f.string('desc'))`
|
|
1830
|
+
* 2. **Per-field Standard Schema** — `.arg('name', z.string(), { cache: true })`
|
|
1831
|
+
* 3. **Whole-object Standard Schema** — `.arg(z.object({ topic: z.string(), ... }))`
|
|
1832
|
+
*
|
|
1833
|
+
* Shapes 2 and 3 accept anything implementing Standard Schema v1
|
|
1834
|
+
* (zod / valibot / arktype).
|
|
1835
|
+
*/
|
|
1740
1836
|
arg<K extends string, T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(name: K, fieldInfo: T): AxFunctionBuilder<AddFieldToShape<TArgs, K, T>, TReturn, THasExamples>;
|
|
1837
|
+
arg<K extends string, T extends StandardSchemaV1>(name: K, schema: T, opts?: AxFieldOptions): AxFunctionBuilder<TArgs & {
|
|
1838
|
+
[P in K]: StandardSchemaV1.InferOutput<T>;
|
|
1839
|
+
}, TReturn, THasExamples>;
|
|
1840
|
+
arg<T extends StandardSchemaV1>(schema: T, opts?: {
|
|
1841
|
+
fields?: Record<string, AxFieldOptions>;
|
|
1842
|
+
}): AxFunctionBuilder<AsRecord<StandardSchemaV1.InferOutput<T>>, TReturn, THasExamples>;
|
|
1843
|
+
/** @deprecated Alias for {@link AxFunctionBuilder.arg}. */
|
|
1741
1844
|
args<K extends string, T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(name: K, fieldInfo: T): AxFunctionBuilder<AddFieldToShape<TArgs, K, T>, TReturn, THasExamples>;
|
|
1845
|
+
/**
|
|
1846
|
+
* Declare the tool return shape. Two shapes:
|
|
1847
|
+
*
|
|
1848
|
+
* 1. **Fluent** — `.returns(f.string())` (single return value)
|
|
1849
|
+
* 2. **Standard Schema** — `.returns(z.object({...}))` decomposes into
|
|
1850
|
+
* named return fields; any non-object zod schema is a single JSON-Schema
|
|
1851
|
+
* return.
|
|
1852
|
+
*
|
|
1853
|
+
* Mutually exclusive with `.returnsField()`.
|
|
1854
|
+
*/
|
|
1742
1855
|
returns<T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(fieldInfo: T): AxFunctionBuilder<TArgs, InferFluentType<T>, THasExamples>;
|
|
1856
|
+
returns<T extends StandardSchemaV1>(schema: T, opts?: {
|
|
1857
|
+
fields?: Record<string, AxFieldOptions>;
|
|
1858
|
+
}): AxFunctionBuilder<TArgs, StandardSchemaV1.InferOutput<T>, THasExamples>;
|
|
1859
|
+
/**
|
|
1860
|
+
* Declare a single named return field. Two shapes:
|
|
1861
|
+
*
|
|
1862
|
+
* 1. **Fluent** — `.returnsField('answer', f.string())`
|
|
1863
|
+
* 2. **Per-field Standard Schema** — `.returnsField('answer', z.string(), { internal: true })`
|
|
1864
|
+
*
|
|
1865
|
+
* Mutually exclusive with `.returns()`.
|
|
1866
|
+
*/
|
|
1743
1867
|
returnsField<K extends string, T extends AxFluentFieldInfo<any, any, any, any, any, any, any> | AxFluentFieldType<any, any, any, any, any, any, any>>(name: K, fieldInfo: T): AxFunctionBuilder<TArgs, AddFieldToShape<TReturn extends Record<string, any> ? TReturn : {}, K, T>, THasExamples>;
|
|
1868
|
+
returnsField<K extends string, T extends StandardSchemaV1>(name: K, schema: T, opts?: AxFieldOptions): AxFunctionBuilder<TArgs, (TReturn extends Record<string, any> ? TReturn : {}) & {
|
|
1869
|
+
[P in K]: StandardSchemaV1.InferOutput<T>;
|
|
1870
|
+
}, THasExamples>;
|
|
1744
1871
|
example(example: AxFunctionBuilderExample): AxFunctionBuilder<TArgs, TReturn, true>;
|
|
1745
1872
|
examples(examples: readonly AxFunctionBuilderExample[]): AxFunctionBuilder<TArgs, TReturn, true>;
|
|
1746
1873
|
handler(handler: AxTypedFunctionHandler<TArgs, TReturn>): AxFunctionBuilder<TArgs, TReturn, THasExamples>;
|
|
@@ -10947,6 +11074,27 @@ declare function axBuildActorDefinition(baseDefinition: string | undefined, cont
|
|
|
10947
11074
|
*/
|
|
10948
11075
|
declare function axBuildResponderDefinition(baseDefinition: string | undefined, contextFields: readonly AxIField[]): string;
|
|
10949
11076
|
|
|
11077
|
+
/**
|
|
11078
|
+
* Fine-grained Node Permission Model allowlist. Scopes `--allow-fs-*` and
|
|
11079
|
+
* gates additional `--allow-*` flags that aren't covered by the high-level
|
|
11080
|
+
* permission enum.
|
|
11081
|
+
*/
|
|
11082
|
+
type AxJSRuntimeNodePermissionAllowlist = Readonly<{
|
|
11083
|
+
fsRead?: readonly string[];
|
|
11084
|
+
fsWrite?: readonly string[];
|
|
11085
|
+
childProcess?: boolean;
|
|
11086
|
+
addons?: boolean;
|
|
11087
|
+
wasi?: boolean;
|
|
11088
|
+
}>;
|
|
11089
|
+
/**
|
|
11090
|
+
* Node worker_threads resource limits passthrough.
|
|
11091
|
+
*/
|
|
11092
|
+
type AxJSRuntimeResourceLimits = Readonly<{
|
|
11093
|
+
maxOldGenerationSizeMb?: number;
|
|
11094
|
+
maxYoungGenerationSizeMb?: number;
|
|
11095
|
+
codeRangeSizeMb?: number;
|
|
11096
|
+
stackSizeMb?: number;
|
|
11097
|
+
}>;
|
|
10950
11098
|
/**
|
|
10951
11099
|
* Permissions that can be granted to the RLM JS interpreter sandbox.
|
|
10952
11100
|
* By default all dangerous globals are blocked; users opt in via this enum.
|
|
@@ -10968,7 +11116,11 @@ declare enum AxJSRuntimePermission {
|
|
|
10968
11116
|
* WORKERS without other restrictions implicitly grants all capabilities
|
|
10969
11117
|
* (e.g. fetch, indexedDB) inside child workers.
|
|
10970
11118
|
*/
|
|
10971
|
-
WORKERS = "workers"
|
|
11119
|
+
WORKERS = "workers",
|
|
11120
|
+
/** node:fs and related — gates Node Permission Model --allow-fs-* and Deno read/write */
|
|
11121
|
+
FILESYSTEM = "filesystem",
|
|
11122
|
+
/** node:child_process — gates --allow-child-process and Deno run */
|
|
11123
|
+
CHILD_PROCESS = "child-process"
|
|
10972
11124
|
}
|
|
10973
11125
|
type AxJSRuntimeOutputMode = 'return' | 'stdout';
|
|
10974
11126
|
/**
|
|
@@ -10984,6 +11136,16 @@ declare class AxJSRuntime implements AxCodeRuntime {
|
|
|
10984
11136
|
private readonly debugNodeWorkerPool;
|
|
10985
11137
|
private readonly outputMode;
|
|
10986
11138
|
private readonly captureConsole;
|
|
11139
|
+
private readonly blockDynamicImport;
|
|
11140
|
+
private readonly allowedModules;
|
|
11141
|
+
private readonly freezeIntrinsics;
|
|
11142
|
+
private readonly blockShadowRealm;
|
|
11143
|
+
private readonly lockWorkerIPC;
|
|
11144
|
+
private readonly preventGlobalThisExtensions;
|
|
11145
|
+
private readonly useNodePermissionModel;
|
|
11146
|
+
private readonly nodePermissionAllowlist?;
|
|
11147
|
+
private readonly resourceLimits?;
|
|
11148
|
+
private readonly allowDenoRemoteImport;
|
|
10987
11149
|
constructor(options?: Readonly<{
|
|
10988
11150
|
timeout?: number;
|
|
10989
11151
|
permissions?: readonly AxJSRuntimePermission[];
|
|
@@ -11006,7 +11168,82 @@ declare class AxJSRuntime implements AxCodeRuntime {
|
|
|
11006
11168
|
* Can also be enabled via AX_RLM_DEBUG_NODE_POOL=1.
|
|
11007
11169
|
*/
|
|
11008
11170
|
debugNodeWorkerPool?: boolean;
|
|
11171
|
+
/**
|
|
11172
|
+
* Block dynamic `import()` at execute time (language-level block on Node
|
|
11173
|
+
* via `node:vm` rejector; Deno relies on permission model).
|
|
11174
|
+
*
|
|
11175
|
+
* Default: true.
|
|
11176
|
+
*/
|
|
11177
|
+
blockDynamicImport?: boolean;
|
|
11178
|
+
/**
|
|
11179
|
+
* Module specifier allowlist when `blockDynamicImport` is true.
|
|
11180
|
+
* Default: [].
|
|
11181
|
+
*/
|
|
11182
|
+
allowedModules?: readonly string[];
|
|
11183
|
+
/**
|
|
11184
|
+
* Freeze Object.prototype / Array.prototype / Function.prototype and
|
|
11185
|
+
* other intrinsics to prevent prototype pollution.
|
|
11186
|
+
*
|
|
11187
|
+
* Default: true.
|
|
11188
|
+
*/
|
|
11189
|
+
freezeIntrinsics?: boolean;
|
|
11190
|
+
/**
|
|
11191
|
+
* Lock `globalThis.ShadowRealm` to undefined. Default: true.
|
|
11192
|
+
*/
|
|
11193
|
+
blockShadowRealm?: boolean;
|
|
11194
|
+
/**
|
|
11195
|
+
* Lock `self.postMessage` / `self.onmessage` in browser/Deno workers
|
|
11196
|
+
* to prevent host-function privilege escalation. Default: true.
|
|
11197
|
+
*/
|
|
11198
|
+
lockWorkerIPC?: boolean;
|
|
11199
|
+
/**
|
|
11200
|
+
* Call `Object.preventExtensions(globalThis)` in the worker. Breaks
|
|
11201
|
+
* top-level `var/let/const` persistence — opt-in only. Default: false.
|
|
11202
|
+
*/
|
|
11203
|
+
preventGlobalThisExtensions?: boolean;
|
|
11204
|
+
/**
|
|
11205
|
+
* Node-only: engage the Node Permission Model at worker spawn for
|
|
11206
|
+
* kernel-enforced defense-in-depth on top of the language-level
|
|
11207
|
+
* lockdown. Emits `--permission` on Node ≥ 23.5 (stable flag) or
|
|
11208
|
+
* `--experimental-permission` on Node 20–23.4 (same runtime
|
|
11209
|
+
* enforcement, pre-stabilization flag name).
|
|
11210
|
+
*
|
|
11211
|
+
* - 'auto' (default): engage unconditionally on any supported Node.
|
|
11212
|
+
* With no FILESYSTEM/CHILD_PROCESS permission granted, fs and
|
|
11213
|
+
* child_process are blocked at the OS level. Silently skips on
|
|
11214
|
+
* Node < 20, Deno, and browsers (language-level defenses still
|
|
11215
|
+
* apply).
|
|
11216
|
+
* - true: engage unconditionally; hard-fail on Node < 20.
|
|
11217
|
+
* - false: never engage.
|
|
11218
|
+
*/
|
|
11219
|
+
useNodePermissionModel?: boolean | 'auto';
|
|
11220
|
+
/**
|
|
11221
|
+
* Fine-grained Node Permission Model allowlist (e.g. fs-read paths).
|
|
11222
|
+
*/
|
|
11223
|
+
nodePermissionAllowlist?: AxJSRuntimeNodePermissionAllowlist;
|
|
11224
|
+
/**
|
|
11225
|
+
* Node-only: resource limits passed to `worker_threads.Worker`.
|
|
11226
|
+
*/
|
|
11227
|
+
resourceLimits?: AxJSRuntimeResourceLimits;
|
|
11228
|
+
/**
|
|
11229
|
+
* Deno-only: allow remote module imports (`await import('https://...')`).
|
|
11230
|
+
* Default: false — sets `import: false` in the Deno permission set when
|
|
11231
|
+
* NETWORK is granted, so data-plane fetch works but remote module
|
|
11232
|
+
* loading is blocked at the runtime level.
|
|
11233
|
+
*/
|
|
11234
|
+
allowDenoRemoteImport?: boolean;
|
|
11009
11235
|
}>);
|
|
11236
|
+
/**
|
|
11237
|
+
* Computes Node execArgv for the Permission Model when it should engage,
|
|
11238
|
+
* otherwise returns undefined.
|
|
11239
|
+
*
|
|
11240
|
+
* - 'auto': engages on Node 23.5+ when FILESYSTEM or CHILD_PROCESS is in
|
|
11241
|
+
* permissions; skips silently otherwise.
|
|
11242
|
+
* - true: engages unconditionally; hard-fails on Node < 23.5.
|
|
11243
|
+
* - false: never engages.
|
|
11244
|
+
*/
|
|
11245
|
+
private computeNodeExecArgv;
|
|
11246
|
+
private computeSecurityPostureHash;
|
|
11010
11247
|
getUsageInstructions(): string;
|
|
11011
11248
|
/**
|
|
11012
11249
|
* Creates a persistent execution session.
|
|
@@ -11039,6 +11276,16 @@ declare function axCreateJSRuntime(options?: Readonly<{
|
|
|
11039
11276
|
allowUnsafeNodeHostAccess?: boolean;
|
|
11040
11277
|
nodeWorkerPoolSize?: number;
|
|
11041
11278
|
debugNodeWorkerPool?: boolean;
|
|
11279
|
+
blockDynamicImport?: boolean;
|
|
11280
|
+
allowedModules?: readonly string[];
|
|
11281
|
+
freezeIntrinsics?: boolean;
|
|
11282
|
+
blockShadowRealm?: boolean;
|
|
11283
|
+
lockWorkerIPC?: boolean;
|
|
11284
|
+
preventGlobalThisExtensions?: boolean;
|
|
11285
|
+
useNodePermissionModel?: boolean | 'auto';
|
|
11286
|
+
nodePermissionAllowlist?: AxJSRuntimeNodePermissionAllowlist;
|
|
11287
|
+
resourceLimits?: AxJSRuntimeResourceLimits;
|
|
11288
|
+
allowDenoRemoteImport?: boolean;
|
|
11042
11289
|
}>): AxJSRuntime;
|
|
11043
11290
|
|
|
11044
11291
|
type AxWorkerRuntimeConfig = Readonly<{
|
|
@@ -11713,4 +11960,4 @@ declare class AxRateLimiterTokenUsage {
|
|
|
11713
11960
|
acquire(tokens: number): Promise<void>;
|
|
11714
11961
|
}
|
|
11715
11962
|
|
|
11716
|
-
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, 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 AxAgentGuidanceLogEntry, 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 AxAgentUsage, type AxAgentic, type AxAnyAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBaseOptimizer, AxBootstrapFewShot, type AxBootstrapOptimizerOptions, type AxChatLogEntry, type AxChatLogMessage, 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 AxContextPolicyBudget, 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, type AxDebugChatResponseUsage, 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, type AxPromptMetrics, AxPromptTemplate, type AxPromptTemplateOptions, AxProviderRouter, type AxRLMConfig, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRenderedPrompt, 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 };
|
|
11963
|
+
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, 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 AxAgentGuidanceLogEntry, 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 AxAgentUsage, type AxAgentic, type AxAnyAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBaseOptimizer, AxBootstrapFewShot, type AxBootstrapOptimizerOptions, type AxChatLogEntry, type AxChatLogMessage, 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 AxContextPolicyBudget, 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, type AxDebugChatResponseUsage, 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 AxFieldOptions, 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 AxJSRuntimeNodePermissionAllowlist, type AxJSRuntimeOutputMode, AxJSRuntimePermission, type AxJSRuntimeResourceLimits, 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, type AxPromptMetrics, AxPromptTemplate, type AxPromptTemplateOptions, AxProviderRouter, type AxRLMConfig, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRenderedPrompt, 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 };
|