@tylertech/forge-ai 0.7.2 → 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 +1157 -965
- 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.d.ts +1 -1
- package/dist/ai-chatbot/ai-chatbot.mjs +81 -22
- package/dist/ai-chatbot/message-state-controller.d.ts +1 -0
- package/dist/ai-chatbot/message-state-controller.mjs +31 -11
- 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.d.ts +5 -0
- package/dist/ai-prompt/ai-prompt.mjs +56 -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",
|
|
@@ -450,6 +379,158 @@
|
|
|
450
379
|
}
|
|
451
380
|
]
|
|
452
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"
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"kind": "javascript-module",
|
|
455
|
+
"path": "src/lib/ai-button/ai-button.ts",
|
|
456
|
+
"declarations": [
|
|
457
|
+
{
|
|
458
|
+
"kind": "variable",
|
|
459
|
+
"name": "AiButtonComponentTagName",
|
|
460
|
+
"type": {
|
|
461
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
462
|
+
},
|
|
463
|
+
"default": "'forge-ai-button'"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"kind": "class",
|
|
467
|
+
"description": "",
|
|
468
|
+
"name": "AiButtonComponent",
|
|
469
|
+
"slots": [
|
|
470
|
+
{
|
|
471
|
+
"description": "Default slot for button content",
|
|
472
|
+
"name": ""
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"members": [
|
|
476
|
+
{
|
|
477
|
+
"kind": "field",
|
|
478
|
+
"name": "disabled",
|
|
479
|
+
"type": {
|
|
480
|
+
"text": "boolean"
|
|
481
|
+
},
|
|
482
|
+
"privacy": "public",
|
|
483
|
+
"default": "false",
|
|
484
|
+
"description": "Whether the button is disabled",
|
|
485
|
+
"attribute": "disabled",
|
|
486
|
+
"reflects": true
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"attributes": [
|
|
490
|
+
{
|
|
491
|
+
"name": "disabled",
|
|
492
|
+
"type": {
|
|
493
|
+
"text": "boolean"
|
|
494
|
+
},
|
|
495
|
+
"default": "false",
|
|
496
|
+
"description": "Whether the button is disabled",
|
|
497
|
+
"fieldName": "disabled"
|
|
498
|
+
}
|
|
499
|
+
],
|
|
500
|
+
"superclass": {
|
|
501
|
+
"name": "LitElement",
|
|
502
|
+
"package": "lit"
|
|
503
|
+
},
|
|
504
|
+
"tagName": "forge-ai-button",
|
|
505
|
+
"customElement": true
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
"exports": [
|
|
509
|
+
{
|
|
510
|
+
"kind": "js",
|
|
511
|
+
"name": "AiButtonComponentTagName",
|
|
512
|
+
"declaration": {
|
|
513
|
+
"name": "AiButtonComponentTagName",
|
|
514
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"kind": "js",
|
|
519
|
+
"name": "AiButtonComponent",
|
|
520
|
+
"declaration": {
|
|
521
|
+
"name": "AiButtonComponent",
|
|
522
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"kind": "custom-element-definition",
|
|
527
|
+
"declaration": {
|
|
528
|
+
"name": "AiButtonComponent",
|
|
529
|
+
"module": "src/lib/ai-button/ai-button.ts"
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
},
|
|
453
534
|
{
|
|
454
535
|
"kind": "javascript-module",
|
|
455
536
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
@@ -622,201 +703,45 @@
|
|
|
622
703
|
},
|
|
623
704
|
{
|
|
624
705
|
"kind": "javascript-module",
|
|
625
|
-
"path": "src/lib/ai-
|
|
706
|
+
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
626
707
|
"declarations": [
|
|
627
708
|
{
|
|
628
709
|
"kind": "variable",
|
|
629
|
-
"name": "
|
|
710
|
+
"name": "AiChatHeaderComponentTagName",
|
|
630
711
|
"type": {
|
|
631
712
|
"text": "keyof HTMLElementTagNameMap"
|
|
632
713
|
},
|
|
633
|
-
"default": "'forge-ai-
|
|
714
|
+
"default": "'forge-ai-chat-header'"
|
|
634
715
|
},
|
|
635
716
|
{
|
|
636
717
|
"kind": "class",
|
|
637
718
|
"description": "",
|
|
638
|
-
"name": "
|
|
719
|
+
"name": "AiChatHeaderComponent",
|
|
639
720
|
"slots": [
|
|
640
721
|
{
|
|
641
|
-
"description": "
|
|
642
|
-
"name": ""
|
|
722
|
+
"description": "Slot for custom icon (default: forge-ai-icon)",
|
|
723
|
+
"name": "icon"
|
|
643
724
|
}
|
|
644
725
|
],
|
|
645
726
|
"members": [
|
|
646
727
|
{
|
|
647
728
|
"kind": "field",
|
|
648
|
-
"name": "
|
|
729
|
+
"name": "showExpandButton",
|
|
649
730
|
"type": {
|
|
650
731
|
"text": "boolean"
|
|
651
732
|
},
|
|
652
733
|
"privacy": "public",
|
|
653
734
|
"default": "false",
|
|
654
|
-
"description": "
|
|
655
|
-
"attribute": "
|
|
656
|
-
|
|
657
|
-
}
|
|
658
|
-
],
|
|
659
|
-
"attributes": [
|
|
735
|
+
"description": "Controls whether the expand button is visible",
|
|
736
|
+
"attribute": "show-expand-button"
|
|
737
|
+
},
|
|
660
738
|
{
|
|
661
|
-
"
|
|
739
|
+
"kind": "field",
|
|
740
|
+
"name": "showMinimizeButton",
|
|
662
741
|
"type": {
|
|
663
742
|
"text": "boolean"
|
|
664
743
|
},
|
|
665
|
-
"
|
|
666
|
-
"description": "Whether the button is disabled",
|
|
667
|
-
"fieldName": "disabled"
|
|
668
|
-
}
|
|
669
|
-
],
|
|
670
|
-
"superclass": {
|
|
671
|
-
"name": "LitElement",
|
|
672
|
-
"package": "lit"
|
|
673
|
-
},
|
|
674
|
-
"tagName": "forge-ai-button",
|
|
675
|
-
"customElement": true
|
|
676
|
-
}
|
|
677
|
-
],
|
|
678
|
-
"exports": [
|
|
679
|
-
{
|
|
680
|
-
"kind": "js",
|
|
681
|
-
"name": "AiButtonComponentTagName",
|
|
682
|
-
"declaration": {
|
|
683
|
-
"name": "AiButtonComponentTagName",
|
|
684
|
-
"module": "src/lib/ai-button/ai-button.ts"
|
|
685
|
-
}
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"kind": "js",
|
|
689
|
-
"name": "AiButtonComponent",
|
|
690
|
-
"declaration": {
|
|
691
|
-
"name": "AiButtonComponent",
|
|
692
|
-
"module": "src/lib/ai-button/ai-button.ts"
|
|
693
|
-
}
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
"kind": "custom-element-definition",
|
|
697
|
-
"declaration": {
|
|
698
|
-
"name": "AiButtonComponent",
|
|
699
|
-
"module": "src/lib/ai-button/ai-button.ts"
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
]
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"kind": "javascript-module",
|
|
706
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
707
|
-
"declarations": [
|
|
708
|
-
{
|
|
709
|
-
"kind": "variable",
|
|
710
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
711
|
-
"type": {
|
|
712
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
713
|
-
},
|
|
714
|
-
"default": "'forge-ai-chain-of-thought'"
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"kind": "class",
|
|
718
|
-
"description": "",
|
|
719
|
-
"name": "AiChainOfThoughtComponent",
|
|
720
|
-
"members": [
|
|
721
|
-
{
|
|
722
|
-
"kind": "field",
|
|
723
|
-
"name": "expanded",
|
|
724
|
-
"type": {
|
|
725
|
-
"text": "boolean"
|
|
726
|
-
},
|
|
727
|
-
"privacy": "public",
|
|
728
|
-
"default": "false",
|
|
729
|
-
"description": "Whether the chain of thought is expanded",
|
|
730
|
-
"attribute": "expanded",
|
|
731
|
-
"reflects": true
|
|
732
|
-
}
|
|
733
|
-
],
|
|
734
|
-
"attributes": [
|
|
735
|
-
{
|
|
736
|
-
"name": "expanded",
|
|
737
|
-
"type": {
|
|
738
|
-
"text": "boolean"
|
|
739
|
-
},
|
|
740
|
-
"default": "false",
|
|
741
|
-
"description": "Whether the chain of thought is expanded",
|
|
742
|
-
"fieldName": "expanded"
|
|
743
|
-
}
|
|
744
|
-
],
|
|
745
|
-
"superclass": {
|
|
746
|
-
"name": "LitElement",
|
|
747
|
-
"package": "lit"
|
|
748
|
-
},
|
|
749
|
-
"tagName": "forge-ai-chain-of-thought",
|
|
750
|
-
"customElement": true
|
|
751
|
-
}
|
|
752
|
-
],
|
|
753
|
-
"exports": [
|
|
754
|
-
{
|
|
755
|
-
"kind": "js",
|
|
756
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
757
|
-
"declaration": {
|
|
758
|
-
"name": "AiChainOfThoughtComponentTagName",
|
|
759
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
760
|
-
}
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"kind": "js",
|
|
764
|
-
"name": "AiChainOfThoughtComponent",
|
|
765
|
-
"declaration": {
|
|
766
|
-
"name": "AiChainOfThoughtComponent",
|
|
767
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
768
|
-
}
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"kind": "custom-element-definition",
|
|
772
|
-
"declaration": {
|
|
773
|
-
"name": "AiChainOfThoughtComponent",
|
|
774
|
-
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
775
|
-
}
|
|
776
|
-
}
|
|
777
|
-
]
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"kind": "javascript-module",
|
|
781
|
-
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
782
|
-
"declarations": [
|
|
783
|
-
{
|
|
784
|
-
"kind": "variable",
|
|
785
|
-
"name": "AiChatHeaderComponentTagName",
|
|
786
|
-
"type": {
|
|
787
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
788
|
-
},
|
|
789
|
-
"default": "'forge-ai-chat-header'"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"kind": "class",
|
|
793
|
-
"description": "",
|
|
794
|
-
"name": "AiChatHeaderComponent",
|
|
795
|
-
"slots": [
|
|
796
|
-
{
|
|
797
|
-
"description": "Slot for custom icon (default: forge-ai-icon)",
|
|
798
|
-
"name": "icon"
|
|
799
|
-
}
|
|
800
|
-
],
|
|
801
|
-
"members": [
|
|
802
|
-
{
|
|
803
|
-
"kind": "field",
|
|
804
|
-
"name": "showExpandButton",
|
|
805
|
-
"type": {
|
|
806
|
-
"text": "boolean"
|
|
807
|
-
},
|
|
808
|
-
"privacy": "public",
|
|
809
|
-
"default": "false",
|
|
810
|
-
"description": "Controls whether the expand button is visible",
|
|
811
|
-
"attribute": "show-expand-button"
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
"kind": "field",
|
|
815
|
-
"name": "showMinimizeButton",
|
|
816
|
-
"type": {
|
|
817
|
-
"text": "boolean"
|
|
818
|
-
},
|
|
819
|
-
"privacy": "public",
|
|
744
|
+
"privacy": "public",
|
|
820
745
|
"default": "false",
|
|
821
746
|
"description": "Controls whether the minimize button is visible",
|
|
822
747
|
"attribute": "show-minimize-button"
|
|
@@ -1061,6 +986,81 @@
|
|
|
1061
986
|
}
|
|
1062
987
|
]
|
|
1063
988
|
},
|
|
989
|
+
{
|
|
990
|
+
"kind": "javascript-module",
|
|
991
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
992
|
+
"declarations": [
|
|
993
|
+
{
|
|
994
|
+
"kind": "variable",
|
|
995
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
996
|
+
"type": {
|
|
997
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
998
|
+
},
|
|
999
|
+
"default": "'forge-ai-chain-of-thought'"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"kind": "class",
|
|
1003
|
+
"description": "",
|
|
1004
|
+
"name": "AiChainOfThoughtComponent",
|
|
1005
|
+
"members": [
|
|
1006
|
+
{
|
|
1007
|
+
"kind": "field",
|
|
1008
|
+
"name": "expanded",
|
|
1009
|
+
"type": {
|
|
1010
|
+
"text": "boolean"
|
|
1011
|
+
},
|
|
1012
|
+
"privacy": "public",
|
|
1013
|
+
"default": "false",
|
|
1014
|
+
"description": "Whether the chain of thought is expanded",
|
|
1015
|
+
"attribute": "expanded",
|
|
1016
|
+
"reflects": true
|
|
1017
|
+
}
|
|
1018
|
+
],
|
|
1019
|
+
"attributes": [
|
|
1020
|
+
{
|
|
1021
|
+
"name": "expanded",
|
|
1022
|
+
"type": {
|
|
1023
|
+
"text": "boolean"
|
|
1024
|
+
},
|
|
1025
|
+
"default": "false",
|
|
1026
|
+
"description": "Whether the chain of thought is expanded",
|
|
1027
|
+
"fieldName": "expanded"
|
|
1028
|
+
}
|
|
1029
|
+
],
|
|
1030
|
+
"superclass": {
|
|
1031
|
+
"name": "LitElement",
|
|
1032
|
+
"package": "lit"
|
|
1033
|
+
},
|
|
1034
|
+
"tagName": "forge-ai-chain-of-thought",
|
|
1035
|
+
"customElement": true
|
|
1036
|
+
}
|
|
1037
|
+
],
|
|
1038
|
+
"exports": [
|
|
1039
|
+
{
|
|
1040
|
+
"kind": "js",
|
|
1041
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
1042
|
+
"declaration": {
|
|
1043
|
+
"name": "AiChainOfThoughtComponentTagName",
|
|
1044
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"kind": "js",
|
|
1049
|
+
"name": "AiChainOfThoughtComponent",
|
|
1050
|
+
"declaration": {
|
|
1051
|
+
"name": "AiChainOfThoughtComponent",
|
|
1052
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"kind": "custom-element-definition",
|
|
1057
|
+
"declaration": {
|
|
1058
|
+
"name": "AiChainOfThoughtComponent",
|
|
1059
|
+
"module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
]
|
|
1063
|
+
},
|
|
1064
1064
|
{
|
|
1065
1065
|
"kind": "javascript-module",
|
|
1066
1066
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
@@ -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": [
|
|
@@ -1147,171 +1151,28 @@
|
|
|
1147
1151
|
},
|
|
1148
1152
|
{
|
|
1149
1153
|
"kind": "javascript-module",
|
|
1150
|
-
"path": "src/lib/ai-
|
|
1154
|
+
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
1151
1155
|
"declarations": [
|
|
1152
|
-
{
|
|
1153
|
-
"kind": "variable",
|
|
1154
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
1155
|
-
"type": {
|
|
1156
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
1157
|
-
},
|
|
1158
|
-
"default": "'forge-ai-confirmation-prompt'"
|
|
1159
|
-
},
|
|
1160
1156
|
{
|
|
1161
1157
|
"kind": "class",
|
|
1162
1158
|
"description": "",
|
|
1163
|
-
"name": "
|
|
1159
|
+
"name": "AgUiAdapter",
|
|
1164
1160
|
"members": [
|
|
1165
1161
|
{
|
|
1166
1162
|
"kind": "field",
|
|
1167
|
-
"name": "
|
|
1163
|
+
"name": "threadId",
|
|
1168
1164
|
"type": {
|
|
1169
1165
|
"text": "string"
|
|
1170
1166
|
},
|
|
1171
1167
|
"privacy": "public",
|
|
1172
|
-
"
|
|
1173
|
-
|
|
1168
|
+
"inheritedFrom": {
|
|
1169
|
+
"name": "AgentAdapter",
|
|
1170
|
+
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1171
|
+
}
|
|
1174
1172
|
},
|
|
1175
1173
|
{
|
|
1176
|
-
"kind": "
|
|
1177
|
-
"name": "
|
|
1178
|
-
"type": {
|
|
1179
|
-
"text": "string"
|
|
1180
|
-
},
|
|
1181
|
-
"privacy": "public",
|
|
1182
|
-
"default": "'Confirm'",
|
|
1183
|
-
"attribute": "confirm-text"
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
"kind": "field",
|
|
1187
|
-
"name": "denyText",
|
|
1188
|
-
"type": {
|
|
1189
|
-
"text": "string"
|
|
1190
|
-
},
|
|
1191
|
-
"privacy": "public",
|
|
1192
|
-
"default": "'Deny'",
|
|
1193
|
-
"attribute": "deny-text"
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"kind": "field",
|
|
1197
|
-
"name": "disabled",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "boolean"
|
|
1200
|
-
},
|
|
1201
|
-
"privacy": "public",
|
|
1202
|
-
"default": "false",
|
|
1203
|
-
"attribute": "disabled"
|
|
1204
|
-
}
|
|
1205
|
-
],
|
|
1206
|
-
"events": [
|
|
1207
|
-
{
|
|
1208
|
-
"type": {
|
|
1209
|
-
"text": "CustomEvent<void>"
|
|
1210
|
-
},
|
|
1211
|
-
"description": "Fired when user confirms the prompt",
|
|
1212
|
-
"name": "forge-ai-confirmation-prompt-confirm"
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"type": {
|
|
1216
|
-
"text": "CustomEvent<void>"
|
|
1217
|
-
},
|
|
1218
|
-
"description": "Fired when user denies the prompt",
|
|
1219
|
-
"name": "forge-ai-confirmation-prompt-deny"
|
|
1220
|
-
}
|
|
1221
|
-
],
|
|
1222
|
-
"attributes": [
|
|
1223
|
-
{
|
|
1224
|
-
"name": "text",
|
|
1225
|
-
"type": {
|
|
1226
|
-
"text": "string"
|
|
1227
|
-
},
|
|
1228
|
-
"default": "''",
|
|
1229
|
-
"fieldName": "text"
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
"name": "confirm-text",
|
|
1233
|
-
"type": {
|
|
1234
|
-
"text": "string"
|
|
1235
|
-
},
|
|
1236
|
-
"default": "'Confirm'",
|
|
1237
|
-
"fieldName": "confirmText"
|
|
1238
|
-
},
|
|
1239
|
-
{
|
|
1240
|
-
"name": "deny-text",
|
|
1241
|
-
"type": {
|
|
1242
|
-
"text": "string"
|
|
1243
|
-
},
|
|
1244
|
-
"default": "'Deny'",
|
|
1245
|
-
"fieldName": "denyText"
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
"name": "disabled",
|
|
1249
|
-
"type": {
|
|
1250
|
-
"text": "boolean"
|
|
1251
|
-
},
|
|
1252
|
-
"default": "false",
|
|
1253
|
-
"fieldName": "disabled"
|
|
1254
|
-
}
|
|
1255
|
-
],
|
|
1256
|
-
"superclass": {
|
|
1257
|
-
"name": "LitElement",
|
|
1258
|
-
"package": "lit"
|
|
1259
|
-
},
|
|
1260
|
-
"tagName": "forge-ai-confirmation-prompt",
|
|
1261
|
-
"customElement": true,
|
|
1262
|
-
"summary": "Displays a confirmation UI for requiring human approval."
|
|
1263
|
-
}
|
|
1264
|
-
],
|
|
1265
|
-
"exports": [
|
|
1266
|
-
{
|
|
1267
|
-
"kind": "js",
|
|
1268
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
1269
|
-
"declaration": {
|
|
1270
|
-
"name": "AiConfirmationPromptComponentTagName",
|
|
1271
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1272
|
-
}
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
"kind": "js",
|
|
1276
|
-
"name": "AiConfirmationPromptComponent",
|
|
1277
|
-
"declaration": {
|
|
1278
|
-
"name": "AiConfirmationPromptComponent",
|
|
1279
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1280
|
-
}
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
"kind": "custom-element-definition",
|
|
1284
|
-
"declaration": {
|
|
1285
|
-
"name": "AiConfirmationPromptComponent",
|
|
1286
|
-
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
1287
|
-
}
|
|
1288
|
-
}
|
|
1289
|
-
]
|
|
1290
|
-
},
|
|
1291
|
-
{
|
|
1292
|
-
"kind": "javascript-module",
|
|
1293
|
-
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
1294
|
-
"declarations": [
|
|
1295
|
-
{
|
|
1296
|
-
"kind": "class",
|
|
1297
|
-
"description": "",
|
|
1298
|
-
"name": "AgUiAdapter",
|
|
1299
|
-
"members": [
|
|
1300
|
-
{
|
|
1301
|
-
"kind": "field",
|
|
1302
|
-
"name": "threadId",
|
|
1303
|
-
"type": {
|
|
1304
|
-
"text": "string"
|
|
1305
|
-
},
|
|
1306
|
-
"privacy": "public",
|
|
1307
|
-
"inheritedFrom": {
|
|
1308
|
-
"name": "AgentAdapter",
|
|
1309
|
-
"module": "src/lib/ai-chatbot/agent-adapter.ts"
|
|
1310
|
-
}
|
|
1311
|
-
},
|
|
1312
|
-
{
|
|
1313
|
-
"kind": "method",
|
|
1314
|
-
"name": "setContext",
|
|
1174
|
+
"kind": "method",
|
|
1175
|
+
"name": "setContext",
|
|
1315
1176
|
"privacy": "public",
|
|
1316
1177
|
"return": {
|
|
1317
1178
|
"type": {
|
|
@@ -3268,7 +3129,7 @@
|
|
|
3268
3129
|
"privacy": "public",
|
|
3269
3130
|
"return": {
|
|
3270
3131
|
"type": {
|
|
3271
|
-
"text": "void"
|
|
3132
|
+
"text": "Promise<void>"
|
|
3272
3133
|
}
|
|
3273
3134
|
},
|
|
3274
3135
|
"parameters": [
|
|
@@ -3479,6 +3340,11 @@
|
|
|
3479
3340
|
"customElement": true,
|
|
3480
3341
|
"summary": "A complete, self-contained AI chatbot component that implements the AG-UI protocol using an adapter pattern."
|
|
3481
3342
|
},
|
|
3343
|
+
{
|
|
3344
|
+
"kind": "variable",
|
|
3345
|
+
"name": "args",
|
|
3346
|
+
"default": "event.args as unknown"
|
|
3347
|
+
},
|
|
3482
3348
|
{
|
|
3483
3349
|
"kind": "variable",
|
|
3484
3350
|
"name": "event"
|
|
@@ -4446,6 +4312,30 @@
|
|
|
4446
4312
|
}
|
|
4447
4313
|
]
|
|
4448
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
|
+
},
|
|
4449
4339
|
{
|
|
4450
4340
|
"kind": "method",
|
|
4451
4341
|
"name": "removeMessageItem",
|
|
@@ -4655,123 +4545,266 @@
|
|
|
4655
4545
|
},
|
|
4656
4546
|
{
|
|
4657
4547
|
"kind": "javascript-module",
|
|
4658
|
-
"path": "src/lib/ai-
|
|
4548
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
4659
4549
|
"declarations": [
|
|
4660
4550
|
{
|
|
4661
4551
|
"kind": "variable",
|
|
4662
|
-
"name": "
|
|
4552
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
4663
4553
|
"type": {
|
|
4664
4554
|
"text": "keyof HTMLElementTagNameMap"
|
|
4665
4555
|
},
|
|
4666
|
-
"default": "'forge-ai-
|
|
4556
|
+
"default": "'forge-ai-confirmation-prompt'"
|
|
4667
4557
|
},
|
|
4668
4558
|
{
|
|
4669
4559
|
"kind": "class",
|
|
4670
4560
|
"description": "",
|
|
4671
|
-
"name": "
|
|
4672
|
-
"slots": [
|
|
4673
|
-
{
|
|
4674
|
-
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4675
|
-
"name": ""
|
|
4676
|
-
}
|
|
4677
|
-
],
|
|
4561
|
+
"name": "AiConfirmationPromptComponent",
|
|
4678
4562
|
"members": [
|
|
4679
4563
|
{
|
|
4680
4564
|
"kind": "field",
|
|
4681
|
-
"name": "
|
|
4565
|
+
"name": "text",
|
|
4682
4566
|
"type": {
|
|
4683
|
-
"text": "
|
|
4567
|
+
"text": "string"
|
|
4684
4568
|
},
|
|
4685
4569
|
"privacy": "public",
|
|
4686
|
-
"default": "
|
|
4687
|
-
"
|
|
4688
|
-
"attribute": "open"
|
|
4570
|
+
"default": "''",
|
|
4571
|
+
"attribute": "text"
|
|
4689
4572
|
},
|
|
4690
4573
|
{
|
|
4691
4574
|
"kind": "field",
|
|
4692
|
-
"name": "
|
|
4575
|
+
"name": "confirmText",
|
|
4693
4576
|
"type": {
|
|
4694
|
-
"text": "
|
|
4577
|
+
"text": "string"
|
|
4695
4578
|
},
|
|
4696
4579
|
"privacy": "public",
|
|
4697
|
-
"default": "
|
|
4698
|
-
"
|
|
4699
|
-
"attribute": "expanded"
|
|
4580
|
+
"default": "'Confirm'",
|
|
4581
|
+
"attribute": "confirm-text"
|
|
4700
4582
|
},
|
|
4701
4583
|
{
|
|
4702
4584
|
"kind": "field",
|
|
4703
|
-
"name": "
|
|
4585
|
+
"name": "denyText",
|
|
4704
4586
|
"type": {
|
|
4705
|
-
"text": "
|
|
4587
|
+
"text": "string"
|
|
4706
4588
|
},
|
|
4707
4589
|
"privacy": "public",
|
|
4708
|
-
"
|
|
4709
|
-
"
|
|
4710
|
-
},
|
|
4711
|
-
{
|
|
4712
|
-
"kind": "method",
|
|
4713
|
-
"name": "show",
|
|
4714
|
-
"privacy": "public",
|
|
4715
|
-
"return": {
|
|
4716
|
-
"type": {
|
|
4717
|
-
"text": "void"
|
|
4718
|
-
}
|
|
4719
|
-
},
|
|
4720
|
-
"description": "Opens the dialog."
|
|
4590
|
+
"default": "'Deny'",
|
|
4591
|
+
"attribute": "deny-text"
|
|
4721
4592
|
},
|
|
4722
4593
|
{
|
|
4723
|
-
"kind": "
|
|
4724
|
-
"name": "
|
|
4725
|
-
"
|
|
4726
|
-
|
|
4727
|
-
"type": {
|
|
4728
|
-
"text": "void"
|
|
4729
|
-
}
|
|
4594
|
+
"kind": "field",
|
|
4595
|
+
"name": "disabled",
|
|
4596
|
+
"type": {
|
|
4597
|
+
"text": "boolean"
|
|
4730
4598
|
},
|
|
4731
|
-
"description": "Closes the dialog."
|
|
4732
|
-
},
|
|
4733
|
-
{
|
|
4734
|
-
"kind": "method",
|
|
4735
|
-
"name": "toggle",
|
|
4736
4599
|
"privacy": "public",
|
|
4737
|
-
"
|
|
4738
|
-
|
|
4739
|
-
"text": "void"
|
|
4740
|
-
}
|
|
4741
|
-
},
|
|
4742
|
-
"description": "Toggles the dialog open state."
|
|
4600
|
+
"default": "false",
|
|
4601
|
+
"attribute": "disabled"
|
|
4743
4602
|
}
|
|
4744
4603
|
],
|
|
4745
4604
|
"events": [
|
|
4746
4605
|
{
|
|
4747
4606
|
"type": {
|
|
4748
|
-
"text": "CustomEvent<
|
|
4607
|
+
"text": "CustomEvent<void>"
|
|
4749
4608
|
},
|
|
4750
|
-
"description": "Fired when
|
|
4751
|
-
"name": "forge-ai-
|
|
4609
|
+
"description": "Fired when user confirms the prompt",
|
|
4610
|
+
"name": "forge-ai-confirmation-prompt-confirm"
|
|
4752
4611
|
},
|
|
4753
4612
|
{
|
|
4754
4613
|
"type": {
|
|
4755
4614
|
"text": "CustomEvent<void>"
|
|
4756
4615
|
},
|
|
4757
|
-
"description": "Fired when
|
|
4758
|
-
"name": "forge-ai-
|
|
4616
|
+
"description": "Fired when user denies the prompt",
|
|
4617
|
+
"name": "forge-ai-confirmation-prompt-deny"
|
|
4759
4618
|
}
|
|
4760
4619
|
],
|
|
4761
4620
|
"attributes": [
|
|
4762
4621
|
{
|
|
4763
|
-
"name": "
|
|
4622
|
+
"name": "text",
|
|
4764
4623
|
"type": {
|
|
4765
|
-
"text": "
|
|
4624
|
+
"text": "string"
|
|
4766
4625
|
},
|
|
4767
|
-
"default": "
|
|
4768
|
-
"
|
|
4769
|
-
"fieldName": "open"
|
|
4626
|
+
"default": "''",
|
|
4627
|
+
"fieldName": "text"
|
|
4770
4628
|
},
|
|
4771
4629
|
{
|
|
4772
|
-
"name": "
|
|
4630
|
+
"name": "confirm-text",
|
|
4773
4631
|
"type": {
|
|
4774
|
-
"text": "
|
|
4632
|
+
"text": "string"
|
|
4633
|
+
},
|
|
4634
|
+
"default": "'Confirm'",
|
|
4635
|
+
"fieldName": "confirmText"
|
|
4636
|
+
},
|
|
4637
|
+
{
|
|
4638
|
+
"name": "deny-text",
|
|
4639
|
+
"type": {
|
|
4640
|
+
"text": "string"
|
|
4641
|
+
},
|
|
4642
|
+
"default": "'Deny'",
|
|
4643
|
+
"fieldName": "denyText"
|
|
4644
|
+
},
|
|
4645
|
+
{
|
|
4646
|
+
"name": "disabled",
|
|
4647
|
+
"type": {
|
|
4648
|
+
"text": "boolean"
|
|
4649
|
+
},
|
|
4650
|
+
"default": "false",
|
|
4651
|
+
"fieldName": "disabled"
|
|
4652
|
+
}
|
|
4653
|
+
],
|
|
4654
|
+
"superclass": {
|
|
4655
|
+
"name": "LitElement",
|
|
4656
|
+
"package": "lit"
|
|
4657
|
+
},
|
|
4658
|
+
"tagName": "forge-ai-confirmation-prompt",
|
|
4659
|
+
"customElement": true,
|
|
4660
|
+
"summary": "Displays a confirmation UI for requiring human approval."
|
|
4661
|
+
}
|
|
4662
|
+
],
|
|
4663
|
+
"exports": [
|
|
4664
|
+
{
|
|
4665
|
+
"kind": "js",
|
|
4666
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
4667
|
+
"declaration": {
|
|
4668
|
+
"name": "AiConfirmationPromptComponentTagName",
|
|
4669
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
"kind": "js",
|
|
4674
|
+
"name": "AiConfirmationPromptComponent",
|
|
4675
|
+
"declaration": {
|
|
4676
|
+
"name": "AiConfirmationPromptComponent",
|
|
4677
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4678
|
+
}
|
|
4679
|
+
},
|
|
4680
|
+
{
|
|
4681
|
+
"kind": "custom-element-definition",
|
|
4682
|
+
"declaration": {
|
|
4683
|
+
"name": "AiConfirmationPromptComponent",
|
|
4684
|
+
"module": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts"
|
|
4685
|
+
}
|
|
4686
|
+
}
|
|
4687
|
+
]
|
|
4688
|
+
},
|
|
4689
|
+
{
|
|
4690
|
+
"kind": "javascript-module",
|
|
4691
|
+
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
4692
|
+
"declarations": [
|
|
4693
|
+
{
|
|
4694
|
+
"kind": "variable",
|
|
4695
|
+
"name": "AiDialogComponentTagName",
|
|
4696
|
+
"type": {
|
|
4697
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
4698
|
+
},
|
|
4699
|
+
"default": "'forge-ai-dialog'"
|
|
4700
|
+
},
|
|
4701
|
+
{
|
|
4702
|
+
"kind": "class",
|
|
4703
|
+
"description": "",
|
|
4704
|
+
"name": "AiDialogComponent",
|
|
4705
|
+
"slots": [
|
|
4706
|
+
{
|
|
4707
|
+
"description": "Default slot for dialog content (typically ai-chat-interface)",
|
|
4708
|
+
"name": ""
|
|
4709
|
+
}
|
|
4710
|
+
],
|
|
4711
|
+
"members": [
|
|
4712
|
+
{
|
|
4713
|
+
"kind": "field",
|
|
4714
|
+
"name": "open",
|
|
4715
|
+
"type": {
|
|
4716
|
+
"text": "boolean"
|
|
4717
|
+
},
|
|
4718
|
+
"privacy": "public",
|
|
4719
|
+
"default": "false",
|
|
4720
|
+
"description": "Indicates whether the dialog is open.",
|
|
4721
|
+
"attribute": "open"
|
|
4722
|
+
},
|
|
4723
|
+
{
|
|
4724
|
+
"kind": "field",
|
|
4725
|
+
"name": "expanded",
|
|
4726
|
+
"type": {
|
|
4727
|
+
"text": "boolean"
|
|
4728
|
+
},
|
|
4729
|
+
"privacy": "public",
|
|
4730
|
+
"default": "false",
|
|
4731
|
+
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
4732
|
+
"attribute": "expanded"
|
|
4733
|
+
},
|
|
4734
|
+
{
|
|
4735
|
+
"kind": "field",
|
|
4736
|
+
"name": "isFullscreen",
|
|
4737
|
+
"type": {
|
|
4738
|
+
"text": "boolean"
|
|
4739
|
+
},
|
|
4740
|
+
"privacy": "public",
|
|
4741
|
+
"description": "Gets the current fullscreen state (readonly)",
|
|
4742
|
+
"readonly": true
|
|
4743
|
+
},
|
|
4744
|
+
{
|
|
4745
|
+
"kind": "method",
|
|
4746
|
+
"name": "show",
|
|
4747
|
+
"privacy": "public",
|
|
4748
|
+
"return": {
|
|
4749
|
+
"type": {
|
|
4750
|
+
"text": "void"
|
|
4751
|
+
}
|
|
4752
|
+
},
|
|
4753
|
+
"description": "Opens the dialog."
|
|
4754
|
+
},
|
|
4755
|
+
{
|
|
4756
|
+
"kind": "method",
|
|
4757
|
+
"name": "close",
|
|
4758
|
+
"privacy": "public",
|
|
4759
|
+
"return": {
|
|
4760
|
+
"type": {
|
|
4761
|
+
"text": "void"
|
|
4762
|
+
}
|
|
4763
|
+
},
|
|
4764
|
+
"description": "Closes the dialog."
|
|
4765
|
+
},
|
|
4766
|
+
{
|
|
4767
|
+
"kind": "method",
|
|
4768
|
+
"name": "toggle",
|
|
4769
|
+
"privacy": "public",
|
|
4770
|
+
"return": {
|
|
4771
|
+
"type": {
|
|
4772
|
+
"text": "void"
|
|
4773
|
+
}
|
|
4774
|
+
},
|
|
4775
|
+
"description": "Toggles the dialog open state."
|
|
4776
|
+
}
|
|
4777
|
+
],
|
|
4778
|
+
"events": [
|
|
4779
|
+
{
|
|
4780
|
+
"type": {
|
|
4781
|
+
"text": "CustomEvent<{ isFullscreen: boolean }>"
|
|
4782
|
+
},
|
|
4783
|
+
"description": "Fired when the fullscreen state changes due to viewport size",
|
|
4784
|
+
"name": "forge-ai-dialog-fullscreen-change"
|
|
4785
|
+
},
|
|
4786
|
+
{
|
|
4787
|
+
"type": {
|
|
4788
|
+
"text": "CustomEvent<void>"
|
|
4789
|
+
},
|
|
4790
|
+
"description": "Fired when the dialog is closed",
|
|
4791
|
+
"name": "forge-ai-dialog-close"
|
|
4792
|
+
}
|
|
4793
|
+
],
|
|
4794
|
+
"attributes": [
|
|
4795
|
+
{
|
|
4796
|
+
"name": "open",
|
|
4797
|
+
"type": {
|
|
4798
|
+
"text": "boolean"
|
|
4799
|
+
},
|
|
4800
|
+
"default": "false",
|
|
4801
|
+
"description": "Indicates whether the dialog is open.",
|
|
4802
|
+
"fieldName": "open"
|
|
4803
|
+
},
|
|
4804
|
+
{
|
|
4805
|
+
"name": "expanded",
|
|
4806
|
+
"type": {
|
|
4807
|
+
"text": "boolean"
|
|
4775
4808
|
},
|
|
4776
4809
|
"default": "false",
|
|
4777
4810
|
"description": "Controls the dialog's positioning and size behavior.\nWhen true, the dialog will have an expanded width and be centered on the screen.\nWhen false, the dialog will be positioned at the bottom-right corner with a fixed width.",
|
|
@@ -7191,6 +7224,25 @@
|
|
|
7191
7224
|
],
|
|
7192
7225
|
"description": "Adds a message to the input history for up/down arrow navigation.\nUse this when sending messages externally (e.g., from suggestions)."
|
|
7193
7226
|
},
|
|
7227
|
+
{
|
|
7228
|
+
"kind": "method",
|
|
7229
|
+
"name": "setHistory",
|
|
7230
|
+
"privacy": "public",
|
|
7231
|
+
"return": {
|
|
7232
|
+
"type": {
|
|
7233
|
+
"text": "void"
|
|
7234
|
+
}
|
|
7235
|
+
},
|
|
7236
|
+
"parameters": [
|
|
7237
|
+
{
|
|
7238
|
+
"name": "messages",
|
|
7239
|
+
"type": {
|
|
7240
|
+
"text": "string[]"
|
|
7241
|
+
}
|
|
7242
|
+
}
|
|
7243
|
+
],
|
|
7244
|
+
"description": "Replaces the entire message history with the provided messages.\nUse this when restoring thread state from persistence."
|
|
7245
|
+
},
|
|
7194
7246
|
{
|
|
7195
7247
|
"kind": "method",
|
|
7196
7248
|
"name": "closeSlashMenu",
|
|
@@ -7390,58 +7442,6 @@
|
|
|
7390
7442
|
}
|
|
7391
7443
|
]
|
|
7392
7444
|
},
|
|
7393
|
-
{
|
|
7394
|
-
"kind": "javascript-module",
|
|
7395
|
-
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7396
|
-
"declarations": [
|
|
7397
|
-
{
|
|
7398
|
-
"kind": "variable",
|
|
7399
|
-
"name": "AiResponseMessageComponentTagName",
|
|
7400
|
-
"type": {
|
|
7401
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
7402
|
-
},
|
|
7403
|
-
"default": "'forge-ai-response-message'"
|
|
7404
|
-
},
|
|
7405
|
-
{
|
|
7406
|
-
"kind": "class",
|
|
7407
|
-
"description": "",
|
|
7408
|
-
"name": "AiResponseMessageComponent",
|
|
7409
|
-
"members": [],
|
|
7410
|
-
"superclass": {
|
|
7411
|
-
"name": "LitElement",
|
|
7412
|
-
"package": "lit"
|
|
7413
|
-
},
|
|
7414
|
-
"tagName": "forge-ai-response-message",
|
|
7415
|
-
"customElement": true,
|
|
7416
|
-
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7417
|
-
}
|
|
7418
|
-
],
|
|
7419
|
-
"exports": [
|
|
7420
|
-
{
|
|
7421
|
-
"kind": "js",
|
|
7422
|
-
"name": "AiResponseMessageComponentTagName",
|
|
7423
|
-
"declaration": {
|
|
7424
|
-
"name": "AiResponseMessageComponentTagName",
|
|
7425
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7426
|
-
}
|
|
7427
|
-
},
|
|
7428
|
-
{
|
|
7429
|
-
"kind": "js",
|
|
7430
|
-
"name": "AiResponseMessageComponent",
|
|
7431
|
-
"declaration": {
|
|
7432
|
-
"name": "AiResponseMessageComponent",
|
|
7433
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7434
|
-
}
|
|
7435
|
-
},
|
|
7436
|
-
{
|
|
7437
|
-
"kind": "custom-element-definition",
|
|
7438
|
-
"declaration": {
|
|
7439
|
-
"name": "AiResponseMessageComponent",
|
|
7440
|
-
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7441
|
-
}
|
|
7442
|
-
}
|
|
7443
|
-
]
|
|
7444
|
-
},
|
|
7445
7445
|
{
|
|
7446
7446
|
"kind": "javascript-module",
|
|
7447
7447
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -7634,25 +7634,77 @@
|
|
|
7634
7634
|
},
|
|
7635
7635
|
{
|
|
7636
7636
|
"kind": "javascript-module",
|
|
7637
|
-
"path": "src/lib/ai-
|
|
7637
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
7638
7638
|
"declarations": [
|
|
7639
7639
|
{
|
|
7640
7640
|
"kind": "variable",
|
|
7641
|
-
"name": "
|
|
7641
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7642
7642
|
"type": {
|
|
7643
7643
|
"text": "keyof HTMLElementTagNameMap"
|
|
7644
7644
|
},
|
|
7645
|
-
"default": "'forge-ai-
|
|
7645
|
+
"default": "'forge-ai-response-message'"
|
|
7646
7646
|
},
|
|
7647
7647
|
{
|
|
7648
7648
|
"kind": "class",
|
|
7649
7649
|
"description": "",
|
|
7650
|
-
"name": "
|
|
7651
|
-
"
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7650
|
+
"name": "AiResponseMessageComponent",
|
|
7651
|
+
"members": [],
|
|
7652
|
+
"superclass": {
|
|
7653
|
+
"name": "LitElement",
|
|
7654
|
+
"package": "lit"
|
|
7655
|
+
},
|
|
7656
|
+
"tagName": "forge-ai-response-message",
|
|
7657
|
+
"customElement": true,
|
|
7658
|
+
"summary": "A simple wrapper component for rendering assistant response message content."
|
|
7659
|
+
}
|
|
7660
|
+
],
|
|
7661
|
+
"exports": [
|
|
7662
|
+
{
|
|
7663
|
+
"kind": "js",
|
|
7664
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7665
|
+
"declaration": {
|
|
7666
|
+
"name": "AiResponseMessageComponentTagName",
|
|
7667
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7668
|
+
}
|
|
7669
|
+
},
|
|
7670
|
+
{
|
|
7671
|
+
"kind": "js",
|
|
7672
|
+
"name": "AiResponseMessageComponent",
|
|
7673
|
+
"declaration": {
|
|
7674
|
+
"name": "AiResponseMessageComponent",
|
|
7675
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7676
|
+
}
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
"kind": "custom-element-definition",
|
|
7680
|
+
"declaration": {
|
|
7681
|
+
"name": "AiResponseMessageComponent",
|
|
7682
|
+
"module": "src/lib/ai-response-message/ai-response-message.ts"
|
|
7683
|
+
}
|
|
7684
|
+
}
|
|
7685
|
+
]
|
|
7686
|
+
},
|
|
7687
|
+
{
|
|
7688
|
+
"kind": "javascript-module",
|
|
7689
|
+
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
7690
|
+
"declarations": [
|
|
7691
|
+
{
|
|
7692
|
+
"kind": "variable",
|
|
7693
|
+
"name": "AiSidebarComponentTagName",
|
|
7694
|
+
"type": {
|
|
7695
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
7696
|
+
},
|
|
7697
|
+
"default": "'forge-ai-sidebar'"
|
|
7698
|
+
},
|
|
7699
|
+
{
|
|
7700
|
+
"kind": "class",
|
|
7701
|
+
"description": "",
|
|
7702
|
+
"name": "AiSidebarComponent",
|
|
7703
|
+
"slots": [
|
|
7704
|
+
{
|
|
7705
|
+
"description": "Default slot for sidebar content (typically ai-chat-interface)",
|
|
7706
|
+
"name": ""
|
|
7707
|
+
}
|
|
7656
7708
|
],
|
|
7657
7709
|
"members": [
|
|
7658
7710
|
{
|
|
@@ -7919,6 +7971,89 @@
|
|
|
7919
7971
|
}
|
|
7920
7972
|
]
|
|
7921
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
|
+
},
|
|
7922
8057
|
{
|
|
7923
8058
|
"kind": "javascript-module",
|
|
7924
8059
|
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
@@ -8082,301 +8217,321 @@
|
|
|
8082
8217
|
},
|
|
8083
8218
|
{
|
|
8084
8219
|
"kind": "javascript-module",
|
|
8085
|
-
"path": "src/lib/ai-
|
|
8220
|
+
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
8086
8221
|
"declarations": [
|
|
8087
8222
|
{
|
|
8088
8223
|
"kind": "variable",
|
|
8089
|
-
"name": "
|
|
8224
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8090
8225
|
"type": {
|
|
8091
8226
|
"text": "keyof HTMLElementTagNameMap"
|
|
8092
8227
|
},
|
|
8093
|
-
"default": "'forge-ai-
|
|
8228
|
+
"default": "'forge-ai-thinking-indicator'"
|
|
8094
8229
|
},
|
|
8095
8230
|
{
|
|
8096
8231
|
"kind": "class",
|
|
8097
8232
|
"description": "",
|
|
8098
|
-
"name": "
|
|
8099
|
-
"
|
|
8233
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8234
|
+
"members": [
|
|
8100
8235
|
{
|
|
8101
|
-
"
|
|
8102
|
-
"name": "
|
|
8236
|
+
"kind": "field",
|
|
8237
|
+
"name": "showText",
|
|
8238
|
+
"type": {
|
|
8239
|
+
"text": "boolean"
|
|
8240
|
+
},
|
|
8241
|
+
"privacy": "public",
|
|
8242
|
+
"default": "false",
|
|
8243
|
+
"attribute": "show-text"
|
|
8103
8244
|
},
|
|
8104
8245
|
{
|
|
8105
|
-
"
|
|
8106
|
-
"name": "
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8246
|
+
"kind": "field",
|
|
8247
|
+
"name": "initialDelay",
|
|
8248
|
+
"type": {
|
|
8249
|
+
"text": "number"
|
|
8250
|
+
},
|
|
8251
|
+
"privacy": "public",
|
|
8252
|
+
"default": "0",
|
|
8253
|
+
"attribute": "initial-delay"
|
|
8254
|
+
},
|
|
8110
8255
|
{
|
|
8111
8256
|
"kind": "field",
|
|
8112
|
-
"name": "
|
|
8257
|
+
"name": "cycleInterval",
|
|
8113
8258
|
"type": {
|
|
8114
|
-
"text": "
|
|
8259
|
+
"text": "number"
|
|
8115
8260
|
},
|
|
8116
8261
|
"privacy": "public",
|
|
8117
|
-
"default": "
|
|
8118
|
-
"attribute": "
|
|
8262
|
+
"default": "5000",
|
|
8263
|
+
"attribute": "cycle-interval"
|
|
8119
8264
|
}
|
|
8120
8265
|
],
|
|
8121
8266
|
"attributes": [
|
|
8122
8267
|
{
|
|
8123
|
-
"name": "
|
|
8268
|
+
"name": "show-text",
|
|
8124
8269
|
"type": {
|
|
8125
|
-
"text": "
|
|
8270
|
+
"text": "boolean"
|
|
8126
8271
|
},
|
|
8127
|
-
"default": "
|
|
8128
|
-
"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"
|
|
8129
8290
|
}
|
|
8130
8291
|
],
|
|
8131
8292
|
"superclass": {
|
|
8132
8293
|
"name": "LitElement",
|
|
8133
8294
|
"package": "lit"
|
|
8134
8295
|
},
|
|
8135
|
-
"tagName": "forge-ai-
|
|
8296
|
+
"tagName": "forge-ai-thinking-indicator",
|
|
8136
8297
|
"customElement": true,
|
|
8137
|
-
"summary": "
|
|
8298
|
+
"summary": "A thinking indicator component that displays three animated dots to show that the system is processing or awaiting a response."
|
|
8138
8299
|
}
|
|
8139
8300
|
],
|
|
8140
8301
|
"exports": [
|
|
8141
8302
|
{
|
|
8142
8303
|
"kind": "js",
|
|
8143
|
-
"name": "
|
|
8304
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8144
8305
|
"declaration": {
|
|
8145
|
-
"name": "
|
|
8146
|
-
"module": "src/lib/ai-
|
|
8306
|
+
"name": "AiThinkingIndicatorComponentTagName",
|
|
8307
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8147
8308
|
}
|
|
8148
8309
|
},
|
|
8149
8310
|
{
|
|
8150
8311
|
"kind": "js",
|
|
8151
|
-
"name": "
|
|
8312
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8152
8313
|
"declaration": {
|
|
8153
|
-
"name": "
|
|
8154
|
-
"module": "src/lib/ai-
|
|
8314
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8315
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8155
8316
|
}
|
|
8156
8317
|
},
|
|
8157
8318
|
{
|
|
8158
8319
|
"kind": "custom-element-definition",
|
|
8159
8320
|
"declaration": {
|
|
8160
|
-
"name": "
|
|
8161
|
-
"module": "src/lib/ai-
|
|
8321
|
+
"name": "AiThinkingIndicatorComponent",
|
|
8322
|
+
"module": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts"
|
|
8162
8323
|
}
|
|
8163
8324
|
}
|
|
8164
8325
|
]
|
|
8165
8326
|
},
|
|
8166
8327
|
{
|
|
8167
8328
|
"kind": "javascript-module",
|
|
8168
|
-
"path": "src/lib/ai-
|
|
8329
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8169
8330
|
"declarations": [
|
|
8170
8331
|
{
|
|
8171
8332
|
"kind": "variable",
|
|
8172
|
-
"name": "
|
|
8333
|
+
"name": "AiThreadsComponentTagName",
|
|
8173
8334
|
"type": {
|
|
8174
8335
|
"text": "keyof HTMLElementTagNameMap"
|
|
8175
8336
|
},
|
|
8176
|
-
"default": "'forge-ai-
|
|
8337
|
+
"default": "'forge-ai-threads'"
|
|
8177
8338
|
},
|
|
8178
8339
|
{
|
|
8179
8340
|
"kind": "class",
|
|
8180
8341
|
"description": "",
|
|
8181
|
-
"name": "
|
|
8182
|
-
"
|
|
8342
|
+
"name": "AiThreadsComponent",
|
|
8343
|
+
"slots": [
|
|
8183
8344
|
{
|
|
8184
|
-
"description": "
|
|
8185
|
-
"name": "
|
|
8345
|
+
"description": "Default slot for chatbot component",
|
|
8346
|
+
"name": ""
|
|
8186
8347
|
}
|
|
8187
8348
|
],
|
|
8188
8349
|
"members": [
|
|
8189
8350
|
{
|
|
8190
8351
|
"kind": "field",
|
|
8191
|
-
"name": "
|
|
8352
|
+
"name": "threads",
|
|
8192
8353
|
"type": {
|
|
8193
|
-
"text": "
|
|
8354
|
+
"text": "Thread[]"
|
|
8194
8355
|
},
|
|
8195
8356
|
"privacy": "public",
|
|
8196
8357
|
"default": "[]",
|
|
8197
|
-
"description": "Array of
|
|
8358
|
+
"description": "Array of threads to display in the navigation list",
|
|
8359
|
+
"attribute": "threads"
|
|
8360
|
+
}
|
|
8361
|
+
],
|
|
8362
|
+
"events": [
|
|
8363
|
+
{
|
|
8364
|
+
"type": {
|
|
8365
|
+
"text": "CustomEvent<ForgeAiThreadsSelectEventData>"
|
|
8366
|
+
},
|
|
8367
|
+
"description": "Fired when a thread is selected.",
|
|
8368
|
+
"name": "forge-ai-threads-select"
|
|
8198
8369
|
},
|
|
8199
8370
|
{
|
|
8200
|
-
"kind": "field",
|
|
8201
|
-
"name": "variant",
|
|
8202
8371
|
"type": {
|
|
8203
|
-
"text": "
|
|
8372
|
+
"text": "CustomEvent"
|
|
8204
8373
|
},
|
|
8205
|
-
"
|
|
8206
|
-
"
|
|
8207
|
-
|
|
8208
|
-
"attribute": "variant"
|
|
8209
|
-
}
|
|
8210
|
-
],
|
|
8211
|
-
"events": [
|
|
8374
|
+
"description": "Fired when the new chat button is clicked.",
|
|
8375
|
+
"name": "forge-ai-threads-new-chat"
|
|
8376
|
+
},
|
|
8212
8377
|
{
|
|
8213
8378
|
"type": {
|
|
8214
|
-
"text": "CustomEvent
|
|
8379
|
+
"text": "CustomEvent"
|
|
8215
8380
|
},
|
|
8216
|
-
"description": "Fired when
|
|
8217
|
-
"name": "forge-ai-
|
|
8381
|
+
"description": "Fired when the clear history button is clicked.",
|
|
8382
|
+
"name": "forge-ai-threads-clear-history"
|
|
8218
8383
|
}
|
|
8219
8384
|
],
|
|
8220
8385
|
"attributes": [
|
|
8221
8386
|
{
|
|
8222
|
-
"name": "
|
|
8387
|
+
"name": "threads",
|
|
8223
8388
|
"type": {
|
|
8224
|
-
"text": "
|
|
8389
|
+
"text": "Thread[]"
|
|
8225
8390
|
},
|
|
8226
|
-
"default": "
|
|
8227
|
-
"description": "
|
|
8228
|
-
"fieldName": "
|
|
8391
|
+
"default": "[]",
|
|
8392
|
+
"description": "Array of threads to display in the navigation list",
|
|
8393
|
+
"fieldName": "threads"
|
|
8229
8394
|
}
|
|
8230
8395
|
],
|
|
8231
8396
|
"superclass": {
|
|
8232
8397
|
"name": "LitElement",
|
|
8233
8398
|
"package": "lit"
|
|
8234
8399
|
},
|
|
8235
|
-
"tagName": "forge-ai-
|
|
8236
|
-
"customElement": true
|
|
8237
|
-
"states": [
|
|
8238
|
-
{
|
|
8239
|
-
"name": "inline",
|
|
8240
|
-
"description": "The suggestions are displayed inline."
|
|
8241
|
-
},
|
|
8242
|
-
{
|
|
8243
|
-
"name": "block",
|
|
8244
|
-
"description": "The suggestions are displayed as blocks."
|
|
8245
|
-
}
|
|
8246
|
-
]
|
|
8400
|
+
"tagName": "forge-ai-threads",
|
|
8401
|
+
"customElement": true
|
|
8247
8402
|
}
|
|
8248
8403
|
],
|
|
8249
8404
|
"exports": [
|
|
8250
8405
|
{
|
|
8251
8406
|
"kind": "js",
|
|
8252
|
-
"name": "
|
|
8407
|
+
"name": "AiThreadsComponentTagName",
|
|
8253
8408
|
"declaration": {
|
|
8254
|
-
"name": "
|
|
8255
|
-
"module": "src/lib/ai-
|
|
8409
|
+
"name": "AiThreadsComponentTagName",
|
|
8410
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8256
8411
|
}
|
|
8257
8412
|
},
|
|
8258
8413
|
{
|
|
8259
8414
|
"kind": "js",
|
|
8260
|
-
"name": "
|
|
8415
|
+
"name": "AiThreadsComponent",
|
|
8261
8416
|
"declaration": {
|
|
8262
|
-
"name": "
|
|
8263
|
-
"module": "src/lib/ai-
|
|
8417
|
+
"name": "AiThreadsComponent",
|
|
8418
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8264
8419
|
}
|
|
8265
8420
|
},
|
|
8266
8421
|
{
|
|
8267
8422
|
"kind": "custom-element-definition",
|
|
8268
8423
|
"declaration": {
|
|
8269
|
-
"name": "
|
|
8270
|
-
"module": "src/lib/ai-
|
|
8424
|
+
"name": "AiThreadsComponent",
|
|
8425
|
+
"module": "src/lib/ai-threads/ai-threads.ts"
|
|
8271
8426
|
}
|
|
8272
8427
|
}
|
|
8273
8428
|
]
|
|
8274
8429
|
},
|
|
8275
8430
|
{
|
|
8276
8431
|
"kind": "javascript-module",
|
|
8277
|
-
"path": "src/lib/ai-
|
|
8432
|
+
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
8278
8433
|
"declarations": [
|
|
8279
8434
|
{
|
|
8280
8435
|
"kind": "variable",
|
|
8281
|
-
"name": "
|
|
8436
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8282
8437
|
"type": {
|
|
8283
8438
|
"text": "keyof HTMLElementTagNameMap"
|
|
8284
8439
|
},
|
|
8285
|
-
"default": "'forge-ai-
|
|
8440
|
+
"default": "'forge-ai-suggestions'"
|
|
8286
8441
|
},
|
|
8287
8442
|
{
|
|
8288
8443
|
"kind": "class",
|
|
8289
8444
|
"description": "",
|
|
8290
|
-
"name": "
|
|
8445
|
+
"name": "AiSuggestionsComponent",
|
|
8446
|
+
"cssProperties": [
|
|
8447
|
+
{
|
|
8448
|
+
"description": "The maximum width of the suggestion buttons in inline layout.",
|
|
8449
|
+
"name": "--forge-ai-suggestion-max-width"
|
|
8450
|
+
}
|
|
8451
|
+
],
|
|
8291
8452
|
"members": [
|
|
8292
8453
|
{
|
|
8293
8454
|
"kind": "field",
|
|
8294
|
-
"name": "
|
|
8455
|
+
"name": "suggestions",
|
|
8295
8456
|
"type": {
|
|
8296
|
-
"text": "
|
|
8457
|
+
"text": "Suggestion[]"
|
|
8297
8458
|
},
|
|
8298
8459
|
"privacy": "public",
|
|
8299
|
-
"default": "
|
|
8300
|
-
"
|
|
8460
|
+
"default": "[]",
|
|
8461
|
+
"description": "Array of suggestion objects to display"
|
|
8301
8462
|
},
|
|
8302
8463
|
{
|
|
8303
8464
|
"kind": "field",
|
|
8304
|
-
"name": "
|
|
8465
|
+
"name": "variant",
|
|
8305
8466
|
"type": {
|
|
8306
|
-
"text": "
|
|
8467
|
+
"text": "AiSuggestionsVariant"
|
|
8307
8468
|
},
|
|
8308
8469
|
"privacy": "public",
|
|
8309
|
-
"default": "
|
|
8310
|
-
"
|
|
8311
|
-
|
|
8470
|
+
"default": "'inline'",
|
|
8471
|
+
"description": "Display variant for suggestions layout",
|
|
8472
|
+
"attribute": "variant"
|
|
8473
|
+
}
|
|
8474
|
+
],
|
|
8475
|
+
"events": [
|
|
8312
8476
|
{
|
|
8313
|
-
"kind": "field",
|
|
8314
|
-
"name": "cycleInterval",
|
|
8315
8477
|
"type": {
|
|
8316
|
-
"text": "
|
|
8478
|
+
"text": "CustomEvent<ForgeAiSuggestionsEventData>"
|
|
8317
8479
|
},
|
|
8318
|
-
"
|
|
8319
|
-
"
|
|
8320
|
-
"attribute": "cycle-interval"
|
|
8480
|
+
"description": "Fired when a suggestion is selected.",
|
|
8481
|
+
"name": "forge-ai-suggestions-select"
|
|
8321
8482
|
}
|
|
8322
8483
|
],
|
|
8323
8484
|
"attributes": [
|
|
8324
8485
|
{
|
|
8325
|
-
"name": "
|
|
8326
|
-
"type": {
|
|
8327
|
-
"text": "boolean"
|
|
8328
|
-
},
|
|
8329
|
-
"default": "false",
|
|
8330
|
-
"fieldName": "showText"
|
|
8331
|
-
},
|
|
8332
|
-
{
|
|
8333
|
-
"name": "initial-delay",
|
|
8334
|
-
"type": {
|
|
8335
|
-
"text": "number"
|
|
8336
|
-
},
|
|
8337
|
-
"default": "0",
|
|
8338
|
-
"fieldName": "initialDelay"
|
|
8339
|
-
},
|
|
8340
|
-
{
|
|
8341
|
-
"name": "cycle-interval",
|
|
8486
|
+
"name": "variant",
|
|
8342
8487
|
"type": {
|
|
8343
|
-
"text": "
|
|
8488
|
+
"text": "AiSuggestionsVariant"
|
|
8344
8489
|
},
|
|
8345
|
-
"default": "
|
|
8346
|
-
"
|
|
8490
|
+
"default": "'inline'",
|
|
8491
|
+
"description": "Display variant for suggestions layout",
|
|
8492
|
+
"fieldName": "variant"
|
|
8347
8493
|
}
|
|
8348
8494
|
],
|
|
8349
8495
|
"superclass": {
|
|
8350
8496
|
"name": "LitElement",
|
|
8351
8497
|
"package": "lit"
|
|
8352
8498
|
},
|
|
8353
|
-
"tagName": "forge-ai-
|
|
8499
|
+
"tagName": "forge-ai-suggestions",
|
|
8354
8500
|
"customElement": true,
|
|
8355
|
-
"
|
|
8501
|
+
"states": [
|
|
8502
|
+
{
|
|
8503
|
+
"name": "inline",
|
|
8504
|
+
"description": "The suggestions are displayed inline."
|
|
8505
|
+
},
|
|
8506
|
+
{
|
|
8507
|
+
"name": "block",
|
|
8508
|
+
"description": "The suggestions are displayed as blocks."
|
|
8509
|
+
}
|
|
8510
|
+
]
|
|
8356
8511
|
}
|
|
8357
8512
|
],
|
|
8358
8513
|
"exports": [
|
|
8359
8514
|
{
|
|
8360
8515
|
"kind": "js",
|
|
8361
|
-
"name": "
|
|
8516
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8362
8517
|
"declaration": {
|
|
8363
|
-
"name": "
|
|
8364
|
-
"module": "src/lib/ai-
|
|
8518
|
+
"name": "AiSuggestionsComponentTagName",
|
|
8519
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8365
8520
|
}
|
|
8366
8521
|
},
|
|
8367
8522
|
{
|
|
8368
8523
|
"kind": "js",
|
|
8369
|
-
"name": "
|
|
8524
|
+
"name": "AiSuggestionsComponent",
|
|
8370
8525
|
"declaration": {
|
|
8371
|
-
"name": "
|
|
8372
|
-
"module": "src/lib/ai-
|
|
8526
|
+
"name": "AiSuggestionsComponent",
|
|
8527
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8373
8528
|
}
|
|
8374
8529
|
},
|
|
8375
8530
|
{
|
|
8376
8531
|
"kind": "custom-element-definition",
|
|
8377
8532
|
"declaration": {
|
|
8378
|
-
"name": "
|
|
8379
|
-
"module": "src/lib/ai-
|
|
8533
|
+
"name": "AiSuggestionsComponent",
|
|
8534
|
+
"module": "src/lib/ai-suggestions/ai-suggestions.ts"
|
|
8380
8535
|
}
|
|
8381
8536
|
}
|
|
8382
8537
|
]
|
|
@@ -8397,140 +8552,113 @@
|
|
|
8397
8552
|
"kind": "class",
|
|
8398
8553
|
"description": "",
|
|
8399
8554
|
"name": "AiUserMessageComponent",
|
|
8400
|
-
"members": [],
|
|
8401
|
-
"superclass": {
|
|
8402
|
-
"name": "LitElement",
|
|
8403
|
-
"package": "lit"
|
|
8404
|
-
},
|
|
8405
|
-
"tagName": "forge-ai-user-message",
|
|
8406
|
-
"customElement": true
|
|
8407
|
-
}
|
|
8408
|
-
],
|
|
8409
|
-
"exports": [
|
|
8410
|
-
{
|
|
8411
|
-
"kind": "js",
|
|
8412
|
-
"name": "AiUserMessageComponentTagName",
|
|
8413
|
-
"declaration": {
|
|
8414
|
-
"name": "AiUserMessageComponentTagName",
|
|
8415
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8416
|
-
}
|
|
8417
|
-
},
|
|
8418
|
-
{
|
|
8419
|
-
"kind": "js",
|
|
8420
|
-
"name": "AiUserMessageComponent",
|
|
8421
|
-
"declaration": {
|
|
8422
|
-
"name": "AiUserMessageComponent",
|
|
8423
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8424
|
-
}
|
|
8425
|
-
},
|
|
8426
|
-
{
|
|
8427
|
-
"kind": "custom-element-definition",
|
|
8428
|
-
"declaration": {
|
|
8429
|
-
"name": "AiUserMessageComponent",
|
|
8430
|
-
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8431
|
-
}
|
|
8432
|
-
}
|
|
8433
|
-
]
|
|
8434
|
-
},
|
|
8435
|
-
{
|
|
8436
|
-
"kind": "javascript-module",
|
|
8437
|
-
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
8438
|
-
"declarations": [
|
|
8439
|
-
{
|
|
8440
|
-
"kind": "variable",
|
|
8441
|
-
"name": "AiThreadsComponentTagName",
|
|
8442
|
-
"type": {
|
|
8443
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
8444
|
-
},
|
|
8445
|
-
"default": "'forge-ai-threads'"
|
|
8446
|
-
},
|
|
8447
|
-
{
|
|
8448
|
-
"kind": "class",
|
|
8449
|
-
"description": "",
|
|
8450
|
-
"name": "AiThreadsComponent",
|
|
8451
|
-
"slots": [
|
|
8452
|
-
{
|
|
8453
|
-
"description": "Default slot for chatbot component",
|
|
8454
|
-
"name": ""
|
|
8455
|
-
}
|
|
8456
|
-
],
|
|
8457
8555
|
"members": [
|
|
8458
8556
|
{
|
|
8459
8557
|
"kind": "field",
|
|
8460
|
-
"name": "
|
|
8558
|
+
"name": "timestamp",
|
|
8559
|
+
"type": {
|
|
8560
|
+
"text": "number | undefined"
|
|
8561
|
+
},
|
|
8562
|
+
"privacy": "public"
|
|
8563
|
+
},
|
|
8564
|
+
{
|
|
8565
|
+
"kind": "field",
|
|
8566
|
+
"name": "messageId",
|
|
8567
|
+
"type": {
|
|
8568
|
+
"text": "string | undefined"
|
|
8569
|
+
},
|
|
8570
|
+
"privacy": "public",
|
|
8571
|
+
"attribute": "message-id"
|
|
8572
|
+
},
|
|
8573
|
+
{
|
|
8574
|
+
"kind": "field",
|
|
8575
|
+
"name": "streaming",
|
|
8461
8576
|
"type": {
|
|
8462
|
-
"text": "
|
|
8577
|
+
"text": "boolean"
|
|
8463
8578
|
},
|
|
8464
8579
|
"privacy": "public",
|
|
8465
|
-
"default": "
|
|
8466
|
-
"
|
|
8467
|
-
|
|
8580
|
+
"default": "false",
|
|
8581
|
+
"attribute": "streaming"
|
|
8582
|
+
},
|
|
8583
|
+
{
|
|
8584
|
+
"kind": "field",
|
|
8585
|
+
"name": "content",
|
|
8586
|
+
"type": {
|
|
8587
|
+
"text": "string | undefined"
|
|
8588
|
+
},
|
|
8589
|
+
"privacy": "public"
|
|
8468
8590
|
}
|
|
8469
8591
|
],
|
|
8470
8592
|
"events": [
|
|
8471
8593
|
{
|
|
8594
|
+
"name": "forge-ai-user-message-copy",
|
|
8472
8595
|
"type": {
|
|
8473
|
-
"text": "CustomEvent<
|
|
8596
|
+
"text": "CustomEvent<ForgeAiUserMessageCopyEventData>"
|
|
8474
8597
|
},
|
|
8475
|
-
"description": "Fired when
|
|
8476
|
-
"name": "forge-ai-threads-select"
|
|
8598
|
+
"description": "Fired when user clicks copy button"
|
|
8477
8599
|
},
|
|
8478
8600
|
{
|
|
8601
|
+
"name": "forge-ai-user-message-resend",
|
|
8479
8602
|
"type": {
|
|
8480
|
-
"text": "CustomEvent"
|
|
8603
|
+
"text": "CustomEvent<ForgeAiUserMessageResendEventData>"
|
|
8481
8604
|
},
|
|
8482
|
-
"description": "Fired when
|
|
8483
|
-
"name": "forge-ai-threads-new-chat"
|
|
8605
|
+
"description": "Fired when user clicks resend button"
|
|
8484
8606
|
},
|
|
8485
8607
|
{
|
|
8608
|
+
"name": "forge-ai-user-message-edit",
|
|
8486
8609
|
"type": {
|
|
8487
|
-
"text": "CustomEvent"
|
|
8610
|
+
"text": "CustomEvent<ForgeAiUserMessageEditEventData>"
|
|
8488
8611
|
},
|
|
8489
|
-
"description": "Fired when
|
|
8490
|
-
"name": "forge-ai-threads-clear-history"
|
|
8612
|
+
"description": "Fired when user saves edited message"
|
|
8491
8613
|
}
|
|
8492
8614
|
],
|
|
8493
8615
|
"attributes": [
|
|
8494
8616
|
{
|
|
8495
|
-
"name": "
|
|
8617
|
+
"name": "message-id",
|
|
8496
8618
|
"type": {
|
|
8497
|
-
"text": "
|
|
8619
|
+
"text": "string | undefined"
|
|
8498
8620
|
},
|
|
8499
|
-
"
|
|
8500
|
-
|
|
8501
|
-
|
|
8621
|
+
"fieldName": "messageId"
|
|
8622
|
+
},
|
|
8623
|
+
{
|
|
8624
|
+
"name": "streaming",
|
|
8625
|
+
"type": {
|
|
8626
|
+
"text": "boolean"
|
|
8627
|
+
},
|
|
8628
|
+
"default": "false",
|
|
8629
|
+
"fieldName": "streaming"
|
|
8502
8630
|
}
|
|
8503
8631
|
],
|
|
8504
8632
|
"superclass": {
|
|
8505
8633
|
"name": "LitElement",
|
|
8506
8634
|
"package": "lit"
|
|
8507
8635
|
},
|
|
8508
|
-
"tagName": "forge-ai-
|
|
8636
|
+
"tagName": "forge-ai-user-message",
|
|
8509
8637
|
"customElement": true
|
|
8510
8638
|
}
|
|
8511
8639
|
],
|
|
8512
8640
|
"exports": [
|
|
8513
8641
|
{
|
|
8514
8642
|
"kind": "js",
|
|
8515
|
-
"name": "
|
|
8643
|
+
"name": "AiUserMessageComponentTagName",
|
|
8516
8644
|
"declaration": {
|
|
8517
|
-
"name": "
|
|
8518
|
-
"module": "src/lib/ai-
|
|
8645
|
+
"name": "AiUserMessageComponentTagName",
|
|
8646
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8519
8647
|
}
|
|
8520
8648
|
},
|
|
8521
8649
|
{
|
|
8522
8650
|
"kind": "js",
|
|
8523
|
-
"name": "
|
|
8651
|
+
"name": "AiUserMessageComponent",
|
|
8524
8652
|
"declaration": {
|
|
8525
|
-
"name": "
|
|
8526
|
-
"module": "src/lib/ai-
|
|
8653
|
+
"name": "AiUserMessageComponent",
|
|
8654
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8527
8655
|
}
|
|
8528
8656
|
},
|
|
8529
8657
|
{
|
|
8530
8658
|
"kind": "custom-element-definition",
|
|
8531
8659
|
"declaration": {
|
|
8532
|
-
"name": "
|
|
8533
|
-
"module": "src/lib/ai-
|
|
8660
|
+
"name": "AiUserMessageComponent",
|
|
8661
|
+
"module": "src/lib/ai-user-message/ai-user-message.ts"
|
|
8534
8662
|
}
|
|
8535
8663
|
}
|
|
8536
8664
|
]
|
|
@@ -9121,15 +9249,15 @@
|
|
|
9121
9249
|
},
|
|
9122
9250
|
{
|
|
9123
9251
|
"kind": "javascript-module",
|
|
9124
|
-
"path": "src/lib/core/
|
|
9252
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
9125
9253
|
"declarations": [
|
|
9126
9254
|
{
|
|
9127
9255
|
"kind": "class",
|
|
9128
9256
|
"description": "",
|
|
9129
|
-
"name": "
|
|
9257
|
+
"name": "ForgeAiOverlayComponent",
|
|
9130
9258
|
"slots": [
|
|
9131
9259
|
{
|
|
9132
|
-
"description": "The default slot for
|
|
9260
|
+
"description": "The default slot for overlay content.",
|
|
9133
9261
|
"name": ""
|
|
9134
9262
|
}
|
|
9135
9263
|
],
|
|
@@ -9142,18 +9270,18 @@
|
|
|
9142
9270
|
},
|
|
9143
9271
|
"privacy": "public",
|
|
9144
9272
|
"default": "null",
|
|
9145
|
-
"description": "The anchor element to position the
|
|
9273
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9146
9274
|
"attribute": "anchor"
|
|
9147
9275
|
},
|
|
9148
9276
|
{
|
|
9149
9277
|
"kind": "field",
|
|
9150
9278
|
"name": "placement",
|
|
9151
9279
|
"type": {
|
|
9152
|
-
"text": "
|
|
9280
|
+
"text": "OverlayPlacement"
|
|
9153
9281
|
},
|
|
9154
9282
|
"privacy": "public",
|
|
9155
9283
|
"default": "'bottom-start'",
|
|
9156
|
-
"description": "The placement of the
|
|
9284
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9157
9285
|
"attribute": "placement"
|
|
9158
9286
|
},
|
|
9159
9287
|
{
|
|
@@ -9163,8 +9291,8 @@
|
|
|
9163
9291
|
"text": "boolean"
|
|
9164
9292
|
},
|
|
9165
9293
|
"privacy": "public",
|
|
9166
|
-
"default": "
|
|
9167
|
-
"description": "Whether the
|
|
9294
|
+
"default": "true",
|
|
9295
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9168
9296
|
"attribute": "flip"
|
|
9169
9297
|
},
|
|
9170
9298
|
{
|
|
@@ -9175,7 +9303,7 @@
|
|
|
9175
9303
|
},
|
|
9176
9304
|
"privacy": "public",
|
|
9177
9305
|
"default": "false",
|
|
9178
|
-
"description": "Whether the
|
|
9306
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9179
9307
|
"attribute": "shift"
|
|
9180
9308
|
},
|
|
9181
9309
|
{
|
|
@@ -9186,30 +9314,30 @@
|
|
|
9186
9314
|
},
|
|
9187
9315
|
"privacy": "public",
|
|
9188
9316
|
"default": "false",
|
|
9189
|
-
"description": "Whether the
|
|
9317
|
+
"description": "Whether the overlay is open.",
|
|
9190
9318
|
"attribute": "open",
|
|
9191
9319
|
"reflects": true
|
|
9192
9320
|
},
|
|
9193
9321
|
{
|
|
9194
9322
|
"kind": "field",
|
|
9195
|
-
"name": "
|
|
9323
|
+
"name": "arrowElement",
|
|
9196
9324
|
"type": {
|
|
9197
|
-
"text": "
|
|
9325
|
+
"text": "HTMLElement | null"
|
|
9198
9326
|
},
|
|
9199
9327
|
"privacy": "public",
|
|
9200
|
-
"default": "
|
|
9201
|
-
"description": "
|
|
9202
|
-
"attribute": "
|
|
9328
|
+
"default": "null",
|
|
9329
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9330
|
+
"attribute": "arrowElement"
|
|
9203
9331
|
},
|
|
9204
9332
|
{
|
|
9205
9333
|
"kind": "field",
|
|
9206
9334
|
"name": "offset",
|
|
9207
9335
|
"type": {
|
|
9208
|
-
"text": "
|
|
9336
|
+
"text": "OverlayOffset | undefined"
|
|
9209
9337
|
},
|
|
9210
9338
|
"privacy": "public",
|
|
9211
9339
|
"default": "undefined",
|
|
9212
|
-
"description": "The offset of the
|
|
9340
|
+
"description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9213
9341
|
"attribute": "offset"
|
|
9214
9342
|
},
|
|
9215
9343
|
{
|
|
@@ -9220,7 +9348,7 @@
|
|
|
9220
9348
|
},
|
|
9221
9349
|
"privacy": "public",
|
|
9222
9350
|
"default": "'auto'",
|
|
9223
|
-
"description": "The dismiss mode for the
|
|
9351
|
+
"description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9224
9352
|
"attribute": "dismiss-mode"
|
|
9225
9353
|
}
|
|
9226
9354
|
],
|
|
@@ -9231,16 +9359,16 @@
|
|
|
9231
9359
|
"text": "Element | null"
|
|
9232
9360
|
},
|
|
9233
9361
|
"default": "null",
|
|
9234
|
-
"description": "The anchor element to position the
|
|
9362
|
+
"description": "The anchor element to position the overlay relative to.",
|
|
9235
9363
|
"fieldName": "anchor"
|
|
9236
9364
|
},
|
|
9237
9365
|
{
|
|
9238
9366
|
"name": "placement",
|
|
9239
9367
|
"type": {
|
|
9240
|
-
"text": "
|
|
9368
|
+
"text": "OverlayPlacement"
|
|
9241
9369
|
},
|
|
9242
9370
|
"default": "'bottom-start'",
|
|
9243
|
-
"description": "The placement of the
|
|
9371
|
+
"description": "The placement of the overlay relative to the anchor.",
|
|
9244
9372
|
"fieldName": "placement"
|
|
9245
9373
|
},
|
|
9246
9374
|
{
|
|
@@ -9248,8 +9376,8 @@
|
|
|
9248
9376
|
"type": {
|
|
9249
9377
|
"text": "boolean"
|
|
9250
9378
|
},
|
|
9251
|
-
"default": "
|
|
9252
|
-
"description": "Whether the
|
|
9379
|
+
"default": "true",
|
|
9380
|
+
"description": "Whether the overlay should flip to the opposite side when there's no space.",
|
|
9253
9381
|
"fieldName": "flip"
|
|
9254
9382
|
},
|
|
9255
9383
|
{
|
|
@@ -9258,7 +9386,7 @@
|
|
|
9258
9386
|
"text": "boolean"
|
|
9259
9387
|
},
|
|
9260
9388
|
"default": "false",
|
|
9261
|
-
"description": "Whether the
|
|
9389
|
+
"description": "Whether the overlay should shift to stay in view.",
|
|
9262
9390
|
"fieldName": "shift"
|
|
9263
9391
|
},
|
|
9264
9392
|
{
|
|
@@ -9267,25 +9395,25 @@
|
|
|
9267
9395
|
"text": "boolean"
|
|
9268
9396
|
},
|
|
9269
9397
|
"default": "false",
|
|
9270
|
-
"description": "Whether the
|
|
9398
|
+
"description": "Whether the overlay is open.",
|
|
9271
9399
|
"fieldName": "open"
|
|
9272
9400
|
},
|
|
9273
9401
|
{
|
|
9274
|
-
"name": "
|
|
9402
|
+
"name": "arrowElement",
|
|
9275
9403
|
"type": {
|
|
9276
|
-
"text": "
|
|
9404
|
+
"text": "HTMLElement | null"
|
|
9277
9405
|
},
|
|
9278
|
-
"default": "
|
|
9279
|
-
"description": "
|
|
9280
|
-
"fieldName": "
|
|
9406
|
+
"default": "null",
|
|
9407
|
+
"description": "The arrow element to position relative to the overlay.",
|
|
9408
|
+
"fieldName": "arrowElement"
|
|
9281
9409
|
},
|
|
9282
9410
|
{
|
|
9283
9411
|
"name": "offset",
|
|
9284
9412
|
"type": {
|
|
9285
|
-
"text": "
|
|
9413
|
+
"text": "OverlayOffset | undefined"
|
|
9286
9414
|
},
|
|
9287
9415
|
"default": "undefined",
|
|
9288
|
-
"description": "The offset of the
|
|
9416
|
+
"description": "The offset of the overlay from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9289
9417
|
"fieldName": "offset"
|
|
9290
9418
|
},
|
|
9291
9419
|
{
|
|
@@ -9294,7 +9422,7 @@
|
|
|
9294
9422
|
"text": "'auto' | 'manual'"
|
|
9295
9423
|
},
|
|
9296
9424
|
"default": "'auto'",
|
|
9297
|
-
"description": "The dismiss mode for the
|
|
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",
|
|
9298
9426
|
"fieldName": "dismissMode"
|
|
9299
9427
|
}
|
|
9300
9428
|
],
|
|
@@ -9302,41 +9430,103 @@
|
|
|
9302
9430
|
"name": "LitElement",
|
|
9303
9431
|
"package": "lit"
|
|
9304
9432
|
},
|
|
9305
|
-
"summary": "A
|
|
9306
|
-
"tagName": "forge-ai-
|
|
9433
|
+
"summary": "A low-level overlay component for internal use within AI components.",
|
|
9434
|
+
"tagName": "forge-ai-overlay",
|
|
9307
9435
|
"customElement": true
|
|
9308
9436
|
}
|
|
9309
9437
|
],
|
|
9310
9438
|
"exports": [
|
|
9311
9439
|
{
|
|
9312
9440
|
"kind": "js",
|
|
9313
|
-
"name": "
|
|
9441
|
+
"name": "ForgeAiOverlayComponent",
|
|
9314
9442
|
"declaration": {
|
|
9315
|
-
"name": "
|
|
9316
|
-
"module": "src/lib/core/
|
|
9443
|
+
"name": "ForgeAiOverlayComponent",
|
|
9444
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9317
9445
|
}
|
|
9318
9446
|
},
|
|
9319
9447
|
{
|
|
9320
9448
|
"kind": "custom-element-definition",
|
|
9321
|
-
"name": "forge-ai-
|
|
9449
|
+
"name": "forge-ai-overlay",
|
|
9322
9450
|
"declaration": {
|
|
9323
|
-
"name": "
|
|
9324
|
-
"module": "src/lib/core/
|
|
9451
|
+
"name": "ForgeAiOverlayComponent",
|
|
9452
|
+
"module": "src/lib/core/overlay/overlay.ts"
|
|
9325
9453
|
}
|
|
9326
9454
|
}
|
|
9327
9455
|
]
|
|
9328
9456
|
},
|
|
9329
9457
|
{
|
|
9330
9458
|
"kind": "javascript-module",
|
|
9331
|
-
"path": "src/lib/
|
|
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",
|
|
9493
|
+
"type": {
|
|
9494
|
+
"text": "ToolCall<TableData>"
|
|
9495
|
+
},
|
|
9496
|
+
"privacy": "public",
|
|
9497
|
+
"description": "Tool call data containing table configuration and data"
|
|
9498
|
+
}
|
|
9499
|
+
],
|
|
9500
|
+
"superclass": {
|
|
9501
|
+
"name": "LitElement",
|
|
9502
|
+
"package": "lit"
|
|
9503
|
+
},
|
|
9504
|
+
"tagName": "forge-ai-tool-data-table",
|
|
9505
|
+
"customElement": true
|
|
9506
|
+
}
|
|
9507
|
+
],
|
|
9508
|
+
"exports": [
|
|
9509
|
+
{
|
|
9510
|
+
"kind": "custom-element-definition",
|
|
9511
|
+
"name": "forge-ai-tool-data-table",
|
|
9512
|
+
"declaration": {
|
|
9513
|
+
"name": "DataTableToolElement",
|
|
9514
|
+
"module": "src/lib/tools/ai-data-table/ai-data-table.ts"
|
|
9515
|
+
}
|
|
9516
|
+
}
|
|
9517
|
+
]
|
|
9518
|
+
},
|
|
9519
|
+
{
|
|
9520
|
+
"kind": "javascript-module",
|
|
9521
|
+
"path": "src/lib/core/popover/popover.ts",
|
|
9332
9522
|
"declarations": [
|
|
9333
9523
|
{
|
|
9334
9524
|
"kind": "class",
|
|
9335
9525
|
"description": "",
|
|
9336
|
-
"name": "
|
|
9526
|
+
"name": "ForgeAiPopoverComponent",
|
|
9337
9527
|
"slots": [
|
|
9338
9528
|
{
|
|
9339
|
-
"description": "The default slot for
|
|
9529
|
+
"description": "The default slot for popover content.",
|
|
9340
9530
|
"name": ""
|
|
9341
9531
|
}
|
|
9342
9532
|
],
|
|
@@ -9349,18 +9539,18 @@
|
|
|
9349
9539
|
},
|
|
9350
9540
|
"privacy": "public",
|
|
9351
9541
|
"default": "null",
|
|
9352
|
-
"description": "The anchor element to position the
|
|
9542
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9353
9543
|
"attribute": "anchor"
|
|
9354
9544
|
},
|
|
9355
9545
|
{
|
|
9356
9546
|
"kind": "field",
|
|
9357
9547
|
"name": "placement",
|
|
9358
9548
|
"type": {
|
|
9359
|
-
"text": "
|
|
9549
|
+
"text": "PopoverPlacement"
|
|
9360
9550
|
},
|
|
9361
9551
|
"privacy": "public",
|
|
9362
9552
|
"default": "'bottom-start'",
|
|
9363
|
-
"description": "The placement of the
|
|
9553
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9364
9554
|
"attribute": "placement"
|
|
9365
9555
|
},
|
|
9366
9556
|
{
|
|
@@ -9370,8 +9560,8 @@
|
|
|
9370
9560
|
"text": "boolean"
|
|
9371
9561
|
},
|
|
9372
9562
|
"privacy": "public",
|
|
9373
|
-
"default": "
|
|
9374
|
-
"description": "Whether the
|
|
9563
|
+
"default": "false",
|
|
9564
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9375
9565
|
"attribute": "flip"
|
|
9376
9566
|
},
|
|
9377
9567
|
{
|
|
@@ -9382,7 +9572,7 @@
|
|
|
9382
9572
|
},
|
|
9383
9573
|
"privacy": "public",
|
|
9384
9574
|
"default": "false",
|
|
9385
|
-
"description": "Whether the
|
|
9575
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9386
9576
|
"attribute": "shift"
|
|
9387
9577
|
},
|
|
9388
9578
|
{
|
|
@@ -9393,30 +9583,30 @@
|
|
|
9393
9583
|
},
|
|
9394
9584
|
"privacy": "public",
|
|
9395
9585
|
"default": "false",
|
|
9396
|
-
"description": "Whether the
|
|
9586
|
+
"description": "Whether the popover is open.",
|
|
9397
9587
|
"attribute": "open",
|
|
9398
9588
|
"reflects": true
|
|
9399
9589
|
},
|
|
9400
9590
|
{
|
|
9401
9591
|
"kind": "field",
|
|
9402
|
-
"name": "
|
|
9592
|
+
"name": "arrow",
|
|
9403
9593
|
"type": {
|
|
9404
|
-
"text": "
|
|
9594
|
+
"text": "boolean"
|
|
9405
9595
|
},
|
|
9406
9596
|
"privacy": "public",
|
|
9407
|
-
"default": "
|
|
9408
|
-
"description": "
|
|
9409
|
-
"attribute": "
|
|
9597
|
+
"default": "false",
|
|
9598
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9599
|
+
"attribute": "arrow"
|
|
9410
9600
|
},
|
|
9411
9601
|
{
|
|
9412
9602
|
"kind": "field",
|
|
9413
9603
|
"name": "offset",
|
|
9414
9604
|
"type": {
|
|
9415
|
-
"text": "
|
|
9605
|
+
"text": "PopoverOffset | undefined"
|
|
9416
9606
|
},
|
|
9417
9607
|
"privacy": "public",
|
|
9418
9608
|
"default": "undefined",
|
|
9419
|
-
"description": "The offset of the
|
|
9609
|
+
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9420
9610
|
"attribute": "offset"
|
|
9421
9611
|
},
|
|
9422
9612
|
{
|
|
@@ -9427,7 +9617,7 @@
|
|
|
9427
9617
|
},
|
|
9428
9618
|
"privacy": "public",
|
|
9429
9619
|
"default": "'auto'",
|
|
9430
|
-
"description": "The dismiss mode for the
|
|
9620
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9431
9621
|
"attribute": "dismiss-mode"
|
|
9432
9622
|
}
|
|
9433
9623
|
],
|
|
@@ -9438,16 +9628,16 @@
|
|
|
9438
9628
|
"text": "Element | null"
|
|
9439
9629
|
},
|
|
9440
9630
|
"default": "null",
|
|
9441
|
-
"description": "The anchor element to position the
|
|
9631
|
+
"description": "The anchor element to position the popover relative to.",
|
|
9442
9632
|
"fieldName": "anchor"
|
|
9443
9633
|
},
|
|
9444
9634
|
{
|
|
9445
9635
|
"name": "placement",
|
|
9446
9636
|
"type": {
|
|
9447
|
-
"text": "
|
|
9637
|
+
"text": "PopoverPlacement"
|
|
9448
9638
|
},
|
|
9449
9639
|
"default": "'bottom-start'",
|
|
9450
|
-
"description": "The placement of the
|
|
9640
|
+
"description": "The placement of the popover relative to the anchor.",
|
|
9451
9641
|
"fieldName": "placement"
|
|
9452
9642
|
},
|
|
9453
9643
|
{
|
|
@@ -9455,8 +9645,8 @@
|
|
|
9455
9645
|
"type": {
|
|
9456
9646
|
"text": "boolean"
|
|
9457
9647
|
},
|
|
9458
|
-
"default": "
|
|
9459
|
-
"description": "Whether the
|
|
9648
|
+
"default": "false",
|
|
9649
|
+
"description": "Whether the popover should flip to the opposite side when there's no space.",
|
|
9460
9650
|
"fieldName": "flip"
|
|
9461
9651
|
},
|
|
9462
9652
|
{
|
|
@@ -9465,7 +9655,7 @@
|
|
|
9465
9655
|
"text": "boolean"
|
|
9466
9656
|
},
|
|
9467
9657
|
"default": "false",
|
|
9468
|
-
"description": "Whether the
|
|
9658
|
+
"description": "Whether the popover should shift to stay in view.",
|
|
9469
9659
|
"fieldName": "shift"
|
|
9470
9660
|
},
|
|
9471
9661
|
{
|
|
@@ -9474,25 +9664,25 @@
|
|
|
9474
9664
|
"text": "boolean"
|
|
9475
9665
|
},
|
|
9476
9666
|
"default": "false",
|
|
9477
|
-
"description": "Whether the
|
|
9667
|
+
"description": "Whether the popover is open.",
|
|
9478
9668
|
"fieldName": "open"
|
|
9479
9669
|
},
|
|
9480
9670
|
{
|
|
9481
|
-
"name": "
|
|
9671
|
+
"name": "arrow",
|
|
9482
9672
|
"type": {
|
|
9483
|
-
"text": "
|
|
9673
|
+
"text": "boolean"
|
|
9484
9674
|
},
|
|
9485
|
-
"default": "
|
|
9486
|
-
"description": "
|
|
9487
|
-
"fieldName": "
|
|
9675
|
+
"default": "false",
|
|
9676
|
+
"description": "Whether to show an arrow pointing to the anchor element.",
|
|
9677
|
+
"fieldName": "arrow"
|
|
9488
9678
|
},
|
|
9489
9679
|
{
|
|
9490
9680
|
"name": "offset",
|
|
9491
9681
|
"type": {
|
|
9492
|
-
"text": "
|
|
9682
|
+
"text": "PopoverOffset | undefined"
|
|
9493
9683
|
},
|
|
9494
9684
|
"default": "undefined",
|
|
9495
|
-
"description": "The offset of the
|
|
9685
|
+
"description": "The offset of the popover from the anchor element.\nCan be a number (main axis offset) or an object with mainAxis, crossAxis, and alignmentAxis properties.",
|
|
9496
9686
|
"fieldName": "offset"
|
|
9497
9687
|
},
|
|
9498
9688
|
{
|
|
@@ -9501,7 +9691,7 @@
|
|
|
9501
9691
|
"text": "'auto' | 'manual'"
|
|
9502
9692
|
},
|
|
9503
9693
|
"default": "'auto'",
|
|
9504
|
-
"description": "The dismiss mode for the
|
|
9694
|
+
"description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
|
|
9505
9695
|
"fieldName": "dismissMode"
|
|
9506
9696
|
}
|
|
9507
9697
|
],
|
|
@@ -9509,26 +9699,26 @@
|
|
|
9509
9699
|
"name": "LitElement",
|
|
9510
9700
|
"package": "lit"
|
|
9511
9701
|
},
|
|
9512
|
-
"summary": "A
|
|
9513
|
-
"tagName": "forge-ai-
|
|
9702
|
+
"summary": "A popover component that provides styled overlay functionality.",
|
|
9703
|
+
"tagName": "forge-ai-popover",
|
|
9514
9704
|
"customElement": true
|
|
9515
9705
|
}
|
|
9516
9706
|
],
|
|
9517
9707
|
"exports": [
|
|
9518
9708
|
{
|
|
9519
9709
|
"kind": "js",
|
|
9520
|
-
"name": "
|
|
9710
|
+
"name": "ForgeAiPopoverComponent",
|
|
9521
9711
|
"declaration": {
|
|
9522
|
-
"name": "
|
|
9523
|
-
"module": "src/lib/core/
|
|
9712
|
+
"name": "ForgeAiPopoverComponent",
|
|
9713
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9524
9714
|
}
|
|
9525
9715
|
},
|
|
9526
9716
|
{
|
|
9527
9717
|
"kind": "custom-element-definition",
|
|
9528
|
-
"name": "forge-ai-
|
|
9718
|
+
"name": "forge-ai-popover",
|
|
9529
9719
|
"declaration": {
|
|
9530
|
-
"name": "
|
|
9531
|
-
"module": "src/lib/core/
|
|
9720
|
+
"name": "ForgeAiPopoverComponent",
|
|
9721
|
+
"module": "src/lib/core/popover/popover.ts"
|
|
9532
9722
|
}
|
|
9533
9723
|
}
|
|
9534
9724
|
]
|
|
@@ -9765,62 +9955,40 @@
|
|
|
9765
9955
|
},
|
|
9766
9956
|
{
|
|
9767
9957
|
"kind": "javascript-module",
|
|
9768
|
-
"path": "src/lib/tools/ai-
|
|
9958
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
9769
9959
|
"declarations": [
|
|
9770
9960
|
{
|
|
9771
9961
|
"kind": "variable",
|
|
9772
|
-
"name": "
|
|
9962
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9773
9963
|
"type": {
|
|
9774
|
-
"text": "
|
|
9964
|
+
"text": "string"
|
|
9775
9965
|
},
|
|
9776
|
-
"default": "
|
|
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'] } }"
|
|
9777
9975
|
}
|
|
9778
9976
|
],
|
|
9779
9977
|
"exports": [
|
|
9780
9978
|
{
|
|
9781
9979
|
"kind": "js",
|
|
9782
|
-
"name": "
|
|
9980
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9783
9981
|
"declaration": {
|
|
9784
|
-
"name": "
|
|
9785
|
-
"module": "src/lib/tools/ai-
|
|
9982
|
+
"name": "CONFIRM_TOOL_CALL_NAME",
|
|
9983
|
+
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9786
9984
|
}
|
|
9787
|
-
}
|
|
9788
|
-
]
|
|
9789
|
-
},
|
|
9790
|
-
{
|
|
9791
|
-
"kind": "javascript-module",
|
|
9792
|
-
"path": "src/lib/tools/ai-data-table/ai-data-table.ts",
|
|
9793
|
-
"declarations": [
|
|
9794
|
-
{
|
|
9795
|
-
"kind": "class",
|
|
9796
|
-
"description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
|
|
9797
|
-
"name": "DataTableToolElement",
|
|
9798
|
-
"members": [
|
|
9799
|
-
{
|
|
9800
|
-
"kind": "field",
|
|
9801
|
-
"name": "toolCall",
|
|
9802
|
-
"type": {
|
|
9803
|
-
"text": "ToolCall<TableData>"
|
|
9804
|
-
},
|
|
9805
|
-
"privacy": "public",
|
|
9806
|
-
"description": "Tool call data containing table configuration and data"
|
|
9807
|
-
}
|
|
9808
|
-
],
|
|
9809
|
-
"superclass": {
|
|
9810
|
-
"name": "LitElement",
|
|
9811
|
-
"package": "lit"
|
|
9812
|
-
},
|
|
9813
|
-
"tagName": "forge-ai-tool-data-table",
|
|
9814
|
-
"customElement": true
|
|
9815
|
-
}
|
|
9816
|
-
],
|
|
9817
|
-
"exports": [
|
|
9985
|
+
},
|
|
9818
9986
|
{
|
|
9819
|
-
"kind": "
|
|
9820
|
-
"name": "
|
|
9987
|
+
"kind": "js",
|
|
9988
|
+
"name": "confirmActionTool",
|
|
9821
9989
|
"declaration": {
|
|
9822
|
-
"name": "
|
|
9823
|
-
"module": "src/lib/tools/ai-
|
|
9990
|
+
"name": "confirmActionTool",
|
|
9991
|
+
"module": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts"
|
|
9824
9992
|
}
|
|
9825
9993
|
}
|
|
9826
9994
|
]
|
|
@@ -9928,7 +10096,7 @@
|
|
|
9928
10096
|
]
|
|
9929
10097
|
}
|
|
9930
10098
|
],
|
|
9931
|
-
"branchName": "
|
|
10099
|
+
"branchName": "confirm-tool-calls",
|
|
9932
10100
|
"forgeTypes": {
|
|
9933
10101
|
"ForgeAiActionsToolbarActionEventData": {
|
|
9934
10102
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
@@ -9946,10 +10114,6 @@
|
|
|
9946
10114
|
"path": "src/lib/ai-actions-toolbar/ai-actions-toolbar.ts",
|
|
9947
10115
|
"lineNumber": 42
|
|
9948
10116
|
},
|
|
9949
|
-
"AiArtifactComponent": {
|
|
9950
|
-
"path": "src/lib/ai-artifact/ai-artifact.ts",
|
|
9951
|
-
"lineNumber": 23
|
|
9952
|
-
},
|
|
9953
10117
|
"AgentInfo": {
|
|
9954
10118
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9955
10119
|
"lineNumber": 39
|
|
@@ -9966,6 +10130,14 @@
|
|
|
9966
10130
|
"path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
|
|
9967
10131
|
"lineNumber": 47
|
|
9968
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
|
+
},
|
|
9969
10141
|
"ForgeAiAttachmentRemoveEventData": {
|
|
9970
10142
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9971
10143
|
"lineNumber": 19
|
|
@@ -9974,14 +10146,6 @@
|
|
|
9974
10146
|
"path": "src/lib/ai-attachment/ai-attachment.ts",
|
|
9975
10147
|
"lineNumber": 41
|
|
9976
10148
|
},
|
|
9977
|
-
"AiButtonComponent": {
|
|
9978
|
-
"path": "src/lib/ai-button/ai-button.ts",
|
|
9979
|
-
"lineNumber": 22
|
|
9980
|
-
},
|
|
9981
|
-
"AiChainOfThoughtComponent": {
|
|
9982
|
-
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
9983
|
-
"lineNumber": 17
|
|
9984
|
-
},
|
|
9985
10149
|
"MinimizeIconType": {
|
|
9986
10150
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9987
10151
|
"lineNumber": 35
|
|
@@ -9994,13 +10158,13 @@
|
|
|
9994
10158
|
"path": "src/lib/ai-chat-header/ai-chat-header.ts",
|
|
9995
10159
|
"lineNumber": 68
|
|
9996
10160
|
},
|
|
10161
|
+
"AiChainOfThoughtComponent": {
|
|
10162
|
+
"path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
|
|
10163
|
+
"lineNumber": 17
|
|
10164
|
+
},
|
|
9997
10165
|
"AiChatInterfaceComponent": {
|
|
9998
10166
|
"path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
|
|
9999
|
-
"lineNumber":
|
|
10000
|
-
},
|
|
10001
|
-
"AiConfirmationPromptComponent": {
|
|
10002
|
-
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10003
|
-
"lineNumber": 27
|
|
10167
|
+
"lineNumber": 26
|
|
10004
10168
|
},
|
|
10005
10169
|
"AgUiAdapterConfig": {
|
|
10006
10170
|
"path": "src/lib/ai-chatbot/ag-ui-adapter.ts",
|
|
@@ -10016,15 +10180,15 @@
|
|
|
10016
10180
|
},
|
|
10017
10181
|
"MessageStartEvent": {
|
|
10018
10182
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10019
|
-
"lineNumber":
|
|
10183
|
+
"lineNumber": 81
|
|
10020
10184
|
},
|
|
10021
10185
|
"MessageDeltaEvent": {
|
|
10022
10186
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10023
|
-
"lineNumber":
|
|
10187
|
+
"lineNumber": 85
|
|
10024
10188
|
},
|
|
10025
10189
|
"MessageEndEvent": {
|
|
10026
10190
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10027
|
-
"lineNumber":
|
|
10191
|
+
"lineNumber": 90
|
|
10028
10192
|
},
|
|
10029
10193
|
"ToolCallEvent": {
|
|
10030
10194
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10032,19 +10196,19 @@
|
|
|
10032
10196
|
},
|
|
10033
10197
|
"ToolCallStartEvent": {
|
|
10034
10198
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10035
|
-
"lineNumber":
|
|
10199
|
+
"lineNumber": 94
|
|
10036
10200
|
},
|
|
10037
10201
|
"ToolCallArgsEvent": {
|
|
10038
10202
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10039
|
-
"lineNumber":
|
|
10203
|
+
"lineNumber": 100
|
|
10040
10204
|
},
|
|
10041
10205
|
"ToolCallEndEvent": {
|
|
10042
10206
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10043
|
-
"lineNumber":
|
|
10207
|
+
"lineNumber": 108
|
|
10044
10208
|
},
|
|
10045
10209
|
"ToolResultEvent": {
|
|
10046
10210
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10047
|
-
"lineNumber":
|
|
10211
|
+
"lineNumber": 115
|
|
10048
10212
|
},
|
|
10049
10213
|
"AdapterState": {
|
|
10050
10214
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10056,7 +10220,7 @@
|
|
|
10056
10220
|
},
|
|
10057
10221
|
"FileRemoveEvent": {
|
|
10058
10222
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10059
|
-
"lineNumber":
|
|
10223
|
+
"lineNumber": 210
|
|
10060
10224
|
},
|
|
10061
10225
|
"ErrorEvent": {
|
|
10062
10226
|
"path": "src/lib/ai-chatbot/agent-adapter.ts",
|
|
@@ -10124,31 +10288,31 @@
|
|
|
10124
10288
|
},
|
|
10125
10289
|
"ForgeAiChatbotMessageEventData": {
|
|
10126
10290
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10127
|
-
"lineNumber":
|
|
10291
|
+
"lineNumber": 89
|
|
10128
10292
|
},
|
|
10129
10293
|
"ForgeAiChatbotToolCallEventData": {
|
|
10130
10294
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10131
|
-
"lineNumber":
|
|
10295
|
+
"lineNumber": 93
|
|
10132
10296
|
},
|
|
10133
10297
|
"ForgeAiChatbotErrorEventData": {
|
|
10134
10298
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10135
|
-
"lineNumber":
|
|
10299
|
+
"lineNumber": 99
|
|
10136
10300
|
},
|
|
10137
10301
|
"ForgeAiChatbotFileRemoveEventData": {
|
|
10138
10302
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10139
|
-
"lineNumber":
|
|
10303
|
+
"lineNumber": 103
|
|
10140
10304
|
},
|
|
10141
10305
|
"ForgeAiChatbotResponseFeedbackEventData": {
|
|
10142
10306
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10143
|
-
"lineNumber":
|
|
10307
|
+
"lineNumber": 107
|
|
10144
10308
|
},
|
|
10145
10309
|
"FeatureToggle": {
|
|
10146
10310
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10147
|
-
"lineNumber":
|
|
10311
|
+
"lineNumber": 118
|
|
10148
10312
|
},
|
|
10149
10313
|
"AiChatbotComponent": {
|
|
10150
10314
|
"path": "src/lib/ai-chatbot/ai-chatbot.ts",
|
|
10151
|
-
"lineNumber":
|
|
10315
|
+
"lineNumber": 149
|
|
10152
10316
|
},
|
|
10153
10317
|
"CreateToolRendererElementConfig": {
|
|
10154
10318
|
"path": "src/lib/ai-chatbot/create-tool-renderer.ts",
|
|
@@ -10244,63 +10408,67 @@
|
|
|
10244
10408
|
},
|
|
10245
10409
|
"StreamEvent": {
|
|
10246
10410
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10247
|
-
"lineNumber":
|
|
10411
|
+
"lineNumber": 121
|
|
10248
10412
|
},
|
|
10249
10413
|
"ChatMessage": {
|
|
10250
10414
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10251
|
-
"lineNumber":
|
|
10415
|
+
"lineNumber": 130
|
|
10252
10416
|
},
|
|
10253
10417
|
"ToolCall": {
|
|
10254
10418
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10255
|
-
"lineNumber":
|
|
10419
|
+
"lineNumber": 143
|
|
10256
10420
|
},
|
|
10257
10421
|
"ResponseItem": {
|
|
10258
10422
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10259
|
-
"lineNumber":
|
|
10423
|
+
"lineNumber": 155
|
|
10260
10424
|
},
|
|
10261
10425
|
"FeedbackType": {
|
|
10262
10426
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10263
|
-
"lineNumber":
|
|
10427
|
+
"lineNumber": 159
|
|
10264
10428
|
},
|
|
10265
10429
|
"ResponseFeedback": {
|
|
10266
10430
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10267
|
-
"lineNumber":
|
|
10431
|
+
"lineNumber": 161
|
|
10268
10432
|
},
|
|
10269
10433
|
"AssistantResponse": {
|
|
10270
10434
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10271
|
-
"lineNumber":
|
|
10435
|
+
"lineNumber": 166
|
|
10272
10436
|
},
|
|
10273
10437
|
"FileAttachment": {
|
|
10274
10438
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10275
|
-
"lineNumber":
|
|
10439
|
+
"lineNumber": 175
|
|
10276
10440
|
},
|
|
10277
10441
|
"UploadedFileMetadata": {
|
|
10278
10442
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10279
|
-
"lineNumber":
|
|
10443
|
+
"lineNumber": 188
|
|
10280
10444
|
},
|
|
10281
10445
|
"FileUploadCallbacks": {
|
|
10282
10446
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10283
|
-
"lineNumber":
|
|
10447
|
+
"lineNumber": 196
|
|
10284
10448
|
},
|
|
10285
10449
|
"FileUploadHandler": {
|
|
10286
10450
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10287
|
-
"lineNumber":
|
|
10451
|
+
"lineNumber": 203
|
|
10288
10452
|
},
|
|
10289
10453
|
"FileRemoveCallbacks": {
|
|
10290
10454
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10291
|
-
"lineNumber":
|
|
10455
|
+
"lineNumber": 205
|
|
10292
10456
|
},
|
|
10293
10457
|
"ForgeAiChatbotFileSelectEventData": {
|
|
10294
10458
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10295
|
-
"lineNumber":
|
|
10459
|
+
"lineNumber": 214
|
|
10296
10460
|
},
|
|
10297
10461
|
"MessageItem": {
|
|
10298
10462
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10299
|
-
"lineNumber":
|
|
10463
|
+
"lineNumber": 227
|
|
10300
10464
|
},
|
|
10301
10465
|
"ThreadState": {
|
|
10302
10466
|
"path": "src/lib/ai-chatbot/types.ts",
|
|
10303
|
-
"lineNumber":
|
|
10467
|
+
"lineNumber": 232
|
|
10468
|
+
},
|
|
10469
|
+
"AiConfirmationPromptComponent": {
|
|
10470
|
+
"path": "src/lib/ai-confirmation-prompt/ai-confirmation-prompt.ts",
|
|
10471
|
+
"lineNumber": 27
|
|
10304
10472
|
},
|
|
10305
10473
|
"AiDialogComponent": {
|
|
10306
10474
|
"path": "src/lib/ai-dialog/ai-dialog.ts",
|
|
@@ -10388,19 +10556,19 @@
|
|
|
10388
10556
|
},
|
|
10389
10557
|
"ForgeAiFilePickerChangeEventData": {
|
|
10390
10558
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10391
|
-
"lineNumber":
|
|
10559
|
+
"lineNumber": 24
|
|
10392
10560
|
},
|
|
10393
10561
|
"ForgeAiFilePickerErrorEventData": {
|
|
10394
10562
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10395
|
-
"lineNumber":
|
|
10563
|
+
"lineNumber": 34
|
|
10396
10564
|
},
|
|
10397
10565
|
"AiFilePickerVariant": {
|
|
10398
10566
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10399
|
-
"lineNumber":
|
|
10567
|
+
"lineNumber": 43
|
|
10400
10568
|
},
|
|
10401
10569
|
"AiFilePickerComponent": {
|
|
10402
10570
|
"path": "src/lib/ai-file-picker/ai-file-picker.ts",
|
|
10403
|
-
"lineNumber":
|
|
10571
|
+
"lineNumber": 58
|
|
10404
10572
|
},
|
|
10405
10573
|
"AiFloatingChatComponent": {
|
|
10406
10574
|
"path": "src/lib/ai-floating-chat/ai-floating-chat.ts",
|
|
@@ -10424,19 +10592,23 @@
|
|
|
10424
10592
|
},
|
|
10425
10593
|
"ForgeAiMessageThreadCopyEventData": {
|
|
10426
10594
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10427
|
-
"lineNumber":
|
|
10595
|
+
"lineNumber": 37
|
|
10428
10596
|
},
|
|
10429
10597
|
"ForgeAiMessageThreadRefreshEventData": {
|
|
10430
10598
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10431
|
-
"lineNumber":
|
|
10599
|
+
"lineNumber": 41
|
|
10432
10600
|
},
|
|
10433
10601
|
"ForgeAiMessageThreadThumbsEventData": {
|
|
10434
10602
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10435
|
-
"lineNumber":
|
|
10603
|
+
"lineNumber": 45
|
|
10604
|
+
},
|
|
10605
|
+
"ForgeAiMessageThreadEditEventData": {
|
|
10606
|
+
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10607
|
+
"lineNumber": 50
|
|
10436
10608
|
},
|
|
10437
10609
|
"AiMessageThreadComponent": {
|
|
10438
10610
|
"path": "src/lib/ai-message-thread/ai-message-thread.ts",
|
|
10439
|
-
"lineNumber":
|
|
10611
|
+
"lineNumber": 76
|
|
10440
10612
|
},
|
|
10441
10613
|
"AiModalComponent": {
|
|
10442
10614
|
"path": "src/lib/ai-modal/ai-modal.ts",
|
|
@@ -10444,27 +10616,23 @@
|
|
|
10444
10616
|
},
|
|
10445
10617
|
"ForgeAiPromptSendEventData": {
|
|
10446
10618
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10447
|
-
"lineNumber":
|
|
10619
|
+
"lineNumber": 29
|
|
10448
10620
|
},
|
|
10449
10621
|
"ForgeAiPromptAttachmentEventData": {
|
|
10450
10622
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10451
|
-
"lineNumber":
|
|
10623
|
+
"lineNumber": 35
|
|
10452
10624
|
},
|
|
10453
10625
|
"ForgeAiPromptCommandEventData": {
|
|
10454
10626
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10455
|
-
"lineNumber":
|
|
10627
|
+
"lineNumber": 39
|
|
10456
10628
|
},
|
|
10457
10629
|
"AiPromptVariant": {
|
|
10458
10630
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10459
|
-
"lineNumber":
|
|
10631
|
+
"lineNumber": 45
|
|
10460
10632
|
},
|
|
10461
10633
|
"AiPromptComponent": {
|
|
10462
10634
|
"path": "src/lib/ai-prompt/ai-prompt.ts",
|
|
10463
|
-
"lineNumber":
|
|
10464
|
-
},
|
|
10465
|
-
"AiResponseMessageComponent": {
|
|
10466
|
-
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
10467
|
-
"lineNumber": 19
|
|
10635
|
+
"lineNumber": 63
|
|
10468
10636
|
},
|
|
10469
10637
|
"AiReasoningComponent": {
|
|
10470
10638
|
"path": "src/lib/ai-reasoning/ai-reasoning.ts",
|
|
@@ -10474,6 +10642,10 @@
|
|
|
10474
10642
|
"path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
|
|
10475
10643
|
"lineNumber": 22
|
|
10476
10644
|
},
|
|
10645
|
+
"AiResponseMessageComponent": {
|
|
10646
|
+
"path": "src/lib/ai-response-message/ai-response-message.ts",
|
|
10647
|
+
"lineNumber": 19
|
|
10648
|
+
},
|
|
10477
10649
|
"AiSidebarComponent": {
|
|
10478
10650
|
"path": "src/lib/ai-sidebar/ai-sidebar.ts",
|
|
10479
10651
|
"lineNumber": 28
|
|
@@ -10482,10 +10654,6 @@
|
|
|
10482
10654
|
"path": "src/lib/ai-sidebar-chat/ai-sidebar-chat.ts",
|
|
10483
10655
|
"lineNumber": 42
|
|
10484
10656
|
},
|
|
10485
|
-
"AiSlashCommandMenuComponent": {
|
|
10486
|
-
"path": "src/lib/ai-slash-command-menu/ai-slash-command-menu.ts",
|
|
10487
|
-
"lineNumber": 32
|
|
10488
|
-
},
|
|
10489
10657
|
"SpinnerSize": {
|
|
10490
10658
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10491
10659
|
"lineNumber": 14
|
|
@@ -10494,6 +10662,26 @@
|
|
|
10494
10662
|
"path": "src/lib/ai-spinner/ai-spinner.ts",
|
|
10495
10663
|
"lineNumber": 27
|
|
10496
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
|
+
},
|
|
10673
|
+
"Thread": {
|
|
10674
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10675
|
+
"lineNumber": 19
|
|
10676
|
+
},
|
|
10677
|
+
"ForgeAiThreadsSelectEventData": {
|
|
10678
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10679
|
+
"lineNumber": 26
|
|
10680
|
+
},
|
|
10681
|
+
"AiThreadsComponent": {
|
|
10682
|
+
"path": "src/lib/ai-threads/ai-threads.ts",
|
|
10683
|
+
"lineNumber": 46
|
|
10684
|
+
},
|
|
10497
10685
|
"Suggestion": {
|
|
10498
10686
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10499
10687
|
"lineNumber": 20
|
|
@@ -10510,53 +10698,49 @@
|
|
|
10510
10698
|
"path": "src/lib/ai-suggestions/ai-suggestions.ts",
|
|
10511
10699
|
"lineNumber": 44
|
|
10512
10700
|
},
|
|
10513
|
-
"
|
|
10514
|
-
"path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
|
|
10515
|
-
"lineNumber": 38
|
|
10516
|
-
},
|
|
10517
|
-
"AiUserMessageComponent": {
|
|
10701
|
+
"ForgeAiUserMessageCopyEventData": {
|
|
10518
10702
|
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10519
|
-
"lineNumber":
|
|
10703
|
+
"lineNumber": 21
|
|
10520
10704
|
},
|
|
10521
|
-
"
|
|
10522
|
-
"path": "src/lib/ai-
|
|
10523
|
-
"lineNumber":
|
|
10705
|
+
"ForgeAiUserMessageResendEventData": {
|
|
10706
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10707
|
+
"lineNumber": 25
|
|
10524
10708
|
},
|
|
10525
|
-
"
|
|
10526
|
-
"path": "src/lib/ai-
|
|
10527
|
-
"lineNumber":
|
|
10709
|
+
"ForgeAiUserMessageEditEventData": {
|
|
10710
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10711
|
+
"lineNumber": 29
|
|
10528
10712
|
},
|
|
10529
|
-
"
|
|
10530
|
-
"path": "src/lib/ai-
|
|
10531
|
-
"lineNumber":
|
|
10713
|
+
"AiUserMessageComponent": {
|
|
10714
|
+
"path": "src/lib/ai-user-message/ai-user-message.ts",
|
|
10715
|
+
"lineNumber": 43
|
|
10532
10716
|
},
|
|
10533
10717
|
"SpeechRecognitionAlternative": {
|
|
10534
10718
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10535
|
-
"lineNumber":
|
|
10719
|
+
"lineNumber": 20
|
|
10536
10720
|
},
|
|
10537
10721
|
"SpeechRecognitionResult": {
|
|
10538
10722
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10539
|
-
"lineNumber":
|
|
10723
|
+
"lineNumber": 25
|
|
10540
10724
|
},
|
|
10541
10725
|
"SpeechRecognitionResultList": {
|
|
10542
10726
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10543
|
-
"lineNumber":
|
|
10727
|
+
"lineNumber": 31
|
|
10544
10728
|
},
|
|
10545
10729
|
"SpeechRecognitionEvent": {
|
|
10546
10730
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10547
|
-
"lineNumber":
|
|
10731
|
+
"lineNumber": 37
|
|
10548
10732
|
},
|
|
10549
10733
|
"SpeechRecognition": {
|
|
10550
10734
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10551
|
-
"lineNumber":
|
|
10735
|
+
"lineNumber": 41
|
|
10552
10736
|
},
|
|
10553
10737
|
"ForgeAiVoiceInputResultEvent": {
|
|
10554
10738
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10555
|
-
"lineNumber":
|
|
10739
|
+
"lineNumber": 63
|
|
10556
10740
|
},
|
|
10557
10741
|
"AiVoiceInputComponent": {
|
|
10558
10742
|
"path": "src/lib/ai-voice-input/ai-voice-input.ts",
|
|
10559
|
-
"lineNumber":
|
|
10743
|
+
"lineNumber": 76
|
|
10560
10744
|
},
|
|
10561
10745
|
"DragControllerOptions": {
|
|
10562
10746
|
"path": "src/lib/core/drag-controller.ts",
|
|
@@ -10594,6 +10778,26 @@
|
|
|
10594
10778
|
"path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
|
|
10595
10779
|
"lineNumber": 17
|
|
10596
10780
|
},
|
|
10781
|
+
"OverlayPlacement": {
|
|
10782
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10783
|
+
"lineNumber": 31
|
|
10784
|
+
},
|
|
10785
|
+
"OverlayOffset": {
|
|
10786
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10787
|
+
"lineNumber": 33
|
|
10788
|
+
},
|
|
10789
|
+
"ForgeAiOverlayComponent": {
|
|
10790
|
+
"path": "src/lib/core/overlay/overlay.ts",
|
|
10791
|
+
"lineNumber": 40
|
|
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
|
+
},
|
|
10597
10801
|
"PopoverToggleEventData": {
|
|
10598
10802
|
"path": "src/lib/core/popover/popover.ts",
|
|
10599
10803
|
"lineNumber": 18
|
|
@@ -10610,18 +10814,6 @@
|
|
|
10610
10814
|
"path": "src/lib/core/popover/popover.ts",
|
|
10611
10815
|
"lineNumber": 37
|
|
10612
10816
|
},
|
|
10613
|
-
"OverlayPlacement": {
|
|
10614
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10615
|
-
"lineNumber": 31
|
|
10616
|
-
},
|
|
10617
|
-
"OverlayOffset": {
|
|
10618
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10619
|
-
"lineNumber": 33
|
|
10620
|
-
},
|
|
10621
|
-
"ForgeAiOverlayComponent": {
|
|
10622
|
-
"path": "src/lib/core/overlay/overlay.ts",
|
|
10623
|
-
"lineNumber": 40
|
|
10624
|
-
},
|
|
10625
10817
|
"TooltipToggleEventDetail": {
|
|
10626
10818
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10627
10819
|
"lineNumber": 20
|
|
@@ -10638,17 +10830,17 @@
|
|
|
10638
10830
|
"path": "src/lib/core/tooltip/tooltip.ts",
|
|
10639
10831
|
"lineNumber": 44
|
|
10640
10832
|
},
|
|
10641
|
-
"
|
|
10642
|
-
"path": "src/lib/tools/ai-
|
|
10643
|
-
"lineNumber":
|
|
10833
|
+
"ConfirmActionToolArgs": {
|
|
10834
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10835
|
+
"lineNumber": 5
|
|
10644
10836
|
},
|
|
10645
|
-
"
|
|
10646
|
-
"path": "src/lib/tools/ai-
|
|
10647
|
-
"lineNumber":
|
|
10837
|
+
"ConfirmActionToolResult": {
|
|
10838
|
+
"path": "src/lib/tools/ai-confirm-tool-call/ai-confirm-tool-call-definition.ts",
|
|
10839
|
+
"lineNumber": 9
|
|
10648
10840
|
},
|
|
10649
10841
|
"AiPaginator": {
|
|
10650
10842
|
"path": "src/lib/tools/ai-paginator/ai-paginator.ts",
|
|
10651
|
-
"lineNumber":
|
|
10843
|
+
"lineNumber": 13
|
|
10652
10844
|
}
|
|
10653
10845
|
}
|
|
10654
10846
|
}
|