@workglow/ai 0.2.14 → 0.2.15
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/browser.js +27 -15
- package/dist/browser.js.map +5 -5
- package/dist/bun.js +27 -15
- package/dist/bun.js.map +5 -5
- package/dist/node.js +27 -15
- package/dist/node.js.map +5 -5
- package/dist/task/AiChatTask.d.ts +150 -231
- package/dist/task/AiChatTask.d.ts.map +1 -1
- package/dist/task/ChatMessage.d.ts +110 -155
- package/dist/task/ChatMessage.d.ts.map +1 -1
- package/dist/task/StructuredGenerationTask.d.ts +1 -1
- package/dist/task/StructuredGenerationTask.d.ts.map +1 -1
- package/dist/task/ToolCallingTask.d.ts +50 -77
- package/dist/task/ToolCallingTask.d.ts.map +1 -1
- package/dist/task/base/AiVisionTask.d.ts.map +1 -1
- package/package.json +11 -11
|
@@ -148,7 +148,56 @@ export declare const AiChatInputSchema: {
|
|
|
148
148
|
readonly content: {
|
|
149
149
|
readonly type: "array";
|
|
150
150
|
readonly items: {
|
|
151
|
-
readonly
|
|
151
|
+
readonly oneOf: readonly [{
|
|
152
|
+
readonly type: "object";
|
|
153
|
+
readonly properties: {
|
|
154
|
+
readonly type: {
|
|
155
|
+
readonly type: "string";
|
|
156
|
+
readonly enum: readonly ["text"];
|
|
157
|
+
};
|
|
158
|
+
readonly text: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
readonly required: readonly ["type", "text"];
|
|
163
|
+
readonly additionalProperties: false;
|
|
164
|
+
}, {
|
|
165
|
+
readonly type: "object";
|
|
166
|
+
readonly properties: {
|
|
167
|
+
readonly type: {
|
|
168
|
+
readonly type: "string";
|
|
169
|
+
readonly enum: readonly ["image"];
|
|
170
|
+
};
|
|
171
|
+
readonly mimeType: {
|
|
172
|
+
readonly type: "string";
|
|
173
|
+
};
|
|
174
|
+
readonly data: {
|
|
175
|
+
readonly type: "string";
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
readonly required: readonly ["type", "mimeType", "data"];
|
|
179
|
+
readonly additionalProperties: false;
|
|
180
|
+
}, {
|
|
181
|
+
readonly type: "object";
|
|
182
|
+
readonly properties: {
|
|
183
|
+
readonly type: {
|
|
184
|
+
readonly type: "string";
|
|
185
|
+
readonly enum: readonly ["tool_use"];
|
|
186
|
+
};
|
|
187
|
+
readonly id: {
|
|
188
|
+
readonly type: "string";
|
|
189
|
+
};
|
|
190
|
+
readonly name: {
|
|
191
|
+
readonly type: "string";
|
|
192
|
+
};
|
|
193
|
+
readonly input: {
|
|
194
|
+
readonly type: "object";
|
|
195
|
+
readonly additionalProperties: true;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
readonly required: readonly ["type", "id", "name", "input"];
|
|
199
|
+
readonly additionalProperties: false;
|
|
200
|
+
}];
|
|
152
201
|
};
|
|
153
202
|
};
|
|
154
203
|
readonly is_error: {
|
|
@@ -158,82 +207,6 @@ export declare const AiChatInputSchema: {
|
|
|
158
207
|
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
159
208
|
readonly additionalProperties: false;
|
|
160
209
|
}];
|
|
161
|
-
readonly definitions: {
|
|
162
|
-
readonly ContentBlock: {
|
|
163
|
-
readonly oneOf: readonly [{
|
|
164
|
-
readonly type: "object";
|
|
165
|
-
readonly properties: {
|
|
166
|
-
readonly type: {
|
|
167
|
-
readonly type: "string";
|
|
168
|
-
readonly enum: readonly ["text"];
|
|
169
|
-
};
|
|
170
|
-
readonly text: {
|
|
171
|
-
readonly type: "string";
|
|
172
|
-
};
|
|
173
|
-
};
|
|
174
|
-
readonly required: readonly ["type", "text"];
|
|
175
|
-
readonly additionalProperties: false;
|
|
176
|
-
}, {
|
|
177
|
-
readonly type: "object";
|
|
178
|
-
readonly properties: {
|
|
179
|
-
readonly type: {
|
|
180
|
-
readonly type: "string";
|
|
181
|
-
readonly enum: readonly ["image"];
|
|
182
|
-
};
|
|
183
|
-
readonly mimeType: {
|
|
184
|
-
readonly type: "string";
|
|
185
|
-
};
|
|
186
|
-
readonly data: {
|
|
187
|
-
readonly type: "string";
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
readonly required: readonly ["type", "mimeType", "data"];
|
|
191
|
-
readonly additionalProperties: false;
|
|
192
|
-
}, {
|
|
193
|
-
readonly type: "object";
|
|
194
|
-
readonly properties: {
|
|
195
|
-
readonly type: {
|
|
196
|
-
readonly type: "string";
|
|
197
|
-
readonly enum: readonly ["tool_use"];
|
|
198
|
-
};
|
|
199
|
-
readonly id: {
|
|
200
|
-
readonly type: "string";
|
|
201
|
-
};
|
|
202
|
-
readonly name: {
|
|
203
|
-
readonly type: "string";
|
|
204
|
-
};
|
|
205
|
-
readonly input: {
|
|
206
|
-
readonly type: "object";
|
|
207
|
-
readonly additionalProperties: true;
|
|
208
|
-
};
|
|
209
|
-
};
|
|
210
|
-
readonly required: readonly ["type", "id", "name", "input"];
|
|
211
|
-
readonly additionalProperties: false;
|
|
212
|
-
}, {
|
|
213
|
-
readonly type: "object";
|
|
214
|
-
readonly properties: {
|
|
215
|
-
readonly type: {
|
|
216
|
-
readonly type: "string";
|
|
217
|
-
readonly enum: readonly ["tool_result"];
|
|
218
|
-
};
|
|
219
|
-
readonly tool_use_id: {
|
|
220
|
-
readonly type: "string";
|
|
221
|
-
};
|
|
222
|
-
readonly content: {
|
|
223
|
-
readonly type: "array";
|
|
224
|
-
readonly items: {
|
|
225
|
-
readonly $ref: "#/definitions/ContentBlock";
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
readonly is_error: {
|
|
229
|
-
readonly type: "boolean";
|
|
230
|
-
};
|
|
231
|
-
};
|
|
232
|
-
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
233
|
-
readonly additionalProperties: false;
|
|
234
|
-
}];
|
|
235
|
-
};
|
|
236
|
-
};
|
|
237
210
|
readonly title: "ContentBlock";
|
|
238
211
|
readonly description: "A single content block within a chat message";
|
|
239
212
|
};
|
|
@@ -317,7 +290,56 @@ export declare const AiChatInputSchema: {
|
|
|
317
290
|
readonly content: {
|
|
318
291
|
readonly type: "array";
|
|
319
292
|
readonly items: {
|
|
320
|
-
readonly
|
|
293
|
+
readonly oneOf: readonly [{
|
|
294
|
+
readonly type: "object";
|
|
295
|
+
readonly properties: {
|
|
296
|
+
readonly type: {
|
|
297
|
+
readonly type: "string";
|
|
298
|
+
readonly enum: readonly ["text"];
|
|
299
|
+
};
|
|
300
|
+
readonly text: {
|
|
301
|
+
readonly type: "string";
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
readonly required: readonly ["type", "text"];
|
|
305
|
+
readonly additionalProperties: false;
|
|
306
|
+
}, {
|
|
307
|
+
readonly type: "object";
|
|
308
|
+
readonly properties: {
|
|
309
|
+
readonly type: {
|
|
310
|
+
readonly type: "string";
|
|
311
|
+
readonly enum: readonly ["image"];
|
|
312
|
+
};
|
|
313
|
+
readonly mimeType: {
|
|
314
|
+
readonly type: "string";
|
|
315
|
+
};
|
|
316
|
+
readonly data: {
|
|
317
|
+
readonly type: "string";
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
readonly required: readonly ["type", "mimeType", "data"];
|
|
321
|
+
readonly additionalProperties: false;
|
|
322
|
+
}, {
|
|
323
|
+
readonly type: "object";
|
|
324
|
+
readonly properties: {
|
|
325
|
+
readonly type: {
|
|
326
|
+
readonly type: "string";
|
|
327
|
+
readonly enum: readonly ["tool_use"];
|
|
328
|
+
};
|
|
329
|
+
readonly id: {
|
|
330
|
+
readonly type: "string";
|
|
331
|
+
};
|
|
332
|
+
readonly name: {
|
|
333
|
+
readonly type: "string";
|
|
334
|
+
};
|
|
335
|
+
readonly input: {
|
|
336
|
+
readonly type: "object";
|
|
337
|
+
readonly additionalProperties: true;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
readonly required: readonly ["type", "id", "name", "input"];
|
|
341
|
+
readonly additionalProperties: false;
|
|
342
|
+
}];
|
|
321
343
|
};
|
|
322
344
|
};
|
|
323
345
|
readonly is_error: {
|
|
@@ -327,82 +349,6 @@ export declare const AiChatInputSchema: {
|
|
|
327
349
|
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
328
350
|
readonly additionalProperties: false;
|
|
329
351
|
}];
|
|
330
|
-
readonly definitions: {
|
|
331
|
-
readonly ContentBlock: {
|
|
332
|
-
readonly oneOf: readonly [{
|
|
333
|
-
readonly type: "object";
|
|
334
|
-
readonly properties: {
|
|
335
|
-
readonly type: {
|
|
336
|
-
readonly type: "string";
|
|
337
|
-
readonly enum: readonly ["text"];
|
|
338
|
-
};
|
|
339
|
-
readonly text: {
|
|
340
|
-
readonly type: "string";
|
|
341
|
-
};
|
|
342
|
-
};
|
|
343
|
-
readonly required: readonly ["type", "text"];
|
|
344
|
-
readonly additionalProperties: false;
|
|
345
|
-
}, {
|
|
346
|
-
readonly type: "object";
|
|
347
|
-
readonly properties: {
|
|
348
|
-
readonly type: {
|
|
349
|
-
readonly type: "string";
|
|
350
|
-
readonly enum: readonly ["image"];
|
|
351
|
-
};
|
|
352
|
-
readonly mimeType: {
|
|
353
|
-
readonly type: "string";
|
|
354
|
-
};
|
|
355
|
-
readonly data: {
|
|
356
|
-
readonly type: "string";
|
|
357
|
-
};
|
|
358
|
-
};
|
|
359
|
-
readonly required: readonly ["type", "mimeType", "data"];
|
|
360
|
-
readonly additionalProperties: false;
|
|
361
|
-
}, {
|
|
362
|
-
readonly type: "object";
|
|
363
|
-
readonly properties: {
|
|
364
|
-
readonly type: {
|
|
365
|
-
readonly type: "string";
|
|
366
|
-
readonly enum: readonly ["tool_use"];
|
|
367
|
-
};
|
|
368
|
-
readonly id: {
|
|
369
|
-
readonly type: "string";
|
|
370
|
-
};
|
|
371
|
-
readonly name: {
|
|
372
|
-
readonly type: "string";
|
|
373
|
-
};
|
|
374
|
-
readonly input: {
|
|
375
|
-
readonly type: "object";
|
|
376
|
-
readonly additionalProperties: true;
|
|
377
|
-
};
|
|
378
|
-
};
|
|
379
|
-
readonly required: readonly ["type", "id", "name", "input"];
|
|
380
|
-
readonly additionalProperties: false;
|
|
381
|
-
}, {
|
|
382
|
-
readonly type: "object";
|
|
383
|
-
readonly properties: {
|
|
384
|
-
readonly type: {
|
|
385
|
-
readonly type: "string";
|
|
386
|
-
readonly enum: readonly ["tool_result"];
|
|
387
|
-
};
|
|
388
|
-
readonly tool_use_id: {
|
|
389
|
-
readonly type: "string";
|
|
390
|
-
};
|
|
391
|
-
readonly content: {
|
|
392
|
-
readonly type: "array";
|
|
393
|
-
readonly items: {
|
|
394
|
-
readonly $ref: "#/definitions/ContentBlock";
|
|
395
|
-
};
|
|
396
|
-
};
|
|
397
|
-
readonly is_error: {
|
|
398
|
-
readonly type: "boolean";
|
|
399
|
-
};
|
|
400
|
-
};
|
|
401
|
-
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
402
|
-
readonly additionalProperties: false;
|
|
403
|
-
}];
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
352
|
readonly title: "ContentBlock";
|
|
407
353
|
readonly description: "A single content block within a chat message";
|
|
408
354
|
};
|
|
@@ -532,7 +478,56 @@ export declare const AiChatOutputSchema: {
|
|
|
532
478
|
readonly content: {
|
|
533
479
|
readonly type: "array";
|
|
534
480
|
readonly items: {
|
|
535
|
-
readonly
|
|
481
|
+
readonly oneOf: readonly [{
|
|
482
|
+
readonly type: "object";
|
|
483
|
+
readonly properties: {
|
|
484
|
+
readonly type: {
|
|
485
|
+
readonly type: "string";
|
|
486
|
+
readonly enum: readonly ["text"];
|
|
487
|
+
};
|
|
488
|
+
readonly text: {
|
|
489
|
+
readonly type: "string";
|
|
490
|
+
};
|
|
491
|
+
};
|
|
492
|
+
readonly required: readonly ["type", "text"];
|
|
493
|
+
readonly additionalProperties: false;
|
|
494
|
+
}, {
|
|
495
|
+
readonly type: "object";
|
|
496
|
+
readonly properties: {
|
|
497
|
+
readonly type: {
|
|
498
|
+
readonly type: "string";
|
|
499
|
+
readonly enum: readonly ["image"];
|
|
500
|
+
};
|
|
501
|
+
readonly mimeType: {
|
|
502
|
+
readonly type: "string";
|
|
503
|
+
};
|
|
504
|
+
readonly data: {
|
|
505
|
+
readonly type: "string";
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
readonly required: readonly ["type", "mimeType", "data"];
|
|
509
|
+
readonly additionalProperties: false;
|
|
510
|
+
}, {
|
|
511
|
+
readonly type: "object";
|
|
512
|
+
readonly properties: {
|
|
513
|
+
readonly type: {
|
|
514
|
+
readonly type: "string";
|
|
515
|
+
readonly enum: readonly ["tool_use"];
|
|
516
|
+
};
|
|
517
|
+
readonly id: {
|
|
518
|
+
readonly type: "string";
|
|
519
|
+
};
|
|
520
|
+
readonly name: {
|
|
521
|
+
readonly type: "string";
|
|
522
|
+
};
|
|
523
|
+
readonly input: {
|
|
524
|
+
readonly type: "object";
|
|
525
|
+
readonly additionalProperties: true;
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
readonly required: readonly ["type", "id", "name", "input"];
|
|
529
|
+
readonly additionalProperties: false;
|
|
530
|
+
}];
|
|
536
531
|
};
|
|
537
532
|
};
|
|
538
533
|
readonly is_error: {
|
|
@@ -542,82 +537,6 @@ export declare const AiChatOutputSchema: {
|
|
|
542
537
|
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
543
538
|
readonly additionalProperties: false;
|
|
544
539
|
}];
|
|
545
|
-
readonly definitions: {
|
|
546
|
-
readonly ContentBlock: {
|
|
547
|
-
readonly oneOf: readonly [{
|
|
548
|
-
readonly type: "object";
|
|
549
|
-
readonly properties: {
|
|
550
|
-
readonly type: {
|
|
551
|
-
readonly type: "string";
|
|
552
|
-
readonly enum: readonly ["text"];
|
|
553
|
-
};
|
|
554
|
-
readonly text: {
|
|
555
|
-
readonly type: "string";
|
|
556
|
-
};
|
|
557
|
-
};
|
|
558
|
-
readonly required: readonly ["type", "text"];
|
|
559
|
-
readonly additionalProperties: false;
|
|
560
|
-
}, {
|
|
561
|
-
readonly type: "object";
|
|
562
|
-
readonly properties: {
|
|
563
|
-
readonly type: {
|
|
564
|
-
readonly type: "string";
|
|
565
|
-
readonly enum: readonly ["image"];
|
|
566
|
-
};
|
|
567
|
-
readonly mimeType: {
|
|
568
|
-
readonly type: "string";
|
|
569
|
-
};
|
|
570
|
-
readonly data: {
|
|
571
|
-
readonly type: "string";
|
|
572
|
-
};
|
|
573
|
-
};
|
|
574
|
-
readonly required: readonly ["type", "mimeType", "data"];
|
|
575
|
-
readonly additionalProperties: false;
|
|
576
|
-
}, {
|
|
577
|
-
readonly type: "object";
|
|
578
|
-
readonly properties: {
|
|
579
|
-
readonly type: {
|
|
580
|
-
readonly type: "string";
|
|
581
|
-
readonly enum: readonly ["tool_use"];
|
|
582
|
-
};
|
|
583
|
-
readonly id: {
|
|
584
|
-
readonly type: "string";
|
|
585
|
-
};
|
|
586
|
-
readonly name: {
|
|
587
|
-
readonly type: "string";
|
|
588
|
-
};
|
|
589
|
-
readonly input: {
|
|
590
|
-
readonly type: "object";
|
|
591
|
-
readonly additionalProperties: true;
|
|
592
|
-
};
|
|
593
|
-
};
|
|
594
|
-
readonly required: readonly ["type", "id", "name", "input"];
|
|
595
|
-
readonly additionalProperties: false;
|
|
596
|
-
}, {
|
|
597
|
-
readonly type: "object";
|
|
598
|
-
readonly properties: {
|
|
599
|
-
readonly type: {
|
|
600
|
-
readonly type: "string";
|
|
601
|
-
readonly enum: readonly ["tool_result"];
|
|
602
|
-
};
|
|
603
|
-
readonly tool_use_id: {
|
|
604
|
-
readonly type: "string";
|
|
605
|
-
};
|
|
606
|
-
readonly content: {
|
|
607
|
-
readonly type: "array";
|
|
608
|
-
readonly items: {
|
|
609
|
-
readonly $ref: "#/definitions/ContentBlock";
|
|
610
|
-
};
|
|
611
|
-
};
|
|
612
|
-
readonly is_error: {
|
|
613
|
-
readonly type: "boolean";
|
|
614
|
-
};
|
|
615
|
-
};
|
|
616
|
-
readonly required: readonly ["type", "tool_use_id", "content"];
|
|
617
|
-
readonly additionalProperties: false;
|
|
618
|
-
}];
|
|
619
|
-
};
|
|
620
|
-
};
|
|
621
540
|
readonly title: "ContentBlock";
|
|
622
541
|
readonly description: "A single content block within a chat message";
|
|
623
542
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AiChatTask.d.ts","sourceRoot":"","sources":["../../src/task/AiChatTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEzE,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAgB,MAAM,eAAe,CAAC;AAmC/D,eAAO,MAAM,iBAAiB;mBACtB,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAKA,QAAQ;gCAAS,QAAQ;sCAAe,0BAA0B;;+BAElE,OAAO;gCACN,QAAQ;sCACF,uDAAuD
|
|
1
|
+
{"version":3,"file":"AiChatTask.d.ts","sourceRoot":"","sources":["../../src/task/AiChatTask.ts"],"names":[],"mappings":"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"}
|