@agentfield/sdk 0.1.135 → 0.1.137-rc.1
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/dist/index.d.ts +198 -191
- package/dist/index.js +568 -523
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -113,6 +113,200 @@ declare class PauseManager {
|
|
|
113
113
|
*/
|
|
114
114
|
declare function installApprovalWebhookRoute(app: express.Express, manager: PauseManager, logger?: PauseLogger): void;
|
|
115
115
|
|
|
116
|
+
/**
|
|
117
|
+
* Multimodal content helpers for AI prompts.
|
|
118
|
+
* Provides Image, Audio, and File classes with factory methods for creating
|
|
119
|
+
* multimodal content from various sources (files, URLs, buffers, base64).
|
|
120
|
+
*/
|
|
121
|
+
/**
|
|
122
|
+
* Represents text content in a multimodal prompt.
|
|
123
|
+
*/
|
|
124
|
+
declare class Text {
|
|
125
|
+
readonly type: 'text';
|
|
126
|
+
readonly text: string;
|
|
127
|
+
constructor(text: string);
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Represents image content in a multimodal prompt.
|
|
131
|
+
*/
|
|
132
|
+
declare class Image {
|
|
133
|
+
readonly type: 'image_url';
|
|
134
|
+
readonly imageUrl: {
|
|
135
|
+
url: string;
|
|
136
|
+
detail?: 'low' | 'high' | 'auto';
|
|
137
|
+
};
|
|
138
|
+
private constructor();
|
|
139
|
+
/**
|
|
140
|
+
* Create Image from a local file by converting to base64 data URL.
|
|
141
|
+
*/
|
|
142
|
+
static fromFile(filePath: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
143
|
+
/**
|
|
144
|
+
* Create Image from a URL.
|
|
145
|
+
*/
|
|
146
|
+
static fromUrl(url: string, detail?: 'low' | 'high' | 'auto'): Image;
|
|
147
|
+
/**
|
|
148
|
+
* Create Image from a buffer.
|
|
149
|
+
*/
|
|
150
|
+
static fromBuffer(buffer: Buffer | Uint8Array, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
151
|
+
/**
|
|
152
|
+
* Create Image from a base64 string.
|
|
153
|
+
*/
|
|
154
|
+
static fromBase64(base64Data: string, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Represents audio content in a multimodal prompt.
|
|
158
|
+
*/
|
|
159
|
+
declare class Audio {
|
|
160
|
+
readonly type: 'input_audio';
|
|
161
|
+
readonly audio: {
|
|
162
|
+
data: string;
|
|
163
|
+
format: string;
|
|
164
|
+
};
|
|
165
|
+
private constructor();
|
|
166
|
+
/**
|
|
167
|
+
* Create Audio from a local file by converting to base64.
|
|
168
|
+
*/
|
|
169
|
+
static fromFile(filePath: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
170
|
+
/**
|
|
171
|
+
* Create Audio from a URL (downloads and converts to base64).
|
|
172
|
+
*/
|
|
173
|
+
static fromUrl(url: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
174
|
+
/**
|
|
175
|
+
* Create Audio from a buffer.
|
|
176
|
+
*/
|
|
177
|
+
static fromBuffer(buffer: Buffer | Uint8Array, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
178
|
+
/**
|
|
179
|
+
* Create Audio from a base64 string.
|
|
180
|
+
*/
|
|
181
|
+
static fromBase64(base64Data: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Represents video content in a multimodal prompt.
|
|
185
|
+
*/
|
|
186
|
+
declare class Video {
|
|
187
|
+
readonly type: 'video_url';
|
|
188
|
+
readonly videoUrl: {
|
|
189
|
+
url: string;
|
|
190
|
+
};
|
|
191
|
+
private constructor();
|
|
192
|
+
/**
|
|
193
|
+
* Create Video from a local file by converting to a base64 data URL.
|
|
194
|
+
*/
|
|
195
|
+
static fromFile(filePath: string): Promise<Video>;
|
|
196
|
+
/**
|
|
197
|
+
* Create Video from a URL.
|
|
198
|
+
*/
|
|
199
|
+
static fromUrl(url: string): Video;
|
|
200
|
+
/**
|
|
201
|
+
* Create Video from a buffer.
|
|
202
|
+
*/
|
|
203
|
+
static fromBuffer(buffer: Buffer | Uint8Array, mimeType?: string): Promise<Video>;
|
|
204
|
+
/**
|
|
205
|
+
* Create Video from a base64 string.
|
|
206
|
+
*/
|
|
207
|
+
static fromBase64(base64Data: string, mimeType?: string): Promise<Video>;
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Represents a generic file content in a multimodal prompt.
|
|
211
|
+
*/
|
|
212
|
+
declare class File {
|
|
213
|
+
readonly type: 'file';
|
|
214
|
+
readonly file: {
|
|
215
|
+
url: string;
|
|
216
|
+
mimeType?: string;
|
|
217
|
+
};
|
|
218
|
+
private constructor();
|
|
219
|
+
/**
|
|
220
|
+
* Create File from a local file path.
|
|
221
|
+
*/
|
|
222
|
+
static fromFile(filePath: string, mimeType?: string): Promise<File>;
|
|
223
|
+
/**
|
|
224
|
+
* Create File from a URL.
|
|
225
|
+
*/
|
|
226
|
+
static fromUrl(url: string, mimeType?: string): File;
|
|
227
|
+
/**
|
|
228
|
+
* Create File from a buffer.
|
|
229
|
+
*/
|
|
230
|
+
static fromBuffer(buffer: Buffer | Uint8Array, mimeType: string): Promise<File>;
|
|
231
|
+
/**
|
|
232
|
+
* Create File from a base64 string.
|
|
233
|
+
*/
|
|
234
|
+
static fromBase64(base64Data: string, mimeType: string): Promise<File>;
|
|
235
|
+
}
|
|
236
|
+
/** Infer a MIME type from a URL's data prefix or pathname extension. */
|
|
237
|
+
declare function guessUrlMimeType(url: string): string | null;
|
|
238
|
+
/** Canonical IANA media type for an audio format (e.g. 'mp3' -> 'audio/mpeg'). */
|
|
239
|
+
declare function audioMediaType(format: string): string;
|
|
240
|
+
/**
|
|
241
|
+
* Create text content.
|
|
242
|
+
*/
|
|
243
|
+
declare function text(content: string): Text;
|
|
244
|
+
/**
|
|
245
|
+
* Create image content from a local file.
|
|
246
|
+
*/
|
|
247
|
+
declare function imageFromFile(filePath: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
248
|
+
/**
|
|
249
|
+
* Create image content from a URL.
|
|
250
|
+
*/
|
|
251
|
+
declare function imageFromUrl(url: string, detail?: 'low' | 'high' | 'auto'): Image;
|
|
252
|
+
/**
|
|
253
|
+
* Create image content from a buffer.
|
|
254
|
+
*/
|
|
255
|
+
declare function imageFromBuffer(buffer: Buffer | Uint8Array, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
256
|
+
/**
|
|
257
|
+
* Create image content from a base64 string.
|
|
258
|
+
*/
|
|
259
|
+
declare function imageFromBase64(base64Data: string, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
260
|
+
/**
|
|
261
|
+
* Create audio content from a local file.
|
|
262
|
+
*/
|
|
263
|
+
declare function audioFromFile(filePath: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
264
|
+
/**
|
|
265
|
+
* Create audio content from a URL.
|
|
266
|
+
*/
|
|
267
|
+
declare function audioFromUrl(url: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
268
|
+
/**
|
|
269
|
+
* Create audio content from a buffer.
|
|
270
|
+
*/
|
|
271
|
+
declare function audioFromBuffer(buffer: Buffer | Uint8Array, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
272
|
+
/**
|
|
273
|
+
* Create audio content from a base64 string.
|
|
274
|
+
*/
|
|
275
|
+
declare function audioFromBase64(base64Data: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
276
|
+
/**
|
|
277
|
+
* Create video content from a local file.
|
|
278
|
+
*/
|
|
279
|
+
declare function videoFromFile(filePath: string): Promise<Video>;
|
|
280
|
+
/**
|
|
281
|
+
* Create video content from a URL.
|
|
282
|
+
*/
|
|
283
|
+
declare function videoFromUrl(url: string): Video;
|
|
284
|
+
/**
|
|
285
|
+
* Create video content from a buffer.
|
|
286
|
+
*/
|
|
287
|
+
declare function videoFromBuffer(buffer: Buffer | Uint8Array, mimeType?: string): Promise<Video>;
|
|
288
|
+
/**
|
|
289
|
+
* Create video content from a base64 string.
|
|
290
|
+
*/
|
|
291
|
+
declare function videoFromBase64(base64Data: string, mimeType?: string): Promise<Video>;
|
|
292
|
+
/**
|
|
293
|
+
* Create file content from a local file.
|
|
294
|
+
*/
|
|
295
|
+
declare function fileFromPath(filePath: string, mimeType?: string): Promise<File>;
|
|
296
|
+
/**
|
|
297
|
+
* Create file content from a URL.
|
|
298
|
+
*/
|
|
299
|
+
declare function fileFromUrl(url: string, mimeType?: string): File;
|
|
300
|
+
/**
|
|
301
|
+
* Create file content from a buffer.
|
|
302
|
+
*/
|
|
303
|
+
declare function fileFromBuffer(buffer: Buffer | Uint8Array, mimeType: string): Promise<File>;
|
|
304
|
+
/**
|
|
305
|
+
* Create file content from a base64 string.
|
|
306
|
+
*/
|
|
307
|
+
declare function fileFromBase64(base64Data: string, mimeType: string): Promise<File>;
|
|
308
|
+
type MultimodalContent = Text | Image | Audio | Video | File;
|
|
309
|
+
|
|
116
310
|
type ZodSchema<T> = z.Schema<T, z.ZodTypeDef, any>;
|
|
117
311
|
interface AIRequestOptions {
|
|
118
312
|
system?: string;
|
|
@@ -128,6 +322,8 @@ interface AIRequestOptions {
|
|
|
128
322
|
* - 'tool': Force tool calling mode
|
|
129
323
|
*/
|
|
130
324
|
mode?: 'auto' | 'json' | 'tool';
|
|
325
|
+
/** Additional image, audio, video, or file parts for the user message. */
|
|
326
|
+
content?: MultimodalContent[];
|
|
131
327
|
}
|
|
132
328
|
type AIStream = AsyncIterable<string>;
|
|
133
329
|
interface AIEmbeddingOptions {
|
|
@@ -160,6 +356,7 @@ declare class AIClient {
|
|
|
160
356
|
modelName: string;
|
|
161
357
|
};
|
|
162
358
|
private buildModel;
|
|
359
|
+
private buildPrompt;
|
|
163
360
|
private buildEmbeddingModel;
|
|
164
361
|
private openRouterHeaders;
|
|
165
362
|
private getRateLimiter;
|
|
@@ -2126,196 +2323,6 @@ declare class StatelessRateLimiter {
|
|
|
2126
2323
|
executeWithRetry<T>(fn: () => Promise<T>): Promise<T>;
|
|
2127
2324
|
}
|
|
2128
2325
|
|
|
2129
|
-
/**
|
|
2130
|
-
* Multimodal content helpers for AI prompts.
|
|
2131
|
-
* Provides Image, Audio, and File classes with factory methods for creating
|
|
2132
|
-
* multimodal content from various sources (files, URLs, buffers, base64).
|
|
2133
|
-
*/
|
|
2134
|
-
/**
|
|
2135
|
-
* Represents text content in a multimodal prompt.
|
|
2136
|
-
*/
|
|
2137
|
-
declare class Text {
|
|
2138
|
-
readonly type: 'text';
|
|
2139
|
-
readonly text: string;
|
|
2140
|
-
constructor(text: string);
|
|
2141
|
-
}
|
|
2142
|
-
/**
|
|
2143
|
-
* Represents image content in a multimodal prompt.
|
|
2144
|
-
*/
|
|
2145
|
-
declare class Image {
|
|
2146
|
-
readonly type: 'image_url';
|
|
2147
|
-
readonly imageUrl: {
|
|
2148
|
-
url: string;
|
|
2149
|
-
detail?: 'low' | 'high' | 'auto';
|
|
2150
|
-
};
|
|
2151
|
-
private constructor();
|
|
2152
|
-
/**
|
|
2153
|
-
* Create Image from a local file by converting to base64 data URL.
|
|
2154
|
-
*/
|
|
2155
|
-
static fromFile(filePath: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2156
|
-
/**
|
|
2157
|
-
* Create Image from a URL.
|
|
2158
|
-
*/
|
|
2159
|
-
static fromUrl(url: string, detail?: 'low' | 'high' | 'auto'): Image;
|
|
2160
|
-
/**
|
|
2161
|
-
* Create Image from a buffer.
|
|
2162
|
-
*/
|
|
2163
|
-
static fromBuffer(buffer: Buffer | Uint8Array, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2164
|
-
/**
|
|
2165
|
-
* Create Image from a base64 string.
|
|
2166
|
-
*/
|
|
2167
|
-
static fromBase64(base64Data: string, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2168
|
-
}
|
|
2169
|
-
/**
|
|
2170
|
-
* Represents audio content in a multimodal prompt.
|
|
2171
|
-
*/
|
|
2172
|
-
declare class Audio {
|
|
2173
|
-
readonly type: 'input_audio';
|
|
2174
|
-
readonly audio: {
|
|
2175
|
-
data: string;
|
|
2176
|
-
format: string;
|
|
2177
|
-
};
|
|
2178
|
-
private constructor();
|
|
2179
|
-
/**
|
|
2180
|
-
* Create Audio from a local file by converting to base64.
|
|
2181
|
-
*/
|
|
2182
|
-
static fromFile(filePath: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2183
|
-
/**
|
|
2184
|
-
* Create Audio from a URL (downloads and converts to base64).
|
|
2185
|
-
*/
|
|
2186
|
-
static fromUrl(url: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2187
|
-
/**
|
|
2188
|
-
* Create Audio from a buffer.
|
|
2189
|
-
*/
|
|
2190
|
-
static fromBuffer(buffer: Buffer | Uint8Array, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2191
|
-
/**
|
|
2192
|
-
* Create Audio from a base64 string.
|
|
2193
|
-
*/
|
|
2194
|
-
static fromBase64(base64Data: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2195
|
-
}
|
|
2196
|
-
/**
|
|
2197
|
-
* Represents video content in a multimodal prompt.
|
|
2198
|
-
*/
|
|
2199
|
-
declare class Video {
|
|
2200
|
-
readonly type: 'video_url';
|
|
2201
|
-
readonly videoUrl: {
|
|
2202
|
-
url: string;
|
|
2203
|
-
};
|
|
2204
|
-
private constructor();
|
|
2205
|
-
/**
|
|
2206
|
-
* Create Video from a local file by converting to a base64 data URL.
|
|
2207
|
-
*/
|
|
2208
|
-
static fromFile(filePath: string): Promise<Video>;
|
|
2209
|
-
/**
|
|
2210
|
-
* Create Video from a URL.
|
|
2211
|
-
*/
|
|
2212
|
-
static fromUrl(url: string): Video;
|
|
2213
|
-
/**
|
|
2214
|
-
* Create Video from a buffer.
|
|
2215
|
-
*/
|
|
2216
|
-
static fromBuffer(buffer: Buffer | Uint8Array, mimeType?: string): Promise<Video>;
|
|
2217
|
-
/**
|
|
2218
|
-
* Create Video from a base64 string.
|
|
2219
|
-
*/
|
|
2220
|
-
static fromBase64(base64Data: string, mimeType?: string): Promise<Video>;
|
|
2221
|
-
}
|
|
2222
|
-
/**
|
|
2223
|
-
* Represents a generic file content in a multimodal prompt.
|
|
2224
|
-
*/
|
|
2225
|
-
declare class File {
|
|
2226
|
-
readonly type: 'file';
|
|
2227
|
-
readonly file: {
|
|
2228
|
-
url: string;
|
|
2229
|
-
mimeType?: string;
|
|
2230
|
-
};
|
|
2231
|
-
private constructor();
|
|
2232
|
-
/**
|
|
2233
|
-
* Create File from a local file path.
|
|
2234
|
-
*/
|
|
2235
|
-
static fromFile(filePath: string, mimeType?: string): Promise<File>;
|
|
2236
|
-
/**
|
|
2237
|
-
* Create File from a URL.
|
|
2238
|
-
*/
|
|
2239
|
-
static fromUrl(url: string, mimeType?: string): File;
|
|
2240
|
-
/**
|
|
2241
|
-
* Create File from a buffer.
|
|
2242
|
-
*/
|
|
2243
|
-
static fromBuffer(buffer: Buffer | Uint8Array, mimeType: string): Promise<File>;
|
|
2244
|
-
/**
|
|
2245
|
-
* Create File from a base64 string.
|
|
2246
|
-
*/
|
|
2247
|
-
static fromBase64(base64Data: string, mimeType: string): Promise<File>;
|
|
2248
|
-
}
|
|
2249
|
-
/**
|
|
2250
|
-
* Create text content.
|
|
2251
|
-
*/
|
|
2252
|
-
declare function text(content: string): Text;
|
|
2253
|
-
/**
|
|
2254
|
-
* Create image content from a local file.
|
|
2255
|
-
*/
|
|
2256
|
-
declare function imageFromFile(filePath: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2257
|
-
/**
|
|
2258
|
-
* Create image content from a URL.
|
|
2259
|
-
*/
|
|
2260
|
-
declare function imageFromUrl(url: string, detail?: 'low' | 'high' | 'auto'): Image;
|
|
2261
|
-
/**
|
|
2262
|
-
* Create image content from a buffer.
|
|
2263
|
-
*/
|
|
2264
|
-
declare function imageFromBuffer(buffer: Buffer | Uint8Array, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2265
|
-
/**
|
|
2266
|
-
* Create image content from a base64 string.
|
|
2267
|
-
*/
|
|
2268
|
-
declare function imageFromBase64(base64Data: string, mimeType?: string, detail?: 'low' | 'high' | 'auto'): Promise<Image>;
|
|
2269
|
-
/**
|
|
2270
|
-
* Create audio content from a local file.
|
|
2271
|
-
*/
|
|
2272
|
-
declare function audioFromFile(filePath: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2273
|
-
/**
|
|
2274
|
-
* Create audio content from a URL.
|
|
2275
|
-
*/
|
|
2276
|
-
declare function audioFromUrl(url: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2277
|
-
/**
|
|
2278
|
-
* Create audio content from a buffer.
|
|
2279
|
-
*/
|
|
2280
|
-
declare function audioFromBuffer(buffer: Buffer | Uint8Array, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2281
|
-
/**
|
|
2282
|
-
* Create audio content from a base64 string.
|
|
2283
|
-
*/
|
|
2284
|
-
declare function audioFromBase64(base64Data: string, format?: 'wav' | 'mp3' | 'flac' | 'ogg'): Promise<Audio>;
|
|
2285
|
-
/**
|
|
2286
|
-
* Create video content from a local file.
|
|
2287
|
-
*/
|
|
2288
|
-
declare function videoFromFile(filePath: string): Promise<Video>;
|
|
2289
|
-
/**
|
|
2290
|
-
* Create video content from a URL.
|
|
2291
|
-
*/
|
|
2292
|
-
declare function videoFromUrl(url: string): Video;
|
|
2293
|
-
/**
|
|
2294
|
-
* Create video content from a buffer.
|
|
2295
|
-
*/
|
|
2296
|
-
declare function videoFromBuffer(buffer: Buffer | Uint8Array, mimeType?: string): Promise<Video>;
|
|
2297
|
-
/**
|
|
2298
|
-
* Create video content from a base64 string.
|
|
2299
|
-
*/
|
|
2300
|
-
declare function videoFromBase64(base64Data: string, mimeType?: string): Promise<Video>;
|
|
2301
|
-
/**
|
|
2302
|
-
* Create file content from a local file.
|
|
2303
|
-
*/
|
|
2304
|
-
declare function fileFromPath(filePath: string, mimeType?: string): Promise<File>;
|
|
2305
|
-
/**
|
|
2306
|
-
* Create file content from a URL.
|
|
2307
|
-
*/
|
|
2308
|
-
declare function fileFromUrl(url: string, mimeType?: string): File;
|
|
2309
|
-
/**
|
|
2310
|
-
* Create file content from a buffer.
|
|
2311
|
-
*/
|
|
2312
|
-
declare function fileFromBuffer(buffer: Buffer | Uint8Array, mimeType: string): Promise<File>;
|
|
2313
|
-
/**
|
|
2314
|
-
* Create file content from a base64 string.
|
|
2315
|
-
*/
|
|
2316
|
-
declare function fileFromBase64(base64Data: string, mimeType: string): Promise<File>;
|
|
2317
|
-
type MultimodalContent = Text | Image | Audio | Video | File;
|
|
2318
|
-
|
|
2319
2326
|
/**
|
|
2320
2327
|
* Multimodal response classes for handling LLM multimodal outputs.
|
|
2321
2328
|
* Provides seamless integration with audio, image, and file outputs while maintaining backward compatibility.
|
|
@@ -3036,4 +3043,4 @@ declare function simulateSchedule<R>(handler: (ctx: SimulatedContext) => R | Pro
|
|
|
3036
3043
|
*/
|
|
3037
3044
|
declare function loadFixture(source: string): Record<string, unknown>;
|
|
3038
3045
|
|
|
3039
|
-
export { ACTIVE_STATUSES, AIClient, type AIConfig, type AIEmbeddingOptions, type AIRequestOptions, type AIStream, type AIToolRequestOptions, Agent, type AgentCapability, type AgentConfig, type AgentHandler, AgentRouter, type AgentRouterOptions, type AgentState, ApprovalClient, type ApprovalDecision, type ApprovalRequestResponse, ApprovalResult, type ApprovalStatusResponse, Audio, type AudioOutput, type AudioRequest, type AuditTrailExport, type AuditTrailFilters, type Awaitable, CANONICAL_STATUSES, type CompactCapability, type CompactDiscoveryResponse, type CostEntry, type CostEntryInit, CostTracker, DIDAuthenticator, type DIDIdentity, type DIDIdentityPackage, type DIDRegistrationRequest, type DIDRegistrationResponse, type DeploymentType, DidClient, DidInterface, DidManager, type DidResolver, type DiscoveryFormat, type DiscoveryOptions, type DiscoveryPagination, type DiscoveryResponse, type DiscoveryResult, type EventTriggerBinding, type EventTriggerSpec, ExecutionContext, type ExecutionCredential, type ExecutionLogAttributes, type ExecutionLogBatchPayload, type ExecutionLogContext, type ExecutionLogEmitOptions, type ExecutionLogEntry, type ExecutionLogLevel, type ExecutionLogTransport, type ExecutionLogTransportPayload, type ExecutionLogWireEntry, ExecutionLogger, type ExecutionLoggerOptions, type ExecutionMetadata, ExecutionStatus, type ExecutionStatusValue, File, type FileOutput, type GenerateCredentialOptions, type GenerateCredentialParams, HEADER_CALLER_DID, HEADER_DID_NONCE, HEADER_DID_SIGNATURE, HEADER_DID_TIMESTAMP, type HarnessConfig, type HarnessOptions, type HarnessProvider, type HarnessResult, HarnessRunner, type HealthStatus, Image, type ImageOutput, type ImageRequest, JWE_ALG, JWE_ENC, KEY_AGREEMENT_TYPE, MODEL_VARIANT_SEP, type MediaProvider, MediaProviderError, type MediaResponse, MediaRouter, type MemoryChangeEvent, MemoryClient, MemoryClientBase, type MemoryConfig, MemoryEventClient, type MemoryEventHandler, type MemoryEventHistoryOptions, type MemoryEventSubscriptionOptions, MemoryInterface, type MemoryRequestMetadata, type MemoryRequestOptions, type MemoryScope, type MemoryWatchHandler, type Metrics, type ModelVariant, type MultimodalContent, MultimodalResponse, OpenRouterMediaProvider, type OpenRouterMediaProviderOptions, PauseClock, PauseManager, type Payload, PayloadEncryptionError, RateLimitError, type RateLimiterOptions, type RawExecutionContext, type RawResult, RealtimeSession, type ReasonerCapability, ReasonerContext, type ReasonerDefinition, type ReasonerHandler, type ReasonerOptions, type RequestApprovalPayload, SUPPORTED_PROVIDERS, SUPPORTED_SESSION_TRANSPORTS, type ScheduleTriggerBinding, type ScheduleTriggerSpec, type ServerlessAdapter, type ServerlessEvent, type ServerlessResponse, type SessionDefinition, type SessionOptions, type SessionProvider, type SessionTransport, type SessionTransportCapability, SessionTransportError, type SessionTurn, type SimulateScheduleOptions, type SimulateTriggerOptions, type SimulatedContext, type SkillCapability, SkillContext, type SkillDefinition, type SkillHandler, type SkillOptions, StatelessRateLimiter, TERMINAL_STATUSES, Text, type ToolCallConfig, type ToolCallRecord, type ToolCallTrace, type ToolsOption, type TriggerBinding, type TriggerContext, type TriggerEnvelope, USAGE_ENVELOPE_KEY, type UnwrapResult, type UsageEntryWire, type UsageSummaryWire, type VectorSearchOptions, type VectorSearchResult, Video, type VideoFrameImage, type VideoInputReference, type VideoRequest, type WaitForApprovalOptions, type WorkflowCredential, type WorkflowMetadata, type WorkflowProgressOptions, WorkflowReporter, type ZodSchema, applyTriggerTransform, attachUsageToSyncResult, audioFromBase64, audioFromBuffer, audioFromFile, audioFromUrl, buildProvider, buildSessionDefinition, buildToolConfig, capabilitiesToTools, capabilityToMetadataTool, capabilityToTool, createExecutionLogger, createHarnessResult, createMetrics, createMultimodalResponse, createRawResult, decrypt, decryptToString, deriveProvider, encryptForDid, encryptToJwk, eventTrigger, executeToolCallLoop, extractKeyAgreementJwk, fileFromBase64, fileFromBuffer, fileFromPath, fileFromUrl, generateX25519KeyPair, getCurrentContext, getCurrentSkillContext, imageFromBase64, imageFromBuffer, imageFromFile, imageFromUrl, installApprovalWebhookRoute, isActive, isExecutionLogBatchPayload, isTerminal, isTriggerEnvelope, loadFixture, normalizeExecutionLogEntry, normalizeSessionTransportValue, normalizeStatus, resolveModelAndVariant, scheduleTrigger, serializeExecutionLogEntry, simulateSchedule, simulateTrigger, splitModelVariant, text, triggerToPayload, unwrapEnvelope, usageSummaryOrNull, validateSessionTransport, videoFromBase64, videoFromBuffer, videoFromFile, videoFromUrl };
|
|
3046
|
+
export { ACTIVE_STATUSES, AIClient, type AIConfig, type AIEmbeddingOptions, type AIRequestOptions, type AIStream, type AIToolRequestOptions, Agent, type AgentCapability, type AgentConfig, type AgentHandler, AgentRouter, type AgentRouterOptions, type AgentState, ApprovalClient, type ApprovalDecision, type ApprovalRequestResponse, ApprovalResult, type ApprovalStatusResponse, Audio, type AudioOutput, type AudioRequest, type AuditTrailExport, type AuditTrailFilters, type Awaitable, CANONICAL_STATUSES, type CompactCapability, type CompactDiscoveryResponse, type CostEntry, type CostEntryInit, CostTracker, DIDAuthenticator, type DIDIdentity, type DIDIdentityPackage, type DIDRegistrationRequest, type DIDRegistrationResponse, type DeploymentType, DidClient, DidInterface, DidManager, type DidResolver, type DiscoveryFormat, type DiscoveryOptions, type DiscoveryPagination, type DiscoveryResponse, type DiscoveryResult, type EventTriggerBinding, type EventTriggerSpec, ExecutionContext, type ExecutionCredential, type ExecutionLogAttributes, type ExecutionLogBatchPayload, type ExecutionLogContext, type ExecutionLogEmitOptions, type ExecutionLogEntry, type ExecutionLogLevel, type ExecutionLogTransport, type ExecutionLogTransportPayload, type ExecutionLogWireEntry, ExecutionLogger, type ExecutionLoggerOptions, type ExecutionMetadata, ExecutionStatus, type ExecutionStatusValue, File, type FileOutput, type GenerateCredentialOptions, type GenerateCredentialParams, HEADER_CALLER_DID, HEADER_DID_NONCE, HEADER_DID_SIGNATURE, HEADER_DID_TIMESTAMP, type HarnessConfig, type HarnessOptions, type HarnessProvider, type HarnessResult, HarnessRunner, type HealthStatus, Image, type ImageOutput, type ImageRequest, JWE_ALG, JWE_ENC, KEY_AGREEMENT_TYPE, MODEL_VARIANT_SEP, type MediaProvider, MediaProviderError, type MediaResponse, MediaRouter, type MemoryChangeEvent, MemoryClient, MemoryClientBase, type MemoryConfig, MemoryEventClient, type MemoryEventHandler, type MemoryEventHistoryOptions, type MemoryEventSubscriptionOptions, MemoryInterface, type MemoryRequestMetadata, type MemoryRequestOptions, type MemoryScope, type MemoryWatchHandler, type Metrics, type ModelVariant, type MultimodalContent, MultimodalResponse, OpenRouterMediaProvider, type OpenRouterMediaProviderOptions, PauseClock, PauseManager, type Payload, PayloadEncryptionError, RateLimitError, type RateLimiterOptions, type RawExecutionContext, type RawResult, RealtimeSession, type ReasonerCapability, ReasonerContext, type ReasonerDefinition, type ReasonerHandler, type ReasonerOptions, type RequestApprovalPayload, SUPPORTED_PROVIDERS, SUPPORTED_SESSION_TRANSPORTS, type ScheduleTriggerBinding, type ScheduleTriggerSpec, type ServerlessAdapter, type ServerlessEvent, type ServerlessResponse, type SessionDefinition, type SessionOptions, type SessionProvider, type SessionTransport, type SessionTransportCapability, SessionTransportError, type SessionTurn, type SimulateScheduleOptions, type SimulateTriggerOptions, type SimulatedContext, type SkillCapability, SkillContext, type SkillDefinition, type SkillHandler, type SkillOptions, StatelessRateLimiter, TERMINAL_STATUSES, Text, type ToolCallConfig, type ToolCallRecord, type ToolCallTrace, type ToolsOption, type TriggerBinding, type TriggerContext, type TriggerEnvelope, USAGE_ENVELOPE_KEY, type UnwrapResult, type UsageEntryWire, type UsageSummaryWire, type VectorSearchOptions, type VectorSearchResult, Video, type VideoFrameImage, type VideoInputReference, type VideoRequest, type WaitForApprovalOptions, type WorkflowCredential, type WorkflowMetadata, type WorkflowProgressOptions, WorkflowReporter, type ZodSchema, applyTriggerTransform, attachUsageToSyncResult, audioFromBase64, audioFromBuffer, audioFromFile, audioFromUrl, audioMediaType, buildProvider, buildSessionDefinition, buildToolConfig, capabilitiesToTools, capabilityToMetadataTool, capabilityToTool, createExecutionLogger, createHarnessResult, createMetrics, createMultimodalResponse, createRawResult, decrypt, decryptToString, deriveProvider, encryptForDid, encryptToJwk, eventTrigger, executeToolCallLoop, extractKeyAgreementJwk, fileFromBase64, fileFromBuffer, fileFromPath, fileFromUrl, generateX25519KeyPair, getCurrentContext, getCurrentSkillContext, guessUrlMimeType, imageFromBase64, imageFromBuffer, imageFromFile, imageFromUrl, installApprovalWebhookRoute, isActive, isExecutionLogBatchPayload, isTerminal, isTriggerEnvelope, loadFixture, normalizeExecutionLogEntry, normalizeSessionTransportValue, normalizeStatus, resolveModelAndVariant, scheduleTrigger, serializeExecutionLogEntry, simulateSchedule, simulateTrigger, splitModelVariant, text, triggerToPayload, unwrapEnvelope, usageSummaryOrNull, validateSessionTransport, videoFromBase64, videoFromBuffer, videoFromFile, videoFromUrl };
|