@tylertech/forge-ai 0.7.3 → 0.8.0
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/custom-elements.json +646 -473
- package/dist/ai-actions-toolbar/ai-actions-toolbar.mjs +4 -4
- package/dist/ai-assistant-response/ai-assistant-response.scss.mjs +1 -1
- package/dist/ai-chat-header/ai-chat-header.mjs +72 -72
- package/dist/ai-chat-interface/ai-chat-interface.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot-tool-call.mjs +22 -15
- package/dist/ai-chatbot/ai-chatbot-tool-call.scss.mjs +1 -1
- package/dist/ai-chatbot/ai-chatbot.mjs +47 -2
- package/dist/ai-chatbot/message-state-controller.d.ts +1 -0
- package/dist/ai-chatbot/message-state-controller.mjs +29 -9
- package/dist/ai-chatbot/types.d.ts +1 -0
- package/dist/ai-chatbot/utils.mjs +13 -2
- package/dist/ai-dialog/ai-dialog.scss.mjs +1 -1
- package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
- package/dist/ai-file-picker/ai-file-picker.mjs +3 -0
- package/dist/ai-floating-chat/ai-floating-chat.scss.mjs +1 -1
- package/dist/ai-message-thread/ai-message-thread.d.ts +9 -0
- package/dist/ai-message-thread/ai-message-thread.mjs +78 -5
- package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
- package/dist/ai-prompt/ai-prompt.mjs +48 -5
- package/dist/ai-slash-command-menu/ai-slash-command-menu.mjs +1 -1
- package/dist/ai-user-message/ai-user-message.d.ts +25 -0
- package/dist/ai-user-message/ai-user-message.mjs +183 -5
- package/dist/ai-user-message/ai-user-message.scss.mjs +1 -1
- package/dist/ai-voice-input/ai-voice-input.mjs +5 -0
- package/dist/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.d.ts +10 -0
- package/dist/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.mjs +20 -0
- package/dist/tools/ai-confirm-tool-call/index.d.ts +1 -0
- package/dist/tools/ai-confirm-tool-call/index.mjs +5 -0
- package/dist/tools/ai-paginator/ai-paginator.mjs +5 -0
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -180,77 +180,6 @@
|
|
|
180
180
|
}
|
|
181
181
|
]
|
|
182
182
|
},
|
|
183
|
-
{
|
|
184
|
-
"kind": "javascript-module",
|
|
185
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
186
|
-
"declarations": [
|
|
187
|
-
{
|
|
188
|
-
"kind": "variable",
|
|
189
|
-
"name": "AiArtifactComponentTagName",
|
|
190
|
-
"type": {
|
|
191
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
192
|
-
},
|
|
193
|
-
"default": "'forge-ai-artifact'"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"kind": "class",
|
|
197
|
-
"description": "",
|
|
198
|
-
"name": "AiArtifactComponent",
|
|
199
|
-
"cssProperties": [
|
|
200
|
-
{
|
|
201
|
-
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
202
|
-
"name": "--forge-theme-surface"
|
|
203
|
-
}
|
|
204
|
-
],
|
|
205
|
-
"slots": [
|
|
206
|
-
{
|
|
207
|
-
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
208
|
-
"name": "start"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"description": "Action buttons for the end (right) side of the toolbar",
|
|
212
|
-
"name": "actions"
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"description": "Main content area below the toolbar",
|
|
216
|
-
"name": ""
|
|
217
|
-
}
|
|
218
|
-
],
|
|
219
|
-
"members": [],
|
|
220
|
-
"superclass": {
|
|
221
|
-
"name": "LitElement",
|
|
222
|
-
"package": "lit"
|
|
223
|
-
},
|
|
224
|
-
"tagName": "forge-ai-artifact",
|
|
225
|
-
"customElement": true
|
|
226
|
-
}
|
|
227
|
-
],
|
|
228
|
-
"exports": [
|
|
229
|
-
{
|
|
230
|
-
"kind": "js",
|
|
231
|
-
"name": "AiArtifactComponentTagName",
|
|
232
|
-
"declaration": {
|
|
233
|
-
"name": "AiArtifactComponentTagName",
|
|
234
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
235
|
-
}
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"kind": "js",
|
|
239
|
-
"name": "AiArtifactComponent",
|
|
240
|
-
"declaration": {
|
|
241
|
-
"name": "AiArtifactComponent",
|
|
242
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
243
|
-
}
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"kind": "custom-element-definition",
|
|
247
|
-
"declaration": {
|
|
248
|
-
"name": "AiArtifactComponent",
|
|
249
|
-
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
]
|
|
253
|
-
},
|
|
254
183
|
{
|
|
255
184
|
"kind": "javascript-module",
|
|
256
185
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
@@ -315,170 +244,208 @@
|
|
|
315
244
|
},
|
|
316
245
|
{
|
|
317
246
|
"kind": "javascript-module",
|
|
318
|
-
"path": "src/lib/ai-
|
|
247
|
+
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
319
248
|
"declarations": [
|
|
320
249
|
{
|
|
321
250
|
"kind": "variable",
|
|
322
|
-
"name": "
|
|
251
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
323
252
|
"type": {
|
|
324
253
|
"text": "keyof HTMLElementTagNameMap"
|
|
325
254
|
},
|
|
326
|
-
"default": "'forge-ai-
|
|
255
|
+
"default": "'forge-ai-assistant-response'"
|
|
327
256
|
},
|
|
328
257
|
{
|
|
329
258
|
"kind": "class",
|
|
330
259
|
"description": "",
|
|
331
|
-
"name": "
|
|
332
|
-
"cssProperties": [
|
|
333
|
-
{
|
|
334
|
-
"description": "Background color of the attachment",
|
|
335
|
-
"name": "--forge-ai-attachment-background"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"description": "Border color of the attachment",
|
|
339
|
-
"name": "--forge-ai-attachment-border-color"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"description": "Padding inside the attachment",
|
|
343
|
-
"name": "--forge-ai-attachment-padding"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"description": "Gap between elements",
|
|
347
|
-
"name": "--forge-ai-attachment-gap"
|
|
348
|
-
}
|
|
349
|
-
],
|
|
260
|
+
"name": "AiAssistantResponseComponent",
|
|
350
261
|
"members": [
|
|
351
262
|
{
|
|
352
263
|
"kind": "field",
|
|
353
|
-
"name": "
|
|
264
|
+
"name": "response",
|
|
354
265
|
"type": {
|
|
355
|
-
"text": "
|
|
266
|
+
"text": "AssistantResponse"
|
|
356
267
|
},
|
|
357
|
-
"privacy": "public"
|
|
358
|
-
"default": "''",
|
|
359
|
-
"attribute": "filename"
|
|
268
|
+
"privacy": "public"
|
|
360
269
|
},
|
|
361
270
|
{
|
|
362
271
|
"kind": "field",
|
|
363
|
-
"name": "
|
|
272
|
+
"name": "tools",
|
|
364
273
|
"type": {
|
|
365
|
-
"text": "
|
|
274
|
+
"text": "Map<string, ToolDefinition> | undefined"
|
|
366
275
|
},
|
|
367
|
-
"privacy": "public"
|
|
368
|
-
"default": "0",
|
|
369
|
-
"attribute": "size"
|
|
276
|
+
"privacy": "public"
|
|
370
277
|
},
|
|
371
278
|
{
|
|
372
279
|
"kind": "field",
|
|
373
|
-
"name": "
|
|
280
|
+
"name": "enableReactions",
|
|
374
281
|
"type": {
|
|
375
282
|
"text": "boolean"
|
|
376
283
|
},
|
|
377
284
|
"privacy": "public",
|
|
378
285
|
"default": "false",
|
|
379
|
-
"attribute": "
|
|
286
|
+
"attribute": "enable-reactions"
|
|
380
287
|
},
|
|
381
288
|
{
|
|
382
289
|
"kind": "field",
|
|
383
|
-
"name": "
|
|
290
|
+
"name": "debugMode",
|
|
384
291
|
"type": {
|
|
385
292
|
"text": "boolean"
|
|
386
293
|
},
|
|
387
294
|
"privacy": "public",
|
|
388
295
|
"default": "false",
|
|
389
|
-
"attribute": "
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"kind": "field",
|
|
393
|
-
"name": "progress",
|
|
394
|
-
"type": {
|
|
395
|
-
"text": "number | undefined"
|
|
396
|
-
},
|
|
397
|
-
"privacy": "public",
|
|
398
|
-
"attribute": "progress"
|
|
296
|
+
"attribute": "debug-mode"
|
|
399
297
|
}
|
|
400
298
|
],
|
|
401
299
|
"events": [
|
|
402
300
|
{
|
|
403
|
-
"name": "forge-ai-attachment-remove",
|
|
404
301
|
"type": {
|
|
405
|
-
"text": "CustomEvent<
|
|
302
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
406
303
|
},
|
|
407
|
-
"description": "Fired when
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
"attributes": [
|
|
304
|
+
"description": "Fired when copy action is clicked",
|
|
305
|
+
"name": "forge-ai-assistant-response-copy"
|
|
306
|
+
},
|
|
411
307
|
{
|
|
412
|
-
"name": "filename",
|
|
413
308
|
"type": {
|
|
414
|
-
"text": "string"
|
|
309
|
+
"text": "CustomEvent<{ responseId: string }>"
|
|
415
310
|
},
|
|
416
|
-
"
|
|
417
|
-
"
|
|
311
|
+
"description": "Fired when refresh action is clicked",
|
|
312
|
+
"name": "forge-ai-assistant-response-refresh"
|
|
418
313
|
},
|
|
419
314
|
{
|
|
420
|
-
"name": "size",
|
|
421
315
|
"type": {
|
|
422
|
-
"text": "
|
|
316
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
423
317
|
},
|
|
424
|
-
"
|
|
425
|
-
"
|
|
318
|
+
"description": "Fired when thumbs up is clicked",
|
|
319
|
+
"name": "forge-ai-assistant-response-thumbs-up"
|
|
426
320
|
},
|
|
427
321
|
{
|
|
428
|
-
"name": "removable",
|
|
429
322
|
"type": {
|
|
430
|
-
"text": "
|
|
323
|
+
"text": "CustomEvent<ForgeAiAssistantResponseFeedbackEventData>"
|
|
431
324
|
},
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
}
|
|
325
|
+
"description": "Fired when thumbs down is clicked",
|
|
326
|
+
"name": "forge-ai-assistant-response-thumbs-down"
|
|
327
|
+
}
|
|
328
|
+
],
|
|
329
|
+
"attributes": [
|
|
435
330
|
{
|
|
436
|
-
"name": "
|
|
331
|
+
"name": "enable-reactions",
|
|
437
332
|
"type": {
|
|
438
333
|
"text": "boolean"
|
|
439
334
|
},
|
|
440
335
|
"default": "false",
|
|
441
|
-
"fieldName": "
|
|
336
|
+
"fieldName": "enableReactions"
|
|
442
337
|
},
|
|
443
338
|
{
|
|
444
|
-
"name": "
|
|
339
|
+
"name": "debug-mode",
|
|
445
340
|
"type": {
|
|
446
|
-
"text": "
|
|
341
|
+
"text": "boolean"
|
|
447
342
|
},
|
|
448
|
-
"
|
|
343
|
+
"default": "false",
|
|
344
|
+
"fieldName": "debugMode"
|
|
449
345
|
}
|
|
450
346
|
],
|
|
451
347
|
"superclass": {
|
|
452
348
|
"name": "LitElement",
|
|
453
349
|
"package": "lit"
|
|
454
350
|
},
|
|
455
|
-
"tagName": "forge-ai-
|
|
351
|
+
"tagName": "forge-ai-assistant-response",
|
|
456
352
|
"customElement": true,
|
|
457
|
-
"summary": "
|
|
353
|
+
"summary": "Renders a complete assistant response with interleaved text chunks and tool calls."
|
|
458
354
|
}
|
|
459
355
|
],
|
|
460
356
|
"exports": [
|
|
461
357
|
{
|
|
462
358
|
"kind": "js",
|
|
463
|
-
"name": "
|
|
359
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
464
360
|
"declaration": {
|
|
465
|
-
"name": "
|
|
466
|
-
"module": "src/lib/ai-
|
|
361
|
+
"name": "AiAssistantResponseComponentTagName",
|
|
362
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
467
363
|
}
|
|
468
364
|
},
|
|
469
365
|
{
|
|
470
366
|
"kind": "js",
|
|
471
|
-
"name": "
|
|
367
|
+
"name": "AiAssistantResponseComponent",
|
|
472
368
|
"declaration": {
|
|
473
|
-
"name": "
|
|
474
|
-
"module": "src/lib/ai-
|
|
369
|
+
"name": "AiAssistantResponseComponent",
|
|
370
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
475
371
|
}
|
|
476
372
|
},
|
|
477
373
|
{
|
|
478
374
|
"kind": "custom-element-definition",
|
|
479
375
|
"declaration": {
|
|
480
|
-
"name": "
|
|
481
|
-
"module": "src/lib/ai-
|
|
376
|
+
"name": "AiAssistantResponseComponent",
|
|
377
|
+
"module": "src/lib/ai-assistant-response/ai-assistant-response.ts"
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"kind": "javascript-module",
|
|
384
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
385
|
+
"declarations": [
|
|
386
|
+
{
|
|
387
|
+
"kind": "variable",
|
|
388
|
+
"name": "AiArtifactComponentTagName",
|
|
389
|
+
"type": {
|
|
390
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
391
|
+
},
|
|
392
|
+
"default": "'forge-ai-artifact'"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"kind": "class",
|
|
396
|
+
"description": "",
|
|
397
|
+
"name": "AiArtifactComponent",
|
|
398
|
+
"cssProperties": [
|
|
399
|
+
{
|
|
400
|
+
"description": "Surface color override for the toolbar (defaults to transparent)",
|
|
401
|
+
"name": "--forge-theme-surface"
|
|
402
|
+
}
|
|
403
|
+
],
|
|
404
|
+
"slots": [
|
|
405
|
+
{
|
|
406
|
+
"description": "Content for the start (left) side of the toolbar, typically used for titles or headings",
|
|
407
|
+
"name": "start"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"description": "Action buttons for the end (right) side of the toolbar",
|
|
411
|
+
"name": "actions"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"description": "Main content area below the toolbar",
|
|
415
|
+
"name": ""
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"members": [],
|
|
419
|
+
"superclass": {
|
|
420
|
+
"name": "LitElement",
|
|
421
|
+
"package": "lit"
|
|
422
|
+
},
|
|
423
|
+
"tagName": "forge-ai-artifact",
|
|
424
|
+
"customElement": true
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"exports": [
|
|
428
|
+
{
|
|
429
|
+
"kind": "js",
|
|
430
|
+
"name": "AiArtifactComponentTagName",
|
|
431
|
+
"declaration": {
|
|
432
|
+
"name": "AiArtifactComponentTagName",
|
|
433
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"kind": "js",
|
|
438
|
+
"name": "AiArtifactComponent",
|
|
439
|
+
"declaration": {
|
|
440
|
+
"name": "AiArtifactComponent",
|
|
441
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"kind": "custom-element-definition",
|
|
446
|
+
"declaration": {
|
|
447
|
+
"name": "AiArtifactComponent",
|
|
448
|
+
"module": "src/lib/ai-artifact/ai-artifact.ts"
|
|
482
449
|
}
|
|
483
450
|
}
|
|
484
451
|
]
|
|
@@ -566,137 +533,170 @@
|
|
|
566
533
|
},
|
|
567
534
|
{
|
|
568
535
|
"kind": "javascript-module",
|
|
569
|
-
"path": "src/lib/ai-
|
|
536
|
+
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
570
537
|
"declarations": [
|
|
571
538
|
{
|
|
572
539
|
"kind": "variable",
|
|
573
|
-
"name": "
|
|
540
|
+
"name": "AiAttachmentComponentTagName",
|
|
574
541
|
"type": {
|
|
575
542
|
"text": "keyof HTMLElementTagNameMap"
|
|
576
543
|
},
|
|
577
|
-
"default": "'forge-ai-
|
|
544
|
+
"default": "'forge-ai-attachment'"
|
|
578
545
|
},
|
|
579
546
|
{
|
|
580
547
|
"kind": "class",
|
|
581
548
|
"description": "",
|
|
582
|
-
"name": "
|
|
549
|
+
"name": "AiAttachmentComponent",
|
|
550
|
+
"cssProperties": [
|
|
551
|
+
{
|
|
552
|
+
"description": "Background color of the attachment",
|
|
553
|
+
"name": "--forge-ai-attachment-background"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"description": "Border color of the attachment",
|
|
557
|
+
"name": "--forge-ai-attachment-border-color"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"description": "Padding inside the attachment",
|
|
561
|
+
"name": "--forge-ai-attachment-padding"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"description": "Gap between elements",
|
|
565
|
+
"name": "--forge-ai-attachment-gap"
|
|
566
|
+
}
|
|
567
|
+
],
|
|
583
568
|
"members": [
|
|
584
569
|
{
|
|
585
570
|
"kind": "field",
|
|
586
|
-
"name": "
|
|
571
|
+
"name": "filename",
|
|
587
572
|
"type": {
|
|
588
|
-
"text": "
|
|
573
|
+
"text": "string"
|
|
589
574
|
},
|
|
590
|
-
"privacy": "public"
|
|
575
|
+
"privacy": "public",
|
|
576
|
+
"default": "''",
|
|
577
|
+
"attribute": "filename"
|
|
591
578
|
},
|
|
592
579
|
{
|
|
593
580
|
"kind": "field",
|
|
594
|
-
"name": "
|
|
581
|
+
"name": "size",
|
|
595
582
|
"type": {
|
|
596
|
-
"text": "
|
|
583
|
+
"text": "number"
|
|
597
584
|
},
|
|
598
|
-
"privacy": "public"
|
|
585
|
+
"privacy": "public",
|
|
586
|
+
"default": "0",
|
|
587
|
+
"attribute": "size"
|
|
599
588
|
},
|
|
600
589
|
{
|
|
601
590
|
"kind": "field",
|
|
602
|
-
"name": "
|
|
591
|
+
"name": "removable",
|
|
603
592
|
"type": {
|
|
604
593
|
"text": "boolean"
|
|
605
594
|
},
|
|
606
595
|
"privacy": "public",
|
|
607
596
|
"default": "false",
|
|
608
|
-
"attribute": "
|
|
597
|
+
"attribute": "removable"
|
|
609
598
|
},
|
|
610
599
|
{
|
|
611
600
|
"kind": "field",
|
|
612
|
-
"name": "
|
|
601
|
+
"name": "uploading",
|
|
613
602
|
"type": {
|
|
614
603
|
"text": "boolean"
|
|
615
604
|
},
|
|
616
605
|
"privacy": "public",
|
|
617
606
|
"default": "false",
|
|
618
|
-
"attribute": "
|
|
607
|
+
"attribute": "uploading"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"kind": "field",
|
|
611
|
+
"name": "progress",
|
|
612
|
+
"type": {
|
|
613
|
+
"text": "number | undefined"
|
|
614
|
+
},
|
|
615
|
+
"privacy": "public",
|
|
616
|
+
"attribute": "progress"
|
|
619
617
|
}
|
|
620
618
|
],
|
|
621
619
|
"events": [
|
|
622
620
|
{
|
|
621
|
+
"name": "forge-ai-attachment-remove",
|
|
623
622
|
"type": {
|
|
624
|
-
"text": "CustomEvent<
|
|
623
|
+
"text": "CustomEvent<ForgeAiAttachmentRemoveEventData>"
|
|
625
624
|
},
|
|
626
|
-
"description": "Fired when
|
|
627
|
-
|
|
628
|
-
|
|
625
|
+
"description": "Fired when the remove button is clicked"
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"attributes": [
|
|
629
629
|
{
|
|
630
|
+
"name": "filename",
|
|
630
631
|
"type": {
|
|
631
|
-
"text": "
|
|
632
|
+
"text": "string"
|
|
632
633
|
},
|
|
633
|
-
"
|
|
634
|
-
"
|
|
634
|
+
"default": "''",
|
|
635
|
+
"fieldName": "filename"
|
|
635
636
|
},
|
|
636
637
|
{
|
|
638
|
+
"name": "size",
|
|
637
639
|
"type": {
|
|
638
|
-
"text": "
|
|
640
|
+
"text": "number"
|
|
639
641
|
},
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
+
"default": "0",
|
|
643
|
+
"fieldName": "size"
|
|
642
644
|
},
|
|
643
645
|
{
|
|
646
|
+
"name": "removable",
|
|
644
647
|
"type": {
|
|
645
|
-
"text": "
|
|
648
|
+
"text": "boolean"
|
|
646
649
|
},
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
}
|
|
650
|
-
],
|
|
651
|
-
"attributes": [
|
|
650
|
+
"default": "false",
|
|
651
|
+
"fieldName": "removable"
|
|
652
|
+
},
|
|
652
653
|
{
|
|
653
|
-
"name": "
|
|
654
|
+
"name": "uploading",
|
|
654
655
|
"type": {
|
|
655
656
|
"text": "boolean"
|
|
656
657
|
},
|
|
657
658
|
"default": "false",
|
|
658
|
-
"fieldName": "
|
|
659
|
+
"fieldName": "uploading"
|
|
659
660
|
},
|
|
660
661
|
{
|
|
661
|
-
"name": "
|
|
662
|
+
"name": "progress",
|
|
662
663
|
"type": {
|
|
663
|
-
"text": "
|
|
664
|
+
"text": "number | undefined"
|
|
664
665
|
},
|
|
665
|
-
"
|
|
666
|
-
"fieldName": "debugMode"
|
|
666
|
+
"fieldName": "progress"
|
|
667
667
|
}
|
|
668
668
|
],
|
|
669
669
|
"superclass": {
|
|
670
670
|
"name": "LitElement",
|
|
671
671
|
"package": "lit"
|
|
672
672
|
},
|
|
673
|
-
"tagName": "forge-ai-
|
|
673
|
+
"tagName": "forge-ai-attachment",
|
|
674
674
|
"customElement": true,
|
|
675
|
-
"summary": "
|
|
675
|
+
"summary": "Displays file attachment information with removal capability."
|
|
676
676
|
}
|
|
677
677
|
],
|
|
678
678
|
"exports": [
|
|
679
679
|
{
|
|
680
680
|
"kind": "js",
|
|
681
|
-
"name": "
|
|
681
|
+
"name": "AiAttachmentComponentTagName",
|
|
682
682
|
"declaration": {
|
|
683
|
-
"name": "
|
|
684
|
-
"module": "src/lib/ai-
|
|
683
|
+
"name": "AiAttachmentComponentTagName",
|
|
684
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
685
685
|
}
|
|
686
686
|
},
|
|
687
687
|
{
|
|
688
688
|
"kind": "js",
|
|
689
|
-
"name": "
|
|
689
|
+
"name": "AiAttachmentComponent",
|
|
690
690
|
"declaration": {
|
|
691
|
-
"name": "
|
|
692
|
-
"module": "src/lib/ai-
|
|
691
|
+
"name": "AiAttachmentComponent",
|
|
692
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
693
693
|
}
|
|
694
694
|
},
|
|
695
695
|
{
|
|
696
696
|
"kind": "custom-element-definition",
|
|
697
697
|
"declaration": {
|
|
698
|
-
"name": "
|
|
699
|
-
"module": "src/lib/ai-
|
|
698
|
+
"name": "AiAttachmentComponent",
|
|
699
|
+
"module": "src/lib/ai-attachment/ai-attachment.ts"
|
|
700
700
|
}
|
|
701
701
|
}
|
|
702
702
|
]
|
|
@@ -1097,6 +1097,10 @@
|
|
|
1097
1097
|
{
|
|
1098
1098
|
"description": "Slot for AI prompt component",
|
|
1099
1099
|
"name": "prompt"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"description": "Slot for confirmation prompt overlay",
|
|
1103
|
+
"name": "confirmation"
|
|
1100
1104
|
}
|
|
1101
1105
|
],
|
|
1102
1106
|
"members": [
|
|
@@ -3336,6 +3340,11 @@
|
|
|
3336
3340
|
"customElement": true,
|
|
3337
3341
|
"summary": "A complete, self-contained AI chatbot component that implements the AG-UI protocol using an adapter pattern."
|
|
3338
3342
|
},
|
|
3343
|
+
{
|
|
3344
|
+
"kind": "variable",
|
|
3345
|
+
"name": "args",
|
|
3346
|
+
"default": "event.args as unknown"
|
|
3347
|
+
},
|
|
3339
3348
|
{
|
|
3340
3349
|
"kind": "variable",
|
|
3341
3350
|
"name": "event"
|
|
@@ -4303,6 +4312,30 @@
|
|
|
4303
4312
|
}
|
|
4304
4313
|
]
|
|
4305
4314
|
},
|
|
4315
|
+
{
|
|
4316
|
+
"kind": "method",
|
|
4317
|
+
"name": "updateMessageContent",
|
|
4318
|
+
"privacy": "public",
|
|
4319
|
+
"return": {
|
|
4320
|
+
"type": {
|
|
4321
|
+
"text": "void"
|
|
4322
|
+
}
|
|
4323
|
+
},
|
|
4324
|
+
"parameters": [
|
|
4325
|
+
{
|
|
4326
|
+
"name": "id",
|
|
4327
|
+
"type": {
|
|
4328
|
+
"text": "string"
|
|
4329
|
+
}
|
|
4330
|
+
},
|
|
4331
|
+
{
|
|
4332
|
+
"name": "content",
|
|
4333
|
+
"type": {
|
|
4334
|
+
"text": "string"
|
|
4335
|
+
}
|
|
4336
|
+
}
|
|
4337
|
+
]
|
|
4338
|
+
},
|
|
4306
4339
|
{
|
|
4307
4340
|
"kind": "method",
|
|
4308
4341
|
"name": "removeMessageItem",
|
|
@@ -7938,6 +7971,89 @@
|
|
|
7938
7971
|
}
|
|
7939
7972
|
]
|
|
7940
7973
|
},
|
|
7974
|
+
{
|
|
7975
|
+
"kind": "javascript-module",
|
|
7976
|
+
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
7977
|
+
"declarations": [
|
|
7978
|
+
{
|
|
7979
|
+
"kind": "variable",
|
|
7980
|
+
"name": "AiSpinnerComponentTagName",
|
|
7981
|
+
"type": {
|
|
7982
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7983
|
+
},
|
|
7984
|
+
"default": "'forge-ai-spinner'"
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
"kind": "class",
|
|
7988
|
+
"description": "",
|
|
7989
|
+
"name": "AiSpinnerComponent",
|
|
7990
|
+
"cssProperties": [
|
|
7991
|
+
{
|
|
7992
|
+
"description": "Color of the spinner indicator",
|
|
7993
|
+
"name": "--forge-ai-spinner-color"
|
|
7994
|
+
},
|
|
7995
|
+
{
|
|
7996
|
+
"description": "Color of the spinner track",
|
|
7997
|
+
"name": "--forge-ai-spinner-track-color"
|
|
7998
|
+
}
|
|
7999
|
+
],
|
|
8000
|
+
"members": [
|
|
8001
|
+
{
|
|
8002
|
+
"kind": "field",
|
|
8003
|
+
"name": "size",
|
|
8004
|
+
"type": {
|
|
8005
|
+
"text": "SpinnerSize"
|
|
8006
|
+
},
|
|
8007
|
+
"privacy": "public",
|
|
8008
|
+
"default": "'medium'",
|
|
8009
|
+
"attribute": "size"
|
|
8010
|
+
}
|
|
8011
|
+
],
|
|
8012
|
+
"attributes": [
|
|
8013
|
+
{
|
|
8014
|
+
"name": "size",
|
|
8015
|
+
"type": {
|
|
8016
|
+
"text": "SpinnerSize"
|
|
8017
|
+
},
|
|
8018
|
+
"default": "'medium'",
|
|
8019
|
+
"fieldName": "size"
|
|
8020
|
+
}
|
|
8021
|
+
],
|
|
8022
|
+
"superclass": {
|
|
8023
|
+
"name": "LitElement",
|
|
8024
|
+
"package": "lit"
|
|
8025
|
+
},
|
|
8026
|
+
"tagName": "forge-ai-spinner",
|
|
8027
|
+
"customElement": true,
|
|
8028
|
+
"summary": "Indeterminate circular progress indicator."
|
|
8029
|
+
}
|
|
8030
|
+
],
|
|
8031
|
+
"exports": [
|
|
8032
|
+
{
|
|
8033
|
+
"kind": "js",
|
|
8034
|
+
"name": "AiSpinnerComponentTagName",
|
|
8035
|
+
"declaration": {
|
|
8036
|
+
"name": "AiSpinnerComponentTagName",
|
|
8037
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8038
|
+
}
|
|
8039
|
+
},
|
|
8040
|
+
{
|
|
8041
|
+
"kind": "js",
|
|
8042
|
+
"name": "AiSpinnerComponent",
|
|
8043
|
+
"declaration": {
|
|
8044
|
+
"name": "AiSpinnerComponent",
|
|
8045
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8046
|
+
}
|
|
8047
|
+
},
|
|
8048
|
+
{
|
|
8049
|
+
"kind": "custom-element-definition",
|
|
8050
|
+
"declaration": {
|
|
8051
|
+
"name": "AiSpinnerComponent",
|
|
8052
|
+
"module": "src/lib/ai-spinner/ai-spinner.ts"
|
|
8053
|
+
}
|
|
8054
|
+
}
|
|
8055
|
+
]
|
|
8056
|
+
},
|
|
7941
8057
|
{
|
|
7942
8058
|
"kind": "javascript-module",
|
|
7943
8059
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -8101,83 +8217,109 @@
|
|
|
8101
8217
|
},
|
|
8102
8218
|
{
|
|
8103
8219
|
"kind": "javascript-module",
|
|
8104
|
-
"path": "src/lib/ai-
|
|
8220
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
8105
8221
|
"declarations": [
|
|
8106
8222
|
{
|
|
8107
8223
|
"kind": "variable",
|
|
8108
|
-
"name": "
|
|
8224
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8109
8225
|
"type": {
|
|
8110
8226
|
"text": "keyof HTMLElementTagNameMap"
|
|
8111
8227
|
},
|
|
8112
|
-
"default": "'forge-ai-
|
|
8228
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
8113
8229
|
},
|
|
8114
8230
|
{
|
|
8115
8231
|
"kind": "class",
|
|
8116
8232
|
"description": "",
|
|
8117
|
-
"name": "
|
|
8118
|
-
"
|
|
8233
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8234
|
+
"members": [
|
|
8119
8235
|
{
|
|
8120
|
-
"
|
|
8121
|
-
"name": "
|
|
8236
|
+
"kind": "field",
|
|
8237
|
+
"name": "showText",
|
|
8238
|
+
"type": {
|
|
8239
|
+
"text": "boolean"
|
|
8240
|
+
},
|
|
8241
|
+
"privacy": "public",
|
|
8242
|
+
"default": "false",
|
|
8243
|
+
"attribute": "show-text"
|
|
8122
8244
|
},
|
|
8123
8245
|
{
|
|
8124
|
-
"
|
|
8125
|
-
"name": "
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8246
|
+
"kind": "field",
|
|
8247
|
+
"name": "initialDelay",
|
|
8248
|
+
"type": {
|
|
8249
|
+
"text": "number"
|
|
8250
|
+
},
|
|
8251
|
+
"privacy": "public",
|
|
8252
|
+
"default": "0",
|
|
8253
|
+
"attribute": "initial-delay"
|
|
8254
|
+
},
|
|
8129
8255
|
{
|
|
8130
8256
|
"kind": "field",
|
|
8131
|
-
"name": "
|
|
8257
|
+
"name": "cycleInterval",
|
|
8132
8258
|
"type": {
|
|
8133
|
-
"text": "
|
|
8259
|
+
"text": "number"
|
|
8134
8260
|
},
|
|
8135
8261
|
"privacy": "public",
|
|
8136
|
-
"default": "
|
|
8137
|
-
"attribute": "
|
|
8262
|
+
"default": "5000",
|
|
8263
|
+
"attribute": "cycle-interval"
|
|
8138
8264
|
}
|
|
8139
8265
|
],
|
|
8140
8266
|
"attributes": [
|
|
8141
8267
|
{
|
|
8142
|
-
"name": "
|
|
8268
|
+
"name": "show-text",
|
|
8143
8269
|
"type": {
|
|
8144
|
-
"text": "
|
|
8270
|
+
"text": "boolean"
|
|
8145
8271
|
},
|
|
8146
|
-
"default": "
|
|
8147
|
-
"fieldName": "
|
|
8272
|
+
"default": "false",
|
|
8273
|
+
"fieldName": "showText"
|
|
8274
|
+
},
|
|
8275
|
+
{
|
|
8276
|
+
"name": "initial-delay",
|
|
8277
|
+
"type": {
|
|
8278
|
+
"text": "number"
|
|
8279
|
+
},
|
|
8280
|
+
"default": "0",
|
|
8281
|
+
"fieldName": "initialDelay"
|
|
8282
|
+
},
|
|
8283
|
+
{
|
|
8284
|
+
"name": "cycle-interval",
|
|
8285
|
+
"type": {
|
|
8286
|
+
"text": "number"
|
|
8287
|
+
},
|
|
8288
|
+
"default": "5000",
|
|
8289
|
+
"fieldName": "cycleInterval"
|
|
8148
8290
|
}
|
|
8149
8291
|
],
|
|
8150
8292
|
"superclass": {
|
|
8151
8293
|
"name": "LitElement",
|
|
8152
8294
|
"package": "lit"
|
|
8153
8295
|
},
|
|
8154
|
-
"tagName": "forge-ai-
|
|
8296
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
8155
8297
|
"customElement": true,
|
|
8156
|
-
"summary": "
|
|
8298
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8157
8299
|
}
|
|
8158
8300
|
],
|
|
8159
8301
|
"exports": [
|
|
8160
8302
|
{
|
|
8161
8303
|
"kind": "js",
|
|
8162
|
-
"name": "
|
|
8304
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8163
8305
|
"declaration": {
|
|
8164
|
-
"name": "
|
|
8165
|
-
"module": "src/lib/ai-
|
|
8306
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8307
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8166
8308
|
}
|
|
8167
8309
|
},
|
|
8168
8310
|
{
|
|
8169
8311
|
"kind": "js",
|
|
8170
|
-
"name": "
|
|
8312
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8171
8313
|
"declaration": {
|
|
8172
|
-
"name": "
|
|
8173
|
-
"module": "src/lib/ai-
|
|
8314
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8315
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8174
8316
|
}
|
|
8175
8317
|
},
|
|
8176
8318
|
{
|
|
8177
8319
|
"kind": "custom-element-definition",
|
|
8178
8320
|
"declaration": {
|
|
8179
|
-
"name": "
|
|
8180
|
-
"module": "src/lib/ai-
|
|
8321
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8322
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8181
8323
|
}
|
|
8182
8324
|
}
|
|
8183
8325
|
]
|
|
@@ -8396,130 +8538,97 @@
|
|
|
8396
8538
|
},
|
|
8397
8539
|
{
|
|
8398
8540
|
"kind": "javascript-module",
|
|
8399
|
-
"path": "src/lib/ai-
|
|
8541
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8400
8542
|
"declarations": [
|
|
8401
8543
|
{
|
|
8402
8544
|
"kind": "variable",
|
|
8403
|
-
"name": "
|
|
8545
|
+
"name": "AiUserMessageComponentTagName",
|
|
8404
8546
|
"type": {
|
|
8405
8547
|
"text": "keyof HTMLElementTagNameMap"
|
|
8406
8548
|
},
|
|
8407
|
-
"default": "'forge-ai-
|
|
8549
|
+
"default": "'forge-ai-user-message'"
|
|
8408
8550
|
},
|
|
8409
8551
|
{
|
|
8410
8552
|
"kind": "class",
|
|
8411
8553
|
"description": "",
|
|
8412
|
-
"name": "
|
|
8554
|
+
"name": "AiUserMessageComponent",
|
|
8413
8555
|
"members": [
|
|
8414
8556
|
{
|
|
8415
8557
|
"kind": "field",
|
|
8416
|
-
"name": "
|
|
8558
|
+
"name": "timestamp",
|
|
8417
8559
|
"type": {
|
|
8418
|
-
"text": "
|
|
8560
|
+
"text": "number | undefined"
|
|
8419
8561
|
},
|
|
8420
|
-
"privacy": "public"
|
|
8421
|
-
"default": "false",
|
|
8422
|
-
"attribute": "show-text"
|
|
8562
|
+
"privacy": "public"
|
|
8423
8563
|
},
|
|
8424
8564
|
{
|
|
8425
8565
|
"kind": "field",
|
|
8426
|
-
"name": "
|
|
8566
|
+
"name": "messageId",
|
|
8427
8567
|
"type": {
|
|
8428
|
-
"text": "
|
|
8568
|
+
"text": "string | undefined"
|
|
8429
8569
|
},
|
|
8430
8570
|
"privacy": "public",
|
|
8431
|
-
"
|
|
8432
|
-
"attribute": "initial-delay"
|
|
8571
|
+
"attribute": "message-id"
|
|
8433
8572
|
},
|
|
8434
8573
|
{
|
|
8435
8574
|
"kind": "field",
|
|
8436
|
-
"name": "
|
|
8575
|
+
"name": "streaming",
|
|
8437
8576
|
"type": {
|
|
8438
|
-
"text": "
|
|
8577
|
+
"text": "boolean"
|
|
8439
8578
|
},
|
|
8440
8579
|
"privacy": "public",
|
|
8441
|
-
"default": "
|
|
8442
|
-
"attribute": "
|
|
8580
|
+
"default": "false",
|
|
8581
|
+
"attribute": "streaming"
|
|
8582
|
+
},
|
|
8583
|
+
{
|
|
8584
|
+
"kind": "field",
|
|
8585
|
+
"name": "content",
|
|
8586
|
+
"type": {
|
|
8587
|
+
"text": "string | undefined"
|
|
8588
|
+
},
|
|
8589
|
+
"privacy": "public"
|
|
8443
8590
|
}
|
|
8444
8591
|
],
|
|
8445
|
-
"
|
|
8592
|
+
"events": [
|
|
8446
8593
|
{
|
|
8447
|
-
"name": "
|
|
8594
|
+
"name": "forge-ai-user-message-copy",
|
|
8448
8595
|
"type": {
|
|
8449
|
-
"text": "
|
|
8596
|
+
"text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
|
|
8450
8597
|
},
|
|
8451
|
-
"
|
|
8452
|
-
"fieldName": "showText"
|
|
8598
|
+
"description": "Fired when user clicks copy button"
|
|
8453
8599
|
},
|
|
8454
8600
|
{
|
|
8455
|
-
"name": "
|
|
8601
|
+
"name": "forge-ai-user-message-resend",
|
|
8456
8602
|
"type": {
|
|
8457
|
-
"text": "
|
|
8603
|
+
"text": "CustomEvent<ForgeAiUserMessageResendEventData>"
|
|
8458
8604
|
},
|
|
8459
|
-
"
|
|
8460
|
-
"fieldName": "initialDelay"
|
|
8605
|
+
"description": "Fired when user clicks resend button"
|
|
8461
8606
|
},
|
|
8462
8607
|
{
|
|
8463
|
-
"name": "
|
|
8608
|
+
"name": "forge-ai-user-message-edit",
|
|
8464
8609
|
"type": {
|
|
8465
|
-
"text": "
|
|
8610
|
+
"text": "CustomEvent<ForgeAiUserMessageEditEventData>"
|
|
8466
8611
|
},
|
|
8467
|
-
"
|
|
8468
|
-
|
|
8612
|
+
"description": "Fired when user saves edited message"
|
|
8613
|
+
}
|
|
8614
|
+
],
|
|
8615
|
+
"attributes": [
|
|
8616
|
+
{
|
|
8617
|
+
"name": "message-id",
|
|
8618
|
+
"type": {
|
|
8619
|
+
"text": "string | undefined"
|
|
8620
|
+
},
|
|
8621
|
+
"fieldName": "messageId"
|
|
8622
|
+
},
|
|
8623
|
+
{
|
|
8624
|
+
"name": "streaming",
|
|
8625
|
+
"type": {
|
|
8626
|
+
"text": "boolean"
|
|
8627
|
+
},
|
|
8628
|
+
"default": "false",
|
|
8629
|
+
"fieldName": "streaming"
|
|
8469
8630
|
}
|
|
8470
8631
|
],
|
|
8471
|
-
"superclass": {
|
|
8472
|
-
"name": "LitElement",
|
|
8473
|
-
"package": "lit"
|
|
8474
|
-
},
|
|
8475
|
-
"tagName": "forge-ai-thinking-indicator",
|
|
8476
|
-
"customElement": true,
|
|
8477
|
-
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8478
|
-
}
|
|
8479
|
-
],
|
|
8480
|
-
"exports": [
|
|
8481
|
-
{
|
|
8482
|
-
"kind": "js",
|
|
8483
|
-
"name": "AiThinkingIndicatorComponentTagName",
|
|
8484
|
-
"declaration": {
|
|
8485
|
-
"name": "AiThinkingIndicatorComponentTagName",
|
|
8486
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8487
|
-
}
|
|
8488
|
-
},
|
|
8489
|
-
{
|
|
8490
|
-
"kind": "js",
|
|
8491
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8492
|
-
"declaration": {
|
|
8493
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8494
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8495
|
-
}
|
|
8496
|
-
},
|
|
8497
|
-
{
|
|
8498
|
-
"kind": "custom-element-definition",
|
|
8499
|
-
"declaration": {
|
|
8500
|
-
"name": "AiThinkingIndicatorComponent",
|
|
8501
|
-
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8502
|
-
}
|
|
8503
|
-
}
|
|
8504
|
-
]
|
|
8505
|
-
},
|
|
8506
|
-
{
|
|
8507
|
-
"kind": "javascript-module",
|
|
8508
|
-
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
8509
|
-
"declarations": [
|
|
8510
|
-
{
|
|
8511
|
-
"kind": "variable",
|
|
8512
|
-
"name": "AiUserMessageComponentTagName",
|
|
8513
|
-
"type": {
|
|
8514
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8515
|
-
},
|
|
8516
|
-
"default": "'forge-ai-user-message'"
|
|
8517
|
-
},
|
|
8518
|
-
{
|
|
8519
|
-
"kind": "class",
|
|
8520
|
-
"description": "",
|
|
8521
|
-
"name": "AiUserMessageComponent",
|
|
8522
|
-
"members": [],
|
|
8523
8632
|
"superclass": {
|
|
8524
8633
|
"name": "LitElement",
|
|
8525
8634
|
"package": "lit"
|
|
@@ -9308,39 +9417,101 @@
|
|
|
9308
9417
|
"fieldName": "offset"
|
|
9309
9418
|
},
|
|
9310
9419
|
{
|
|
9311
|
-
"name": "dismiss-mode",
|
|
9420
|
+
"name": "dismiss-mode",
|
|
9421
|
+
"type": {
|
|
9422
|
+
"text": "'auto' | 'manual'"
|
|
9423
|
+
},
|
|
9424
|
+
"default": "'auto'",
|
|
9425
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9426
|
+
"fieldName": "dismissMode"
|
|
9427
|
+
}
|
|
9428
|
+
],
|
|
9429
|
+
"superclass": {
|
|
9430
|
+
"name": "LitElement",
|
|
9431
|
+
"package": "lit"
|
|
9432
|
+
},
|
|
9433
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9434
|
+
"tagName": "forge-ai-overlay",
|
|
9435
|
+
"customElement": true
|
|
9436
|
+
}
|
|
9437
|
+
],
|
|
9438
|
+
"exports": [
|
|
9439
|
+
{
|
|
9440
|
+
"kind": "js",
|
|
9441
|
+
"name": "ForgeAiOverlayComponent",
|
|
9442
|
+
"declaration": {
|
|
9443
|
+
"name": "ForgeAiOverlayComponent",
|
|
9444
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9445
|
+
}
|
|
9446
|
+
},
|
|
9447
|
+
{
|
|
9448
|
+
"kind": "custom-element-definition",
|
|
9449
|
+
"name": "forge-ai-overlay",
|
|
9450
|
+
"declaration": {
|
|
9451
|
+
"name": "ForgeAiOverlayComponent",
|
|
9452
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9453
|
+
}
|
|
9454
|
+
}
|
|
9455
|
+
]
|
|
9456
|
+
},
|
|
9457
|
+
{
|
|
9458
|
+
"kind": "javascript-module",
|
|
9459
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9460
|
+
"declarations": [
|
|
9461
|
+
{
|
|
9462
|
+
"kind": "variable",
|
|
9463
|
+
"name": "displayDataTableTool",
|
|
9464
|
+
"type": {
|
|
9465
|
+
"text": "ToolDefinition"
|
|
9466
|
+
},
|
|
9467
|
+
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9468
|
+
}
|
|
9469
|
+
],
|
|
9470
|
+
"exports": [
|
|
9471
|
+
{
|
|
9472
|
+
"kind": "js",
|
|
9473
|
+
"name": "displayDataTableTool",
|
|
9474
|
+
"declaration": {
|
|
9475
|
+
"name": "displayDataTableTool",
|
|
9476
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9477
|
+
}
|
|
9478
|
+
}
|
|
9479
|
+
]
|
|
9480
|
+
},
|
|
9481
|
+
{
|
|
9482
|
+
"kind": "javascript-module",
|
|
9483
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9484
|
+
"declarations": [
|
|
9485
|
+
{
|
|
9486
|
+
"kind": "class",
|
|
9487
|
+
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9488
|
+
"name": "DataTableToolElement",
|
|
9489
|
+
"members": [
|
|
9490
|
+
{
|
|
9491
|
+
"kind": "field",
|
|
9492
|
+
"name": "toolCall",
|
|
9312
9493
|
"type": {
|
|
9313
|
-
"text": "
|
|
9494
|
+
"text": "ToolCall<TableData>"
|
|
9314
9495
|
},
|
|
9315
|
-
"
|
|
9316
|
-
"description": "
|
|
9317
|
-
"fieldName": "dismissMode"
|
|
9496
|
+
"privacy": "public",
|
|
9497
|
+
"description": "Tool call data containing table configuration and data"
|
|
9318
9498
|
}
|
|
9319
9499
|
],
|
|
9320
9500
|
"superclass": {
|
|
9321
9501
|
"name": "LitElement",
|
|
9322
9502
|
"package": "lit"
|
|
9323
9503
|
},
|
|
9324
|
-
"
|
|
9325
|
-
"tagName": "forge-ai-overlay",
|
|
9504
|
+
"tagName": "forge-ai-tool-data-table",
|
|
9326
9505
|
"customElement": true
|
|
9327
9506
|
}
|
|
9328
9507
|
],
|
|
9329
9508
|
"exports": [
|
|
9330
|
-
{
|
|
9331
|
-
"kind": "js",
|
|
9332
|
-
"name": "ForgeAiOverlayComponent",
|
|
9333
|
-
"declaration": {
|
|
9334
|
-
"name": "ForgeAiOverlayComponent",
|
|
9335
|
-
"module": "src/lib/core/overlay/overlay.ts"
|
|
9336
|
-
}
|
|
9337
|
-
},
|
|
9338
9509
|
{
|
|
9339
9510
|
"kind": "custom-element-definition",
|
|
9340
|
-
"name": "forge-ai-
|
|
9511
|
+
"name": "forge-ai-tool-data-table",
|
|
9341
9512
|
"declaration": {
|
|
9342
|
-
"name": "
|
|
9343
|
-
"module": "src/lib/
|
|
9513
|
+
"name": "DataTableToolElement",
|
|
9514
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
9344
9515
|
}
|
|
9345
9516
|
}
|
|
9346
9517
|
]
|
|
@@ -9552,68 +9723,6 @@
|
|
|
9552
9723
|
}
|
|
9553
9724
|
]
|
|
9554
9725
|
},
|
|
9555
|
-
{
|
|
9556
|
-
"kind": "javascript-module",
|
|
9557
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
|
|
9558
|
-
"declarations": [
|
|
9559
|
-
{
|
|
9560
|
-
"kind": "variable",
|
|
9561
|
-
"name": "displayDataTableTool",
|
|
9562
|
-
"type": {
|
|
9563
|
-
"text": "ToolDefinition"
|
|
9564
|
-
},
|
|
9565
|
-
"default": "{ name: 'displayDataTable', displayName: 'Display Data Table', description: 'Display tabular data in a formatted table with headers and rows. Use this tool when you want to present structured data, lists where there are 2 or more columns, statistics, or any information that works well in a table format.', parameters: { type: 'object' as const, properties: { title: { type: 'string', description: 'Table title or caption displayed above the data.' }, headers: { type: 'array', items: { type: 'string' }, description: 'Column names displayed as table headers. Order matches the row data order.' }, maxNumberOfRows: { type: 'number', description: 'Limit total rows shown. Useful for large datasets to prevent overwhelming display.' }, rows: { type: 'array', items: { type: 'array', items: { anyOf: [{ type: 'string' }, { type: 'number' }] } }, description: 'Data rows where each row is an array of values matching header order.' } }, required: ['headers', 'rows'] }, renderer: createToolRenderer({ elementTag: 'forge-ai-tool-data-table' }) }"
|
|
9566
|
-
}
|
|
9567
|
-
],
|
|
9568
|
-
"exports": [
|
|
9569
|
-
{
|
|
9570
|
-
"kind": "js",
|
|
9571
|
-
"name": "displayDataTableTool",
|
|
9572
|
-
"declaration": {
|
|
9573
|
-
"name": "displayDataTableTool",
|
|
9574
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
|
|
9575
|
-
}
|
|
9576
|
-
}
|
|
9577
|
-
]
|
|
9578
|
-
},
|
|
9579
|
-
{
|
|
9580
|
-
"kind": "javascript-module",
|
|
9581
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9582
|
-
"declarations": [
|
|
9583
|
-
{
|
|
9584
|
-
"kind": "class",
|
|
9585
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9586
|
-
"name": "DataTableToolElement",
|
|
9587
|
-
"members": [
|
|
9588
|
-
{
|
|
9589
|
-
"kind": "field",
|
|
9590
|
-
"name": "toolCall",
|
|
9591
|
-
"type": {
|
|
9592
|
-
"text": "ToolCall<TableData>"
|
|
9593
|
-
},
|
|
9594
|
-
"privacy": "public",
|
|
9595
|
-
"description": "Tool call data containing table configuration and data"
|
|
9596
|
-
}
|
|
9597
|
-
],
|
|
9598
|
-
"superclass": {
|
|
9599
|
-
"name": "LitElement",
|
|
9600
|
-
"package": "lit"
|
|
9601
|
-
},
|
|
9602
|
-
"tagName": "forge-ai-tool-data-table",
|
|
9603
|
-
"customElement": true
|
|
9604
|
-
}
|
|
9605
|
-
],
|
|
9606
|
-
"exports": [
|
|
9607
|
-
{
|
|
9608
|
-
"kind": "custom-element-definition",
|
|
9609
|
-
"name": "forge-ai-tool-data-table",
|
|
9610
|
-
"declaration": {
|
|
9611
|
-
"name": "DataTableToolElement",
|
|
9612
|
-
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
9613
|
-
}
|
|
9614
|
-
}
|
|
9615
|
-
]
|
|
9616
|
-
},
|
|
9617
9726
|
{
|
|
9618
9727
|
"kind": "javascript-module",
|
|
9619
9728
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
@@ -9844,6 +9953,46 @@
|
|
|
9844
9953
|
}
|
|
9845
9954
|
]
|
|
9846
9955
|
},
|
|
9956
|
+
{
|
|
9957
|
+
"kind": "javascript-module",
|
|
9958
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
9959
|
+
"declarations": [
|
|
9960
|
+
{
|
|
9961
|
+
"kind": "variable",
|
|
9962
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9963
|
+
"type": {
|
|
9964
|
+
"text": "string"
|
|
9965
|
+
},
|
|
9966
|
+
"default": "'confirmToolCall'"
|
|
9967
|
+
},
|
|
9968
|
+
{
|
|
9969
|
+
"kind": "variable",
|
|
9970
|
+
"name": "confirmActionTool",
|
|
9971
|
+
"type": {
|
|
9972
|
+
"text": "ToolDefinition<ConfirmActionToolArgs>"
|
|
9973
|
+
},
|
|
9974
|
+
"default": "{ name: CONFIRM_TOOL_CALL_NAME, displayName: 'Confirm Action', description: 'Request user confirmation before executing a tool. The user will see a prompt with the action description and can confirm or deny. Use this tool before executing ANY other tools.', parameters: { type: 'object' as const, properties: { action: { type: 'string', description: 'A clear, user-friendly description of the action to be confirmed' } }, required: ['action'] } }"
|
|
9975
|
+
}
|
|
9976
|
+
],
|
|
9977
|
+
"exports": [
|
|
9978
|
+
{
|
|
9979
|
+
"kind": "js",
|
|
9980
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9981
|
+
"declaration": {
|
|
9982
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9983
|
+
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9984
|
+
}
|
|
9985
|
+
},
|
|
9986
|
+
{
|
|
9987
|
+
"kind": "js",
|
|
9988
|
+
"name": "confirmActionTool",
|
|
9989
|
+
"declaration": {
|
|
9990
|
+
"name": "confirmActionTool",
|
|
9991
|
+
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9992
|
+
}
|
|
9993
|
+
}
|
|
9994
|
+
]
|
|
9995
|
+
},
|
|
9847
9996
|
{
|
|
9848
9997
|
"kind": "javascript-module",
|
|
9849
9998
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
@@ -9947,7 +10096,7 @@
|
|
|
9947
10096
|
]
|
|
9948
10097
|
}
|
|
9949
10098
|
],
|
|
9950
|
-
"branchName": "
|
|
10099
|
+
"branchName": "confirm-tool-calls",
|
|
9951
10100
|
"forgeTypes": {
|
|
9952
10101
|
"ForgeAiActionsToolbarActionEventData": {
|
|
9953
10102
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
@@ -9965,10 +10114,6 @@
|
|
|
9965
10114
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9966
10115
|
"lineNumber": 42
|
|
9967
10116
|
},
|
|
9968
|
-
"AiArtifactComponent": {
|
|
9969
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9970
|
-
"lineNumber": 23
|
|
9971
|
-
},
|
|
9972
10117
|
"AgentInfo": {
|
|
9973
10118
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9974
10119
|
"lineNumber": 39
|
|
@@ -9977,18 +10122,6 @@
|
|
|
9977
10122
|
"path": "src/lib/ai-agent-info/ai-agent-info.ts",
|
|
9978
10123
|
"lineNumber": 29
|
|
9979
10124
|
},
|
|
9980
|
-
"ForgeAiAttachmentRemoveEventData": {
|
|
9981
|
-
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9982
|
-
"lineNumber": 19
|
|
9983
|
-
},
|
|
9984
|
-
"AiAttachmentComponent": {
|
|
9985
|
-
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9986
|
-
"lineNumber": 41
|
|
9987
|
-
},
|
|
9988
|
-
"AiButtonComponent": {
|
|
9989
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
9990
|
-
"lineNumber": 22
|
|
9991
|
-
},
|
|
9992
10125
|
"ForgeAiAssistantResponseFeedbackEventData": {
|
|
9993
10126
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9994
10127
|
"lineNumber": 30
|
|
@@ -9997,6 +10130,22 @@
|
|
|
9997
10130
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9998
10131
|
"lineNumber": 47
|
|
9999
10132
|
},
|
|
10133
|
+
"AiArtifactComponent": {
|
|
10134
|
+
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
10135
|
+
"lineNumber": 23
|
|
10136
|
+
},
|
|
10137
|
+
"AiButtonComponent": {
|
|
10138
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
10139
|
+
"lineNumber": 22
|
|
10140
|
+
},
|
|
10141
|
+
"ForgeAiAttachmentRemoveEventData": {
|
|
10142
|
+
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10143
|
+
"lineNumber": 19
|
|
10144
|
+
},
|
|
10145
|
+
"AiAttachmentComponent": {
|
|
10146
|
+
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
10147
|
+
"lineNumber": 41
|
|
10148
|
+
},
|
|
10000
10149
|
"MinimizeIconType": {
|
|
10001
10150
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
10002
10151
|
"lineNumber": 35
|
|
@@ -10015,7 +10164,7 @@
|
|
|
10015
10164
|
},
|
|
10016
10165
|
"AiChatInterfaceComponent": {
|
|
10017
10166
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
10018
|
-
"lineNumber":
|
|
10167
|
+
"lineNumber": 26
|
|
10019
10168
|
},
|
|
10020
10169
|
"AgUiAdapterConfig": {
|
|
10021
10170
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
@@ -10031,15 +10180,15 @@
|
|
|
10031
10180
|
},
|
|
10032
10181
|
"MessageStartEvent": {
|
|
10033
10182
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10034
|
-
"lineNumber":
|
|
10183
|
+
"lineNumber": 81
|
|
10035
10184
|
},
|
|
10036
10185
|
"MessageDeltaEvent": {
|
|
10037
10186
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10038
|
-
"lineNumber":
|
|
10187
|
+
"lineNumber": 85
|
|
10039
10188
|
},
|
|
10040
10189
|
"MessageEndEvent": {
|
|
10041
10190
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10042
|
-
"lineNumber":
|
|
10191
|
+
"lineNumber": 90
|
|
10043
10192
|
},
|
|
10044
10193
|
"ToolCallEvent": {
|
|
10045
10194
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10047,19 +10196,19 @@
|
|
|
10047
10196
|
},
|
|
10048
10197
|
"ToolCallStartEvent": {
|
|
10049
10198
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10050
|
-
"lineNumber":
|
|
10199
|
+
"lineNumber": 94
|
|
10051
10200
|
},
|
|
10052
10201
|
"ToolCallArgsEvent": {
|
|
10053
10202
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10054
|
-
"lineNumber":
|
|
10203
|
+
"lineNumber": 100
|
|
10055
10204
|
},
|
|
10056
10205
|
"ToolCallEndEvent": {
|
|
10057
10206
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10058
|
-
"lineNumber":
|
|
10207
|
+
"lineNumber": 108
|
|
10059
10208
|
},
|
|
10060
10209
|
"ToolResultEvent": {
|
|
10061
10210
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10062
|
-
"lineNumber":
|
|
10211
|
+
"lineNumber": 115
|
|
10063
10212
|
},
|
|
10064
10213
|
"AdapterState": {
|
|
10065
10214
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10071,7 +10220,7 @@
|
|
|
10071
10220
|
},
|
|
10072
10221
|
"FileRemoveEvent": {
|
|
10073
10222
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10074
|
-
"lineNumber":
|
|
10223
|
+
"lineNumber": 210
|
|
10075
10224
|
},
|
|
10076
10225
|
"ErrorEvent": {
|
|
10077
10226
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10139,31 +10288,31 @@
|
|
|
10139
10288
|
},
|
|
10140
10289
|
"ForgeAiChatbotMessageEventData": {
|
|
10141
10290
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10142
|
-
"lineNumber":
|
|
10291
|
+
"lineNumber": 89
|
|
10143
10292
|
},
|
|
10144
10293
|
"ForgeAiChatbotToolCallEventData": {
|
|
10145
10294
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10146
|
-
"lineNumber":
|
|
10295
|
+
"lineNumber": 93
|
|
10147
10296
|
},
|
|
10148
10297
|
"ForgeAiChatbotErrorEventData": {
|
|
10149
10298
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10150
|
-
"lineNumber":
|
|
10299
|
+
"lineNumber": 99
|
|
10151
10300
|
},
|
|
10152
10301
|
"ForgeAiChatbotFileRemoveEventData": {
|
|
10153
10302
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10154
|
-
"lineNumber":
|
|
10303
|
+
"lineNumber": 103
|
|
10155
10304
|
},
|
|
10156
10305
|
"ForgeAiChatbotResponseFeedbackEventData": {
|
|
10157
10306
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10158
|
-
"lineNumber":
|
|
10307
|
+
"lineNumber": 107
|
|
10159
10308
|
},
|
|
10160
10309
|
"FeatureToggle": {
|
|
10161
10310
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10162
|
-
"lineNumber":
|
|
10311
|
+
"lineNumber": 118
|
|
10163
10312
|
},
|
|
10164
10313
|
"AiChatbotComponent": {
|
|
10165
10314
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10166
|
-
"lineNumber":
|
|
10315
|
+
"lineNumber": 149
|
|
10167
10316
|
},
|
|
10168
10317
|
"CreateToolRendererElementConfig": {
|
|
10169
10318
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -10259,63 +10408,63 @@
|
|
|
10259
10408
|
},
|
|
10260
10409
|
"StreamEvent": {
|
|
10261
10410
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10262
|
-
"lineNumber":
|
|
10411
|
+
"lineNumber": 121
|
|
10263
10412
|
},
|
|
10264
10413
|
"ChatMessage": {
|
|
10265
10414
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10266
|
-
"lineNumber":
|
|
10415
|
+
"lineNumber": 130
|
|
10267
10416
|
},
|
|
10268
10417
|
"ToolCall": {
|
|
10269
10418
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10270
|
-
"lineNumber":
|
|
10419
|
+
"lineNumber": 143
|
|
10271
10420
|
},
|
|
10272
10421
|
"ResponseItem": {
|
|
10273
10422
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10274
|
-
"lineNumber":
|
|
10423
|
+
"lineNumber": 155
|
|
10275
10424
|
},
|
|
10276
10425
|
"FeedbackType": {
|
|
10277
10426
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10278
|
-
"lineNumber":
|
|
10427
|
+
"lineNumber": 159
|
|
10279
10428
|
},
|
|
10280
10429
|
"ResponseFeedback": {
|
|
10281
10430
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10282
|
-
"lineNumber":
|
|
10431
|
+
"lineNumber": 161
|
|
10283
10432
|
},
|
|
10284
10433
|
"AssistantResponse": {
|
|
10285
10434
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10286
|
-
"lineNumber":
|
|
10435
|
+
"lineNumber": 166
|
|
10287
10436
|
},
|
|
10288
10437
|
"FileAttachment": {
|
|
10289
10438
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10290
|
-
"lineNumber":
|
|
10439
|
+
"lineNumber": 175
|
|
10291
10440
|
},
|
|
10292
10441
|
"UploadedFileMetadata": {
|
|
10293
10442
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10294
|
-
"lineNumber":
|
|
10443
|
+
"lineNumber": 188
|
|
10295
10444
|
},
|
|
10296
10445
|
"FileUploadCallbacks": {
|
|
10297
10446
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10298
|
-
"lineNumber":
|
|
10447
|
+
"lineNumber": 196
|
|
10299
10448
|
},
|
|
10300
10449
|
"FileUploadHandler": {
|
|
10301
10450
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10302
|
-
"lineNumber":
|
|
10451
|
+
"lineNumber": 203
|
|
10303
10452
|
},
|
|
10304
10453
|
"FileRemoveCallbacks": {
|
|
10305
10454
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10306
|
-
"lineNumber":
|
|
10455
|
+
"lineNumber": 205
|
|
10307
10456
|
},
|
|
10308
10457
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10309
10458
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10310
|
-
"lineNumber":
|
|
10459
|
+
"lineNumber": 214
|
|
10311
10460
|
},
|
|
10312
10461
|
"MessageItem": {
|
|
10313
10462
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10314
|
-
"lineNumber":
|
|
10463
|
+
"lineNumber": 227
|
|
10315
10464
|
},
|
|
10316
10465
|
"ThreadState": {
|
|
10317
10466
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10318
|
-
"lineNumber":
|
|
10467
|
+
"lineNumber": 232
|
|
10319
10468
|
},
|
|
10320
10469
|
"AiConfirmationPromptComponent": {
|
|
10321
10470
|
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
@@ -10407,19 +10556,19 @@
|
|
|
10407
10556
|
},
|
|
10408
10557
|
"ForgeAiFilePickerChangeEventData": {
|
|
10409
10558
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10410
|
-
"lineNumber":
|
|
10559
|
+
"lineNumber": 24
|
|
10411
10560
|
},
|
|
10412
10561
|
"ForgeAiFilePickerErrorEventData": {
|
|
10413
10562
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10414
|
-
"lineNumber":
|
|
10563
|
+
"lineNumber": 34
|
|
10415
10564
|
},
|
|
10416
10565
|
"AiFilePickerVariant": {
|
|
10417
10566
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10418
|
-
"lineNumber":
|
|
10567
|
+
"lineNumber": 43
|
|
10419
10568
|
},
|
|
10420
10569
|
"AiFilePickerComponent": {
|
|
10421
10570
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10422
|
-
"lineNumber":
|
|
10571
|
+
"lineNumber": 58
|
|
10423
10572
|
},
|
|
10424
10573
|
"AiFloatingChatComponent": {
|
|
10425
10574
|
"path": "src/lib/ai-floating-chat/ai-floating-chat.ts",
|
|
@@ -10443,19 +10592,23 @@
|
|
|
10443
10592
|
},
|
|
10444
10593
|
"ForgeAiMessageThreadCopyEventData": {
|
|
10445
10594
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10446
|
-
"lineNumber":
|
|
10595
|
+
"lineNumber": 37
|
|
10447
10596
|
},
|
|
10448
10597
|
"ForgeAiMessageThreadRefreshEventData": {
|
|
10449
10598
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10450
|
-
"lineNumber":
|
|
10599
|
+
"lineNumber": 41
|
|
10451
10600
|
},
|
|
10452
10601
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
10453
10602
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10454
|
-
"lineNumber":
|
|
10603
|
+
"lineNumber": 45
|
|
10604
|
+
},
|
|
10605
|
+
"ForgeAiMessageThreadEditEventData": {
|
|
10606
|
+
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10607
|
+
"lineNumber": 50
|
|
10455
10608
|
},
|
|
10456
10609
|
"AiMessageThreadComponent": {
|
|
10457
10610
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10458
|
-
"lineNumber":
|
|
10611
|
+
"lineNumber": 76
|
|
10459
10612
|
},
|
|
10460
10613
|
"AiModalComponent": {
|
|
10461
10614
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
@@ -10463,23 +10616,23 @@
|
|
|
10463
10616
|
},
|
|
10464
10617
|
"ForgeAiPromptSendEventData": {
|
|
10465
10618
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10466
|
-
"lineNumber":
|
|
10619
|
+
"lineNumber": 29
|
|
10467
10620
|
},
|
|
10468
10621
|
"ForgeAiPromptAttachmentEventData": {
|
|
10469
10622
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10470
|
-
"lineNumber":
|
|
10623
|
+
"lineNumber": 35
|
|
10471
10624
|
},
|
|
10472
10625
|
"ForgeAiPromptCommandEventData": {
|
|
10473
10626
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10474
|
-
"lineNumber":
|
|
10627
|
+
"lineNumber": 39
|
|
10475
10628
|
},
|
|
10476
10629
|
"AiPromptVariant": {
|
|
10477
10630
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10478
|
-
"lineNumber":
|
|
10631
|
+
"lineNumber": 45
|
|
10479
10632
|
},
|
|
10480
10633
|
"AiPromptComponent": {
|
|
10481
10634
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10482
|
-
"lineNumber":
|
|
10635
|
+
"lineNumber": 63
|
|
10483
10636
|
},
|
|
10484
10637
|
"AiReasoningComponent": {
|
|
10485
10638
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -10501,10 +10654,6 @@
|
|
|
10501
10654
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10502
10655
|
"lineNumber": 42
|
|
10503
10656
|
},
|
|
10504
|
-
"AiSlashCommandMenuComponent": {
|
|
10505
|
-
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10506
|
-
"lineNumber": 32
|
|
10507
|
-
},
|
|
10508
10657
|
"SpinnerSize": {
|
|
10509
10658
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10510
10659
|
"lineNumber": 14
|
|
@@ -10513,6 +10662,14 @@
|
|
|
10513
10662
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10514
10663
|
"lineNumber": 27
|
|
10515
10664
|
},
|
|
10665
|
+
"AiSlashCommandMenuComponent": {
|
|
10666
|
+
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10667
|
+
"lineNumber": 32
|
|
10668
|
+
},
|
|
10669
|
+
"AiThinkingIndicatorComponent": {
|
|
10670
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
10671
|
+
"lineNumber": 38
|
|
10672
|
+
},
|
|
10516
10673
|
"Thread": {
|
|
10517
10674
|
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10518
10675
|
"lineNumber": 19
|
|
@@ -10541,41 +10698,49 @@
|
|
|
10541
10698
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10542
10699
|
"lineNumber": 44
|
|
10543
10700
|
},
|
|
10544
|
-
"
|
|
10545
|
-
"path": "src/lib/ai-
|
|
10546
|
-
"lineNumber":
|
|
10701
|
+
"ForgeAiUserMessageCopyEventData": {
|
|
10702
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10703
|
+
"lineNumber": 21
|
|
10704
|
+
},
|
|
10705
|
+
"ForgeAiUserMessageResendEventData": {
|
|
10706
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10707
|
+
"lineNumber": 25
|
|
10708
|
+
},
|
|
10709
|
+
"ForgeAiUserMessageEditEventData": {
|
|
10710
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10711
|
+
"lineNumber": 29
|
|
10547
10712
|
},
|
|
10548
10713
|
"AiUserMessageComponent": {
|
|
10549
10714
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10550
|
-
"lineNumber":
|
|
10715
|
+
"lineNumber": 43
|
|
10551
10716
|
},
|
|
10552
10717
|
"SpeechRecognitionAlternative": {
|
|
10553
10718
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10554
|
-
"lineNumber":
|
|
10719
|
+
"lineNumber": 20
|
|
10555
10720
|
},
|
|
10556
10721
|
"SpeechRecognitionResult": {
|
|
10557
10722
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10558
|
-
"lineNumber":
|
|
10723
|
+
"lineNumber": 25
|
|
10559
10724
|
},
|
|
10560
10725
|
"SpeechRecognitionResultList": {
|
|
10561
10726
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10562
|
-
"lineNumber":
|
|
10727
|
+
"lineNumber": 31
|
|
10563
10728
|
},
|
|
10564
10729
|
"SpeechRecognitionEvent": {
|
|
10565
10730
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10566
|
-
"lineNumber":
|
|
10731
|
+
"lineNumber": 37
|
|
10567
10732
|
},
|
|
10568
10733
|
"SpeechRecognition": {
|
|
10569
10734
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10570
|
-
"lineNumber":
|
|
10735
|
+
"lineNumber": 41
|
|
10571
10736
|
},
|
|
10572
10737
|
"ForgeAiVoiceInputResultEvent": {
|
|
10573
10738
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10574
|
-
"lineNumber":
|
|
10739
|
+
"lineNumber": 63
|
|
10575
10740
|
},
|
|
10576
10741
|
"AiVoiceInputComponent": {
|
|
10577
10742
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10578
|
-
"lineNumber":
|
|
10743
|
+
"lineNumber": 76
|
|
10579
10744
|
},
|
|
10580
10745
|
"DragControllerOptions": {
|
|
10581
10746
|
"path": "src/lib/core/drag-controller.ts",
|
|
@@ -10625,6 +10790,14 @@
|
|
|
10625
10790
|
"path": "src/lib/core/overlay/overlay.ts",
|
|
10626
10791
|
"lineNumber": 40
|
|
10627
10792
|
},
|
|
10793
|
+
"TableData": {
|
|
10794
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10795
|
+
"lineNumber": 16
|
|
10796
|
+
},
|
|
10797
|
+
"DataTableToolElement": {
|
|
10798
|
+
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10799
|
+
"lineNumber": 32
|
|
10800
|
+
},
|
|
10628
10801
|
"PopoverToggleEventData": {
|
|
10629
10802
|
"path": "src/lib/core/popover/popover.ts",
|
|
10630
10803
|
"lineNumber": 18
|
|
@@ -10641,14 +10814,6 @@
|
|
|
10641
10814
|
"path": "src/lib/core/popover/popover.ts",
|
|
10642
10815
|
"lineNumber": 37
|
|
10643
10816
|
},
|
|
10644
|
-
"TableData": {
|
|
10645
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10646
|
-
"lineNumber": 16
|
|
10647
|
-
},
|
|
10648
|
-
"DataTableToolElement": {
|
|
10649
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
10650
|
-
"lineNumber": 32
|
|
10651
|
-
},
|
|
10652
10817
|
"TooltipToggleEventDetail": {
|
|
10653
10818
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10654
10819
|
"lineNumber": 20
|
|
@@ -10665,9 +10830,17 @@
|
|
|
10665
10830
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10666
10831
|
"lineNumber": 44
|
|
10667
10832
|
},
|
|
10833
|
+
"ConfirmActionToolArgs": {
|
|
10834
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10835
|
+
"lineNumber": 5
|
|
10836
|
+
},
|
|
10837
|
+
"ConfirmActionToolResult": {
|
|
10838
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10839
|
+
"lineNumber": 9
|
|
10840
|
+
},
|
|
10668
10841
|
"AiPaginator": {
|
|
10669
10842
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
10670
|
-
"lineNumber":
|
|
10843
|
+
"lineNumber": 13
|
|
10671
10844
|
}
|
|
10672
10845
|
}
|
|
10673
10846
|
}
|