@tylertech/forge-ai 0.8.2 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/custom-elements.json +1200 -935
  2. package/dist/ai-agent-selector/ai-agent-selector.d.ts +50 -0
  3. package/dist/ai-agent-selector/ai-agent-selector.mjs +439 -0
  4. package/dist/ai-agent-selector/ai-agent-selector.scss.mjs +4 -0
  5. package/dist/ai-agent-selector/index.d.ts +1 -0
  6. package/dist/ai-agent-selector/index.mjs +5 -0
  7. package/dist/ai-chat-header/ai-chat-header.d.ts +18 -1
  8. package/dist/ai-chat-header/ai-chat-header.mjs +41 -8
  9. package/dist/ai-chat-header/ai-chat-header.scss.mjs +1 -1
  10. package/dist/ai-chat-header/index.d.ts +1 -1
  11. package/dist/ai-chatbot/ag-ui-adapter.mjs +1 -1
  12. package/dist/ai-chatbot/agent-runner.mjs +1 -0
  13. package/dist/ai-chatbot/ai-chatbot-tool-call.mjs +5 -3
  14. package/dist/ai-chatbot/ai-chatbot-tool-call.scss.mjs +1 -1
  15. package/dist/ai-chatbot/ai-chatbot.d.ts +19 -1
  16. package/dist/ai-chatbot/ai-chatbot.mjs +69 -6
  17. package/dist/ai-chatbot/index.d.ts +2 -2
  18. package/dist/ai-chatbot/message-state-controller.d.ts +2 -1
  19. package/dist/ai-chatbot/message-state-controller.mjs +10 -1
  20. package/dist/ai-chatbot/types.d.ts +7 -0
  21. package/dist/ai-empty-state/ai-empty-state.scss.mjs +1 -1
  22. package/dist/ai-error-message/ai-error-message.scss.mjs +1 -1
  23. package/dist/ai-icon/ai-icon.scss.mjs +1 -1
  24. package/dist/ai-message-thread/ai-message-thread.mjs +1 -1
  25. package/dist/ai-message-thread/ai-message-thread.scss.mjs +1 -1
  26. package/dist/ai-modal/ai-modal.scss.mjs +1 -1
  27. package/dist/ai-suggestions/ai-suggestions.d.ts +1 -0
  28. package/dist/ai-suggestions/ai-suggestions.scss.mjs +1 -1
  29. package/dist/ai-user-message/ai-user-message.scss.mjs +1 -1
  30. package/dist/core/tooltip/tooltip.scss.mjs +1 -1
  31. package/dist/index.d.ts +1 -0
  32. package/dist/index.mjs +3 -0
  33. package/package.json +1 -1
@@ -209,6 +209,139 @@
209
209
  }
210
210
  ]
211
211
  },
212
+ {
213
+ "kind": "javascript-module",
214
+ "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
215
+ "declarations": [
216
+ {
217
+ "kind": "variable",
218
+ "name": "AiAgentSelectorComponentTagName",
219
+ "type": {
220
+ "text": "keyof HTMLElementTagNameMap"
221
+ },
222
+ "default": "'forge-ai-agent-selector'"
223
+ },
224
+ {
225
+ "kind": "class",
226
+ "description": "",
227
+ "name": "AiAgentSelectorComponent",
228
+ "members": [
229
+ {
230
+ "kind": "field",
231
+ "name": "agents",
232
+ "type": {
233
+ "text": "Agent[]"
234
+ },
235
+ "privacy": "public",
236
+ "default": "[]",
237
+ "description": "Array of available agents"
238
+ },
239
+ {
240
+ "kind": "field",
241
+ "name": "selectedAgentId",
242
+ "type": {
243
+ "text": "string"
244
+ },
245
+ "privacy": "public",
246
+ "description": "ID of the currently selected agent",
247
+ "attribute": "selected-agent-id"
248
+ },
249
+ {
250
+ "kind": "field",
251
+ "name": "titleText",
252
+ "type": {
253
+ "text": "string"
254
+ },
255
+ "privacy": "public",
256
+ "default": "'AI Assistant'",
257
+ "description": "Fallback text when no agent is selected",
258
+ "attribute": "title-text"
259
+ },
260
+ {
261
+ "kind": "field",
262
+ "name": "disabled",
263
+ "type": {
264
+ "text": "boolean"
265
+ },
266
+ "privacy": "public",
267
+ "default": "false",
268
+ "description": "Disables the selector (e.g., during streaming)",
269
+ "attribute": "disabled",
270
+ "reflects": true
271
+ }
272
+ ],
273
+ "events": [
274
+ {
275
+ "name": "forge-ai-agent-selector-change",
276
+ "type": {
277
+ "text": "CustomEvent"
278
+ },
279
+ "description": "Fired when an agent is selected"
280
+ }
281
+ ],
282
+ "attributes": [
283
+ {
284
+ "name": "selected-agent-id",
285
+ "type": {
286
+ "text": "string"
287
+ },
288
+ "description": "ID of the currently selected agent",
289
+ "fieldName": "selectedAgentId"
290
+ },
291
+ {
292
+ "name": "title-text",
293
+ "type": {
294
+ "text": "string"
295
+ },
296
+ "default": "'AI Assistant'",
297
+ "description": "Fallback text when no agent is selected",
298
+ "fieldName": "titleText"
299
+ },
300
+ {
301
+ "name": "disabled",
302
+ "type": {
303
+ "text": "boolean"
304
+ },
305
+ "default": "false",
306
+ "description": "Disables the selector (e.g., during streaming)",
307
+ "fieldName": "disabled"
308
+ }
309
+ ],
310
+ "superclass": {
311
+ "name": "LitElement",
312
+ "package": "lit"
313
+ },
314
+ "tagName": "forge-ai-agent-selector",
315
+ "customElement": true,
316
+ "summary": "Agent selector component for switching between AI agents."
317
+ }
318
+ ],
319
+ "exports": [
320
+ {
321
+ "kind": "js",
322
+ "name": "AiAgentSelectorComponentTagName",
323
+ "declaration": {
324
+ "name": "AiAgentSelectorComponentTagName",
325
+ "module": "src/lib/ai-agent-selector/ai-agent-selector.ts"
326
+ }
327
+ },
328
+ {
329
+ "kind": "js",
330
+ "name": "AiAgentSelectorComponent",
331
+ "declaration": {
332
+ "name": "AiAgentSelectorComponent",
333
+ "module": "src/lib/ai-agent-selector/ai-agent-selector.ts"
334
+ }
335
+ },
336
+ {
337
+ "kind": "custom-element-definition",
338
+ "declaration": {
339
+ "name": "AiAgentSelectorComponent",
340
+ "module": "src/lib/ai-agent-selector/ai-agent-selector.ts"
341
+ }
342
+ }
343
+ ]
344
+ },
212
345
  {
213
346
  "kind": "javascript-module",
214
347
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
@@ -346,6 +479,87 @@
346
479
  }
347
480
  ]
348
481
  },
482
+ {
483
+ "kind": "javascript-module",
484
+ "path": "src/lib/ai-button/ai-button.ts",
485
+ "declarations": [
486
+ {
487
+ "kind": "variable",
488
+ "name": "AiButtonComponentTagName",
489
+ "type": {
490
+ "text": "keyof HTMLElementTagNameMap"
491
+ },
492
+ "default": "'forge-ai-button'"
493
+ },
494
+ {
495
+ "kind": "class",
496
+ "description": "",
497
+ "name": "AiButtonComponent",
498
+ "slots": [
499
+ {
500
+ "description": "Default slot for button content",
501
+ "name": ""
502
+ }
503
+ ],
504
+ "members": [
505
+ {
506
+ "kind": "field",
507
+ "name": "disabled",
508
+ "type": {
509
+ "text": "boolean"
510
+ },
511
+ "privacy": "public",
512
+ "default": "false",
513
+ "description": "Whether the button is disabled",
514
+ "attribute": "disabled",
515
+ "reflects": true
516
+ }
517
+ ],
518
+ "attributes": [
519
+ {
520
+ "name": "disabled",
521
+ "type": {
522
+ "text": "boolean"
523
+ },
524
+ "default": "false",
525
+ "description": "Whether the button is disabled",
526
+ "fieldName": "disabled"
527
+ }
528
+ ],
529
+ "superclass": {
530
+ "name": "LitElement",
531
+ "package": "lit"
532
+ },
533
+ "tagName": "forge-ai-button",
534
+ "customElement": true
535
+ }
536
+ ],
537
+ "exports": [
538
+ {
539
+ "kind": "js",
540
+ "name": "AiButtonComponentTagName",
541
+ "declaration": {
542
+ "name": "AiButtonComponentTagName",
543
+ "module": "src/lib/ai-button/ai-button.ts"
544
+ }
545
+ },
546
+ {
547
+ "kind": "js",
548
+ "name": "AiButtonComponent",
549
+ "declaration": {
550
+ "name": "AiButtonComponent",
551
+ "module": "src/lib/ai-button/ai-button.ts"
552
+ }
553
+ },
554
+ {
555
+ "kind": "custom-element-definition",
556
+ "declaration": {
557
+ "name": "AiButtonComponent",
558
+ "module": "src/lib/ai-button/ai-button.ts"
559
+ }
560
+ }
561
+ ]
562
+ },
349
563
  {
350
564
  "kind": "javascript-module",
351
565
  "path": "src/lib/ai-attachment/ai-attachment.ts",
@@ -518,194 +732,113 @@
518
732
  },
519
733
  {
520
734
  "kind": "javascript-module",
521
- "path": "src/lib/ai-button/ai-button.ts",
735
+ "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
522
736
  "declarations": [
523
737
  {
524
738
  "kind": "variable",
525
- "name": "AiButtonComponentTagName",
739
+ "name": "AiChainOfThoughtComponentTagName",
526
740
  "type": {
527
741
  "text": "keyof HTMLElementTagNameMap"
528
742
  },
529
- "default": "'forge-ai-button'"
743
+ "default": "'forge-ai-chain-of-thought'"
530
744
  },
531
745
  {
532
746
  "kind": "class",
533
747
  "description": "",
534
- "name": "AiButtonComponent",
535
- "slots": [
536
- {
537
- "description": "Default slot for button content",
538
- "name": ""
539
- }
540
- ],
748
+ "name": "AiChainOfThoughtComponent",
541
749
  "members": [
542
750
  {
543
751
  "kind": "field",
544
- "name": "disabled",
752
+ "name": "expanded",
545
753
  "type": {
546
754
  "text": "boolean"
547
755
  },
548
756
  "privacy": "public",
549
757
  "default": "false",
550
- "description": "Whether the button is disabled",
551
- "attribute": "disabled",
758
+ "description": "Whether the chain of thought is expanded",
759
+ "attribute": "expanded",
552
760
  "reflects": true
553
761
  }
554
762
  ],
555
763
  "attributes": [
556
764
  {
557
- "name": "disabled",
765
+ "name": "expanded",
558
766
  "type": {
559
767
  "text": "boolean"
560
768
  },
561
769
  "default": "false",
562
- "description": "Whether the button is disabled",
563
- "fieldName": "disabled"
770
+ "description": "Whether the chain of thought is expanded",
771
+ "fieldName": "expanded"
564
772
  }
565
773
  ],
566
774
  "superclass": {
567
775
  "name": "LitElement",
568
776
  "package": "lit"
569
777
  },
570
- "tagName": "forge-ai-button",
778
+ "tagName": "forge-ai-chain-of-thought",
571
779
  "customElement": true
572
780
  }
573
781
  ],
574
782
  "exports": [
575
783
  {
576
784
  "kind": "js",
577
- "name": "AiButtonComponentTagName",
785
+ "name": "AiChainOfThoughtComponentTagName",
578
786
  "declaration": {
579
- "name": "AiButtonComponentTagName",
580
- "module": "src/lib/ai-button/ai-button.ts"
787
+ "name": "AiChainOfThoughtComponentTagName",
788
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
581
789
  }
582
790
  },
583
791
  {
584
792
  "kind": "js",
585
- "name": "AiButtonComponent",
793
+ "name": "AiChainOfThoughtComponent",
586
794
  "declaration": {
587
- "name": "AiButtonComponent",
588
- "module": "src/lib/ai-button/ai-button.ts"
795
+ "name": "AiChainOfThoughtComponent",
796
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
589
797
  }
590
798
  },
591
799
  {
592
800
  "kind": "custom-element-definition",
593
801
  "declaration": {
594
- "name": "AiButtonComponent",
595
- "module": "src/lib/ai-button/ai-button.ts"
802
+ "name": "AiChainOfThoughtComponent",
803
+ "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
596
804
  }
597
805
  }
598
806
  ]
599
807
  },
600
808
  {
601
809
  "kind": "javascript-module",
602
- "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
810
+ "path": "src/lib/ai-chat-header/ai-chat-header.ts",
603
811
  "declarations": [
604
812
  {
605
813
  "kind": "variable",
606
- "name": "AiChainOfThoughtComponentTagName",
814
+ "name": "AiChatHeaderComponentTagName",
607
815
  "type": {
608
816
  "text": "keyof HTMLElementTagNameMap"
609
817
  },
610
- "default": "'forge-ai-chain-of-thought'"
818
+ "default": "'forge-ai-chat-header'"
611
819
  },
612
820
  {
613
821
  "kind": "class",
614
822
  "description": "",
615
- "name": "AiChainOfThoughtComponent",
823
+ "name": "AiChatHeaderComponent",
824
+ "slots": [
825
+ {
826
+ "description": "Slot for custom icon (default: forge-ai-icon)",
827
+ "name": "icon"
828
+ }
829
+ ],
616
830
  "members": [
617
831
  {
618
832
  "kind": "field",
619
- "name": "expanded",
833
+ "name": "showExpandButton",
620
834
  "type": {
621
835
  "text": "boolean"
622
836
  },
623
837
  "privacy": "public",
624
838
  "default": "false",
625
- "description": "Whether the chain of thought is expanded",
626
- "attribute": "expanded",
627
- "reflects": true
628
- }
629
- ],
630
- "attributes": [
631
- {
632
- "name": "expanded",
633
- "type": {
634
- "text": "boolean"
635
- },
636
- "default": "false",
637
- "description": "Whether the chain of thought is expanded",
638
- "fieldName": "expanded"
639
- }
640
- ],
641
- "superclass": {
642
- "name": "LitElement",
643
- "package": "lit"
644
- },
645
- "tagName": "forge-ai-chain-of-thought",
646
- "customElement": true
647
- }
648
- ],
649
- "exports": [
650
- {
651
- "kind": "js",
652
- "name": "AiChainOfThoughtComponentTagName",
653
- "declaration": {
654
- "name": "AiChainOfThoughtComponentTagName",
655
- "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
656
- }
657
- },
658
- {
659
- "kind": "js",
660
- "name": "AiChainOfThoughtComponent",
661
- "declaration": {
662
- "name": "AiChainOfThoughtComponent",
663
- "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
664
- }
665
- },
666
- {
667
- "kind": "custom-element-definition",
668
- "declaration": {
669
- "name": "AiChainOfThoughtComponent",
670
- "module": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts"
671
- }
672
- }
673
- ]
674
- },
675
- {
676
- "kind": "javascript-module",
677
- "path": "src/lib/ai-chat-header/ai-chat-header.ts",
678
- "declarations": [
679
- {
680
- "kind": "variable",
681
- "name": "AiChatHeaderComponentTagName",
682
- "type": {
683
- "text": "keyof HTMLElementTagNameMap"
684
- },
685
- "default": "'forge-ai-chat-header'"
686
- },
687
- {
688
- "kind": "class",
689
- "description": "",
690
- "name": "AiChatHeaderComponent",
691
- "slots": [
692
- {
693
- "description": "Slot for custom icon (default: forge-ai-icon)",
694
- "name": "icon"
695
- }
696
- ],
697
- "members": [
698
- {
699
- "kind": "field",
700
- "name": "showExpandButton",
701
- "type": {
702
- "text": "boolean"
703
- },
704
- "privacy": "public",
705
- "default": "false",
706
- "description": "Controls whether the expand button is visible",
707
- "attribute": "show-expand-button"
708
- },
839
+ "description": "Controls whether the expand button is visible",
840
+ "attribute": "show-expand-button"
841
+ },
709
842
  {
710
843
  "kind": "field",
711
844
  "name": "showMinimizeButton",
@@ -803,6 +936,37 @@
803
936
  "description": "The title text to display in the header (default: 'AI Assistant')",
804
937
  "attribute": "title-text"
805
938
  },
939
+ {
940
+ "kind": "field",
941
+ "name": "agents",
942
+ "type": {
943
+ "text": "Agent[]"
944
+ },
945
+ "privacy": "public",
946
+ "default": "[]",
947
+ "description": "Array of available agents for the agent selector"
948
+ },
949
+ {
950
+ "kind": "field",
951
+ "name": "selectedAgentId",
952
+ "type": {
953
+ "text": "string | undefined"
954
+ },
955
+ "privacy": "public",
956
+ "description": "ID of the currently selected agent",
957
+ "attribute": "selected-agent-id"
958
+ },
959
+ {
960
+ "kind": "field",
961
+ "name": "disableAgentSelector",
962
+ "type": {
963
+ "text": "boolean"
964
+ },
965
+ "privacy": "public",
966
+ "default": "false",
967
+ "description": "Disables the agent selector (e.g., during streaming)",
968
+ "attribute": "disable-agent-selector"
969
+ },
806
970
  {
807
971
  "kind": "method",
808
972
  "name": "showAgentInfo",
@@ -830,6 +994,12 @@
830
994
  },
831
995
  "description": "Fired when the clear chat option is selected"
832
996
  },
997
+ {
998
+ "name": "forge-ai-chat-header-agent-change",
999
+ "type": {
1000
+ "text": "CustomEvent"
1001
+ }
1002
+ },
833
1003
  {
834
1004
  "description": "Fired when the expand button is clicked",
835
1005
  "name": "forge-ai-chat-header-expand"
@@ -920,6 +1090,23 @@
920
1090
  "default": "'AI Assistant'",
921
1091
  "description": "The title text to display in the header (default: 'AI Assistant')",
922
1092
  "fieldName": "titleText"
1093
+ },
1094
+ {
1095
+ "name": "selected-agent-id",
1096
+ "type": {
1097
+ "text": "string | undefined"
1098
+ },
1099
+ "description": "ID of the currently selected agent",
1100
+ "fieldName": "selectedAgentId"
1101
+ },
1102
+ {
1103
+ "name": "disable-agent-selector",
1104
+ "type": {
1105
+ "text": "boolean"
1106
+ },
1107
+ "default": "false",
1108
+ "description": "Disables the agent selector (e.g., during streaming)",
1109
+ "fieldName": "disableAgentSelector"
923
1110
  }
924
1111
  ],
925
1112
  "superclass": {
@@ -2878,11 +3065,29 @@
2878
3065
  "kind": "class",
2879
3066
  "description": "",
2880
3067
  "name": "AiChatbotComponent",
3068
+ "cssProperties": [
3069
+ {
3070
+ "description": "The fill color for the AI icon. Defaults to `tertiary`.",
3071
+ "name": "--forge-ai-chatbot-icon-color"
3072
+ },
3073
+ {
3074
+ "description": "The background color for suggestion buttons. Defaults to `tertiary-container`.",
3075
+ "name": "--forge-ai-chatbot-suggestion-background"
3076
+ },
3077
+ {
3078
+ "description": "The text color for suggestion buttons. Defaults to `on-tertiary-container`.",
3079
+ "name": "--forge-ai-chatbot-suggestion-foreground"
3080
+ }
3081
+ ],
2881
3082
  "slots": [
2882
3083
  {
2883
3084
  "description": "Slot for custom header content",
2884
3085
  "name": "header"
2885
3086
  },
3087
+ {
3088
+ "description": "Slot for custom header icon (default: forge-ai-icon)",
3089
+ "name": "icon"
3090
+ },
2886
3091
  {
2887
3092
  "description": "Slot for custom empty state content (overrides default suggestions)",
2888
3093
  "name": "empty-state"
@@ -3046,6 +3251,24 @@
3046
3251
  "description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
3047
3252
  "attribute": "disclaimer-text"
3048
3253
  },
3254
+ {
3255
+ "kind": "field",
3256
+ "name": "agents",
3257
+ "type": {
3258
+ "text": "Agent[]"
3259
+ },
3260
+ "privacy": "public",
3261
+ "default": "[]"
3262
+ },
3263
+ {
3264
+ "kind": "field",
3265
+ "name": "selectedAgentId",
3266
+ "type": {
3267
+ "text": "string | undefined"
3268
+ },
3269
+ "privacy": "public",
3270
+ "attribute": "selected-agent-id"
3271
+ },
3049
3272
  {
3050
3273
  "kind": "method",
3051
3274
  "name": "clearMessages",
@@ -3088,6 +3311,17 @@
3088
3311
  ],
3089
3312
  "description": "Sets the message history. Useful for restoring conversation state."
3090
3313
  },
3314
+ {
3315
+ "kind": "method",
3316
+ "name": "getSelectedAgent",
3317
+ "privacy": "public",
3318
+ "return": {
3319
+ "type": {
3320
+ "text": ""
3321
+ }
3322
+ },
3323
+ "description": "Gets the currently selected agent."
3324
+ },
3091
3325
  {
3092
3326
  "kind": "method",
3093
3327
  "name": "sendMessage",
@@ -3365,6 +3599,13 @@
3365
3599
  "default": "'AI can make mistakes. Always verify responses.'",
3366
3600
  "description": "The disclaimer text to display below the prompt. Set to empty string, null, or undefined to hide.",
3367
3601
  "fieldName": "disclaimerText"
3602
+ },
3603
+ {
3604
+ "name": "selected-agent-id",
3605
+ "type": {
3606
+ "text": "string | undefined"
3607
+ },
3608
+ "fieldName": "selectedAgentId"
3368
3609
  }
3369
3610
  ],
3370
3611
  "superclass": {
@@ -4242,7 +4483,7 @@
4242
4483
  },
4243
4484
  {
4244
4485
  "kind": "method",
4245
- "name": "completeResponse",
4486
+ "name": "tryFinalizeResponse",
4246
4487
  "privacy": "public",
4247
4488
  "return": {
4248
4489
  "type": {
@@ -5796,124 +6037,124 @@
5796
6037
  },
5797
6038
  {
5798
6039
  "kind": "javascript-module",
5799
- "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
6040
+ "path": "src/lib/ai-error-message/ai-error-message.ts",
5800
6041
  "declarations": [
5801
6042
  {
5802
6043
  "kind": "variable",
5803
- "name": "AiEventStreamViewerComponentTagName",
6044
+ "name": "AiErrorMessageComponentTagName",
5804
6045
  "type": {
5805
6046
  "text": "keyof HTMLElementTagNameMap"
5806
6047
  },
5807
- "default": "'forge-ai-event-stream-viewer'"
6048
+ "default": "'forge-ai-error-message'"
5808
6049
  },
5809
6050
  {
5810
6051
  "kind": "class",
5811
6052
  "description": "",
5812
- "name": "AiEventStreamViewerComponent",
5813
- "members": [
6053
+ "name": "AiErrorMessageComponent",
6054
+ "slots": [
5814
6055
  {
5815
- "kind": "field",
5816
- "name": "events",
5817
- "type": {
5818
- "text": "StreamEvent[]"
5819
- },
5820
- "privacy": "public",
5821
- "default": "[]"
6056
+ "description": "The error title text",
6057
+ "name": "title"
6058
+ },
6059
+ {
6060
+ "description": "The error message content",
6061
+ "name": ""
5822
6062
  }
5823
6063
  ],
6064
+ "members": [],
5824
6065
  "superclass": {
5825
6066
  "name": "LitElement",
5826
6067
  "package": "lit"
5827
6068
  },
5828
- "tagName": "forge-ai-event-stream-viewer",
6069
+ "tagName": "forge-ai-error-message",
5829
6070
  "customElement": true,
5830
- "summary": "Displays a timeline of adapter events with expandable JSON data."
6071
+ "summary": "Displays error messages using Forge inline message banner style."
5831
6072
  }
5832
6073
  ],
5833
6074
  "exports": [
5834
6075
  {
5835
6076
  "kind": "js",
5836
- "name": "AiEventStreamViewerComponentTagName",
6077
+ "name": "AiErrorMessageComponentTagName",
5837
6078
  "declaration": {
5838
- "name": "AiEventStreamViewerComponentTagName",
5839
- "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
6079
+ "name": "AiErrorMessageComponentTagName",
6080
+ "module": "src/lib/ai-error-message/ai-error-message.ts"
5840
6081
  }
5841
6082
  },
5842
6083
  {
5843
6084
  "kind": "js",
5844
- "name": "AiEventStreamViewerComponent",
6085
+ "name": "AiErrorMessageComponent",
5845
6086
  "declaration": {
5846
- "name": "AiEventStreamViewerComponent",
5847
- "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
6087
+ "name": "AiErrorMessageComponent",
6088
+ "module": "src/lib/ai-error-message/ai-error-message.ts"
5848
6089
  }
5849
6090
  },
5850
6091
  {
5851
6092
  "kind": "custom-element-definition",
5852
6093
  "declaration": {
5853
- "name": "AiEventStreamViewerComponent",
5854
- "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
6094
+ "name": "AiErrorMessageComponent",
6095
+ "module": "src/lib/ai-error-message/ai-error-message.ts"
5855
6096
  }
5856
6097
  }
5857
6098
  ]
5858
6099
  },
5859
6100
  {
5860
6101
  "kind": "javascript-module",
5861
- "path": "src/lib/ai-error-message/ai-error-message.ts",
6102
+ "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
5862
6103
  "declarations": [
5863
6104
  {
5864
6105
  "kind": "variable",
5865
- "name": "AiErrorMessageComponentTagName",
6106
+ "name": "AiEventStreamViewerComponentTagName",
5866
6107
  "type": {
5867
6108
  "text": "keyof HTMLElementTagNameMap"
5868
6109
  },
5869
- "default": "'forge-ai-error-message'"
6110
+ "default": "'forge-ai-event-stream-viewer'"
5870
6111
  },
5871
6112
  {
5872
6113
  "kind": "class",
5873
6114
  "description": "",
5874
- "name": "AiErrorMessageComponent",
5875
- "slots": [
5876
- {
5877
- "description": "The error title text",
5878
- "name": "title"
5879
- },
6115
+ "name": "AiEventStreamViewerComponent",
6116
+ "members": [
5880
6117
  {
5881
- "description": "The error message content",
5882
- "name": ""
6118
+ "kind": "field",
6119
+ "name": "events",
6120
+ "type": {
6121
+ "text": "StreamEvent[]"
6122
+ },
6123
+ "privacy": "public",
6124
+ "default": "[]"
5883
6125
  }
5884
6126
  ],
5885
- "members": [],
5886
6127
  "superclass": {
5887
6128
  "name": "LitElement",
5888
6129
  "package": "lit"
5889
6130
  },
5890
- "tagName": "forge-ai-error-message",
6131
+ "tagName": "forge-ai-event-stream-viewer",
5891
6132
  "customElement": true,
5892
- "summary": "Displays error messages using Forge inline message banner style."
6133
+ "summary": "Displays a timeline of adapter events with expandable JSON data."
5893
6134
  }
5894
6135
  ],
5895
6136
  "exports": [
5896
6137
  {
5897
6138
  "kind": "js",
5898
- "name": "AiErrorMessageComponentTagName",
6139
+ "name": "AiEventStreamViewerComponentTagName",
5899
6140
  "declaration": {
5900
- "name": "AiErrorMessageComponentTagName",
5901
- "module": "src/lib/ai-error-message/ai-error-message.ts"
6141
+ "name": "AiEventStreamViewerComponentTagName",
6142
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5902
6143
  }
5903
6144
  },
5904
6145
  {
5905
6146
  "kind": "js",
5906
- "name": "AiErrorMessageComponent",
6147
+ "name": "AiEventStreamViewerComponent",
5907
6148
  "declaration": {
5908
- "name": "AiErrorMessageComponent",
5909
- "module": "src/lib/ai-error-message/ai-error-message.ts"
6149
+ "name": "AiEventStreamViewerComponent",
6150
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5910
6151
  }
5911
6152
  },
5912
6153
  {
5913
6154
  "kind": "custom-element-definition",
5914
6155
  "declaration": {
5915
- "name": "AiErrorMessageComponent",
5916
- "module": "src/lib/ai-error-message/ai-error-message.ts"
6156
+ "name": "AiEventStreamViewerComponent",
6157
+ "module": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts"
5917
6158
  }
5918
6159
  }
5919
6160
  ]
@@ -6962,30 +7203,105 @@
6962
7203
  },
6963
7204
  {
6964
7205
  "kind": "javascript-module",
6965
- "path": "src/lib/ai-prompt/ai-prompt.ts",
7206
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
6966
7207
  "declarations": [
6967
7208
  {
6968
7209
  "kind": "variable",
6969
- "name": "AiPromptComponentTagName",
7210
+ "name": "AiReasoningComponentTagName",
6970
7211
  "type": {
6971
7212
  "text": "keyof HTMLElementTagNameMap"
6972
7213
  },
6973
- "default": "'forge-ai-prompt'"
7214
+ "default": "'forge-ai-reasoning'"
6974
7215
  },
6975
7216
  {
6976
7217
  "kind": "class",
6977
7218
  "description": "",
6978
- "name": "AiPromptComponent",
6979
- "slots": [
6980
- {
6981
- "description": "Slot for action components that are hidden in inline mode (voice input, file picker, model selectors, web search, etc.)",
6982
- "name": "actions"
6983
- }
6984
- ],
7219
+ "name": "AiReasoningComponent",
6985
7220
  "members": [
6986
7221
  {
6987
7222
  "kind": "field",
6988
- "name": "placeholder",
7223
+ "name": "expanded",
7224
+ "type": {
7225
+ "text": "boolean"
7226
+ },
7227
+ "privacy": "public",
7228
+ "default": "false",
7229
+ "description": "Whether the reasoning is expanded",
7230
+ "attribute": "expanded",
7231
+ "reflects": true
7232
+ }
7233
+ ],
7234
+ "attributes": [
7235
+ {
7236
+ "name": "expanded",
7237
+ "type": {
7238
+ "text": "boolean"
7239
+ },
7240
+ "default": "false",
7241
+ "description": "Whether the reasoning is expanded",
7242
+ "fieldName": "expanded"
7243
+ }
7244
+ ],
7245
+ "superclass": {
7246
+ "name": "LitElement",
7247
+ "package": "lit"
7248
+ },
7249
+ "tagName": "forge-ai-reasoning",
7250
+ "customElement": true
7251
+ }
7252
+ ],
7253
+ "exports": [
7254
+ {
7255
+ "kind": "js",
7256
+ "name": "AiReasoningComponentTagName",
7257
+ "declaration": {
7258
+ "name": "AiReasoningComponentTagName",
7259
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7260
+ }
7261
+ },
7262
+ {
7263
+ "kind": "js",
7264
+ "name": "AiReasoningComponent",
7265
+ "declaration": {
7266
+ "name": "AiReasoningComponent",
7267
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7268
+ }
7269
+ },
7270
+ {
7271
+ "kind": "custom-element-definition",
7272
+ "declaration": {
7273
+ "name": "AiReasoningComponent",
7274
+ "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7275
+ }
7276
+ }
7277
+ ]
7278
+ },
7279
+ {
7280
+ "kind": "javascript-module",
7281
+ "path": "src/lib/ai-prompt/ai-prompt.ts",
7282
+ "declarations": [
7283
+ {
7284
+ "kind": "variable",
7285
+ "name": "AiPromptComponentTagName",
7286
+ "type": {
7287
+ "text": "keyof HTMLElementTagNameMap"
7288
+ },
7289
+ "default": "'forge-ai-prompt'"
7290
+ },
7291
+ {
7292
+ "kind": "class",
7293
+ "description": "",
7294
+ "name": "AiPromptComponent",
7295
+ "slots": [
7296
+ {
7297
+ "description": "Slot for action components that are hidden in inline mode (voice input, file picker, model selectors, web search, etc.)",
7298
+ "name": "actions"
7299
+ }
7300
+ ],
7301
+ "members": [
7302
+ {
7303
+ "kind": "field",
7304
+ "name": "placeholder",
6989
7305
  "type": {
6990
7306
  "text": "string"
6991
7307
  },
@@ -7331,75 +7647,52 @@
7331
7647
  },
7332
7648
  {
7333
7649
  "kind": "javascript-module",
7334
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
7650
+ "path": "src/lib/ai-response-message/ai-response-message.ts",
7335
7651
  "declarations": [
7336
7652
  {
7337
7653
  "kind": "variable",
7338
- "name": "AiReasoningComponentTagName",
7654
+ "name": "AiResponseMessageComponentTagName",
7339
7655
  "type": {
7340
7656
  "text": "keyof HTMLElementTagNameMap"
7341
7657
  },
7342
- "default": "'forge-ai-reasoning'"
7658
+ "default": "'forge-ai-response-message'"
7343
7659
  },
7344
7660
  {
7345
7661
  "kind": "class",
7346
7662
  "description": "",
7347
- "name": "AiReasoningComponent",
7348
- "members": [
7349
- {
7350
- "kind": "field",
7351
- "name": "expanded",
7352
- "type": {
7353
- "text": "boolean"
7354
- },
7355
- "privacy": "public",
7356
- "default": "false",
7357
- "description": "Whether the reasoning is expanded",
7358
- "attribute": "expanded",
7359
- "reflects": true
7360
- }
7361
- ],
7362
- "attributes": [
7363
- {
7364
- "name": "expanded",
7365
- "type": {
7366
- "text": "boolean"
7367
- },
7368
- "default": "false",
7369
- "description": "Whether the reasoning is expanded",
7370
- "fieldName": "expanded"
7371
- }
7372
- ],
7663
+ "name": "AiResponseMessageComponent",
7664
+ "members": [],
7373
7665
  "superclass": {
7374
7666
  "name": "LitElement",
7375
7667
  "package": "lit"
7376
7668
  },
7377
- "tagName": "forge-ai-reasoning",
7378
- "customElement": true
7669
+ "tagName": "forge-ai-response-message",
7670
+ "customElement": true,
7671
+ "summary": "A simple wrapper component for rendering assistant response message content."
7379
7672
  }
7380
7673
  ],
7381
7674
  "exports": [
7382
7675
  {
7383
7676
  "kind": "js",
7384
- "name": "AiReasoningComponentTagName",
7677
+ "name": "AiResponseMessageComponentTagName",
7385
7678
  "declaration": {
7386
- "name": "AiReasoningComponentTagName",
7387
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7679
+ "name": "AiResponseMessageComponentTagName",
7680
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7388
7681
  }
7389
7682
  },
7390
7683
  {
7391
7684
  "kind": "js",
7392
- "name": "AiReasoningComponent",
7685
+ "name": "AiResponseMessageComponent",
7393
7686
  "declaration": {
7394
- "name": "AiReasoningComponent",
7395
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7687
+ "name": "AiResponseMessageComponent",
7688
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7396
7689
  }
7397
7690
  },
7398
7691
  {
7399
7692
  "kind": "custom-element-definition",
7400
7693
  "declaration": {
7401
- "name": "AiReasoningComponent",
7402
- "module": "src/lib/ai-reasoning/ai-reasoning.ts"
7694
+ "name": "AiResponseMessageComponent",
7695
+ "module": "src/lib/ai-response-message/ai-response-message.ts"
7403
7696
  }
7404
7697
  }
7405
7698
  ]
@@ -7519,58 +7812,6 @@
7519
7812
  }
7520
7813
  ]
7521
7814
  },
7522
- {
7523
- "kind": "javascript-module",
7524
- "path": "src/lib/ai-response-message/ai-response-message.ts",
7525
- "declarations": [
7526
- {
7527
- "kind": "variable",
7528
- "name": "AiResponseMessageComponentTagName",
7529
- "type": {
7530
- "text": "keyof HTMLElementTagNameMap"
7531
- },
7532
- "default": "'forge-ai-response-message'"
7533
- },
7534
- {
7535
- "kind": "class",
7536
- "description": "",
7537
- "name": "AiResponseMessageComponent",
7538
- "members": [],
7539
- "superclass": {
7540
- "name": "LitElement",
7541
- "package": "lit"
7542
- },
7543
- "tagName": "forge-ai-response-message",
7544
- "customElement": true,
7545
- "summary": "A simple wrapper component for rendering assistant response message content."
7546
- }
7547
- ],
7548
- "exports": [
7549
- {
7550
- "kind": "js",
7551
- "name": "AiResponseMessageComponentTagName",
7552
- "declaration": {
7553
- "name": "AiResponseMessageComponentTagName",
7554
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7555
- }
7556
- },
7557
- {
7558
- "kind": "js",
7559
- "name": "AiResponseMessageComponent",
7560
- "declaration": {
7561
- "name": "AiResponseMessageComponent",
7562
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7563
- }
7564
- },
7565
- {
7566
- "kind": "custom-element-definition",
7567
- "declaration": {
7568
- "name": "AiResponseMessageComponent",
7569
- "module": "src/lib/ai-response-message/ai-response-message.ts"
7570
- }
7571
- }
7572
- ]
7573
- },
7574
7815
  {
7575
7816
  "kind": "javascript-module",
7576
7817
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
@@ -8224,169 +8465,60 @@
8224
8465
  },
8225
8466
  {
8226
8467
  "kind": "javascript-module",
8227
- "path": "src/lib/ai-suggestions/ai-suggestions.ts",
8468
+ "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
8228
8469
  "declarations": [
8229
8470
  {
8230
8471
  "kind": "variable",
8231
- "name": "AiSuggestionsComponentTagName",
8472
+ "name": "AiThinkingIndicatorComponentTagName",
8232
8473
  "type": {
8233
8474
  "text": "keyof HTMLElementTagNameMap"
8234
8475
  },
8235
- "default": "'forge-ai-suggestions'"
8476
+ "default": "'forge-ai-thinking-indicator'"
8236
8477
  },
8237
8478
  {
8238
8479
  "kind": "class",
8239
8480
  "description": "",
8240
- "name": "AiSuggestionsComponent",
8241
- "cssProperties": [
8242
- {
8243
- "description": "The maximum width of the suggestion buttons in inline layout.",
8244
- "name": "--forge-ai-suggestion-max-width"
8245
- }
8246
- ],
8481
+ "name": "AiThinkingIndicatorComponent",
8247
8482
  "members": [
8248
8483
  {
8249
8484
  "kind": "field",
8250
- "name": "suggestions",
8485
+ "name": "showText",
8251
8486
  "type": {
8252
- "text": "Suggestion[]"
8487
+ "text": "boolean"
8253
8488
  },
8254
8489
  "privacy": "public",
8255
- "default": "[]",
8256
- "description": "Array of suggestion objects to display"
8490
+ "default": "false",
8491
+ "attribute": "show-text"
8257
8492
  },
8258
8493
  {
8259
8494
  "kind": "field",
8260
- "name": "variant",
8495
+ "name": "initialDelay",
8261
8496
  "type": {
8262
- "text": "AiSuggestionsVariant"
8497
+ "text": "number"
8263
8498
  },
8264
8499
  "privacy": "public",
8265
- "default": "'inline'",
8266
- "description": "Display variant for suggestions layout",
8267
- "attribute": "variant"
8268
- }
8269
- ],
8270
- "events": [
8500
+ "default": "0",
8501
+ "attribute": "initial-delay"
8502
+ },
8271
8503
  {
8504
+ "kind": "field",
8505
+ "name": "cycleInterval",
8272
8506
  "type": {
8273
- "text": "CustomEvent<ForgeAiSuggestionsEventData>"
8507
+ "text": "number"
8274
8508
  },
8275
- "description": "Fired when a suggestion is selected.",
8276
- "name": "forge-ai-suggestions-select"
8509
+ "privacy": "public",
8510
+ "default": "5000",
8511
+ "attribute": "cycle-interval"
8277
8512
  }
8278
8513
  ],
8279
8514
  "attributes": [
8280
8515
  {
8281
- "name": "variant",
8516
+ "name": "show-text",
8282
8517
  "type": {
8283
- "text": "AiSuggestionsVariant"
8518
+ "text": "boolean"
8284
8519
  },
8285
- "default": "'inline'",
8286
- "description": "Display variant for suggestions layout",
8287
- "fieldName": "variant"
8288
- }
8289
- ],
8290
- "superclass": {
8291
- "name": "LitElement",
8292
- "package": "lit"
8293
- },
8294
- "tagName": "forge-ai-suggestions",
8295
- "customElement": true,
8296
- "states": [
8297
- {
8298
- "name": "inline",
8299
- "description": "The suggestions are displayed inline."
8300
- },
8301
- {
8302
- "name": "block",
8303
- "description": "The suggestions are displayed as blocks."
8304
- }
8305
- ]
8306
- }
8307
- ],
8308
- "exports": [
8309
- {
8310
- "kind": "js",
8311
- "name": "AiSuggestionsComponentTagName",
8312
- "declaration": {
8313
- "name": "AiSuggestionsComponentTagName",
8314
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8315
- }
8316
- },
8317
- {
8318
- "kind": "js",
8319
- "name": "AiSuggestionsComponent",
8320
- "declaration": {
8321
- "name": "AiSuggestionsComponent",
8322
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8323
- }
8324
- },
8325
- {
8326
- "kind": "custom-element-definition",
8327
- "declaration": {
8328
- "name": "AiSuggestionsComponent",
8329
- "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8330
- }
8331
- }
8332
- ]
8333
- },
8334
- {
8335
- "kind": "javascript-module",
8336
- "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
8337
- "declarations": [
8338
- {
8339
- "kind": "variable",
8340
- "name": "AiThinkingIndicatorComponentTagName",
8341
- "type": {
8342
- "text": "keyof HTMLElementTagNameMap"
8343
- },
8344
- "default": "'forge-ai-thinking-indicator'"
8345
- },
8346
- {
8347
- "kind": "class",
8348
- "description": "",
8349
- "name": "AiThinkingIndicatorComponent",
8350
- "members": [
8351
- {
8352
- "kind": "field",
8353
- "name": "showText",
8354
- "type": {
8355
- "text": "boolean"
8356
- },
8357
- "privacy": "public",
8358
- "default": "false",
8359
- "attribute": "show-text"
8360
- },
8361
- {
8362
- "kind": "field",
8363
- "name": "initialDelay",
8364
- "type": {
8365
- "text": "number"
8366
- },
8367
- "privacy": "public",
8368
- "default": "0",
8369
- "attribute": "initial-delay"
8370
- },
8371
- {
8372
- "kind": "field",
8373
- "name": "cycleInterval",
8374
- "type": {
8375
- "text": "number"
8376
- },
8377
- "privacy": "public",
8378
- "default": "5000",
8379
- "attribute": "cycle-interval"
8380
- }
8381
- ],
8382
- "attributes": [
8383
- {
8384
- "name": "show-text",
8385
- "type": {
8386
- "text": "boolean"
8387
- },
8388
- "default": "false",
8389
- "fieldName": "showText"
8520
+ "default": "false",
8521
+ "fieldName": "showText"
8390
8522
  },
8391
8523
  {
8392
8524
  "name": "initial-delay",
@@ -8442,103 +8574,113 @@
8442
8574
  },
8443
8575
  {
8444
8576
  "kind": "javascript-module",
8445
- "path": "src/lib/ai-threads/ai-threads.ts",
8577
+ "path": "src/lib/ai-suggestions/ai-suggestions.ts",
8446
8578
  "declarations": [
8447
8579
  {
8448
8580
  "kind": "variable",
8449
- "name": "AiThreadsComponentTagName",
8581
+ "name": "AiSuggestionsComponentTagName",
8450
8582
  "type": {
8451
8583
  "text": "keyof HTMLElementTagNameMap"
8452
8584
  },
8453
- "default": "'forge-ai-threads'"
8585
+ "default": "'forge-ai-suggestions'"
8454
8586
  },
8455
8587
  {
8456
8588
  "kind": "class",
8457
8589
  "description": "",
8458
- "name": "AiThreadsComponent",
8459
- "slots": [
8590
+ "name": "AiSuggestionsComponent",
8591
+ "cssProperties": [
8460
8592
  {
8461
- "description": "Default slot for chatbot component",
8462
- "name": ""
8593
+ "description": "The maximum inline size of the suggestions container.",
8594
+ "name": "--forge-ai-suggestions-inline-size"
8595
+ },
8596
+ {
8597
+ "description": "The maximum width of the suggestion buttons in inline layout.",
8598
+ "name": "--forge-ai-suggestion-max-width"
8463
8599
  }
8464
8600
  ],
8465
8601
  "members": [
8466
8602
  {
8467
8603
  "kind": "field",
8468
- "name": "threads",
8604
+ "name": "suggestions",
8469
8605
  "type": {
8470
- "text": "Thread[]"
8606
+ "text": "Suggestion[]"
8471
8607
  },
8472
8608
  "privacy": "public",
8473
8609
  "default": "[]",
8474
- "description": "Array of threads to display in the navigation list",
8475
- "attribute": "threads"
8476
- }
8477
- ],
8478
- "events": [
8479
- {
8480
- "type": {
8481
- "text": "CustomEvent<ForgeAiThreadsSelectEventData>"
8482
- },
8483
- "description": "Fired when a thread is selected.",
8484
- "name": "forge-ai-threads-select"
8610
+ "description": "Array of suggestion objects to display"
8485
8611
  },
8486
8612
  {
8613
+ "kind": "field",
8614
+ "name": "variant",
8487
8615
  "type": {
8488
- "text": "CustomEvent"
8616
+ "text": "AiSuggestionsVariant"
8489
8617
  },
8490
- "description": "Fired when the new chat button is clicked.",
8491
- "name": "forge-ai-threads-new-chat"
8492
- },
8618
+ "privacy": "public",
8619
+ "default": "'inline'",
8620
+ "description": "Display variant for suggestions layout",
8621
+ "attribute": "variant"
8622
+ }
8623
+ ],
8624
+ "events": [
8493
8625
  {
8494
8626
  "type": {
8495
- "text": "CustomEvent"
8627
+ "text": "CustomEvent<ForgeAiSuggestionsEventData>"
8496
8628
  },
8497
- "description": "Fired when the clear history button is clicked.",
8498
- "name": "forge-ai-threads-clear-history"
8629
+ "description": "Fired when a suggestion is selected.",
8630
+ "name": "forge-ai-suggestions-select"
8499
8631
  }
8500
8632
  ],
8501
8633
  "attributes": [
8502
8634
  {
8503
- "name": "threads",
8635
+ "name": "variant",
8504
8636
  "type": {
8505
- "text": "Thread[]"
8637
+ "text": "AiSuggestionsVariant"
8506
8638
  },
8507
- "default": "[]",
8508
- "description": "Array of threads to display in the navigation list",
8509
- "fieldName": "threads"
8639
+ "default": "'inline'",
8640
+ "description": "Display variant for suggestions layout",
8641
+ "fieldName": "variant"
8510
8642
  }
8511
8643
  ],
8512
8644
  "superclass": {
8513
8645
  "name": "LitElement",
8514
8646
  "package": "lit"
8515
8647
  },
8516
- "tagName": "forge-ai-threads",
8517
- "customElement": true
8648
+ "tagName": "forge-ai-suggestions",
8649
+ "customElement": true,
8650
+ "states": [
8651
+ {
8652
+ "name": "inline",
8653
+ "description": "The suggestions are displayed inline."
8654
+ },
8655
+ {
8656
+ "name": "block",
8657
+ "description": "The suggestions are displayed as blocks."
8658
+ }
8659
+ ]
8518
8660
  }
8519
8661
  ],
8520
8662
  "exports": [
8521
8663
  {
8522
8664
  "kind": "js",
8523
- "name": "AiThreadsComponentTagName",
8665
+ "name": "AiSuggestionsComponentTagName",
8524
8666
  "declaration": {
8525
- "name": "AiThreadsComponentTagName",
8526
- "module": "src/lib/ai-threads/ai-threads.ts"
8667
+ "name": "AiSuggestionsComponentTagName",
8668
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8527
8669
  }
8528
8670
  },
8529
8671
  {
8530
8672
  "kind": "js",
8531
- "name": "AiThreadsComponent",
8673
+ "name": "AiSuggestionsComponent",
8532
8674
  "declaration": {
8533
- "name": "AiThreadsComponent",
8534
- "module": "src/lib/ai-threads/ai-threads.ts"
8675
+ "name": "AiSuggestionsComponent",
8676
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8535
8677
  }
8536
8678
  },
8537
8679
  {
8538
8680
  "kind": "custom-element-definition",
8539
8681
  "declaration": {
8540
- "name": "AiThreadsComponent",
8541
- "module": "src/lib/ai-threads/ai-threads.ts"
8682
+ "name": "AiSuggestionsComponent",
8683
+ "module": "src/lib/ai-suggestions/ai-suggestions.ts"
8542
8684
  }
8543
8685
  }
8544
8686
  ]
@@ -8672,103 +8814,206 @@
8672
8814
  },
8673
8815
  {
8674
8816
  "kind": "javascript-module",
8675
- "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
8817
+ "path": "src/lib/ai-threads/ai-threads.ts",
8676
8818
  "declarations": [
8677
8819
  {
8678
8820
  "kind": "variable",
8679
- "name": "AiUserMessageToolbarComponentTagName",
8821
+ "name": "AiThreadsComponentTagName",
8680
8822
  "type": {
8681
8823
  "text": "keyof HTMLElementTagNameMap"
8682
8824
  },
8683
- "default": "'forge-ai-user-message-toolbar'"
8825
+ "default": "'forge-ai-threads'"
8684
8826
  },
8685
8827
  {
8686
8828
  "kind": "class",
8687
8829
  "description": "",
8688
- "name": "AiUserMessageToolbarComponent",
8689
- "members": [
8830
+ "name": "AiThreadsComponent",
8831
+ "slots": [
8690
8832
  {
8691
- "kind": "field",
8692
- "name": "timestamp",
8693
- "type": {
8694
- "text": "number"
8695
- },
8696
- "privacy": "public"
8697
- },
8833
+ "description": "Default slot for chatbot component",
8834
+ "name": ""
8835
+ }
8836
+ ],
8837
+ "members": [
8698
8838
  {
8699
8839
  "kind": "field",
8700
- "name": "streaming",
8840
+ "name": "threads",
8701
8841
  "type": {
8702
- "text": "boolean"
8842
+ "text": "Thread[]"
8703
8843
  },
8704
8844
  "privacy": "public",
8705
- "default": "false",
8706
- "attribute": "streaming"
8845
+ "default": "[]",
8846
+ "description": "Array of threads to display in the navigation list",
8847
+ "attribute": "threads"
8707
8848
  }
8708
8849
  ],
8709
8850
  "events": [
8710
8851
  {
8711
- "name": "forge-ai-user-message-toolbar-copy",
8712
8852
  "type": {
8713
- "text": "CustomEvent<void>"
8853
+ "text": "CustomEvent<ForgeAiThreadsSelectEventData>"
8714
8854
  },
8715
- "description": "Fired when copy button is clicked"
8855
+ "description": "Fired when a thread is selected.",
8856
+ "name": "forge-ai-threads-select"
8716
8857
  },
8717
8858
  {
8718
- "name": "forge-ai-user-message-toolbar-resend",
8719
8859
  "type": {
8720
- "text": "CustomEvent<void>"
8860
+ "text": "CustomEvent"
8721
8861
  },
8722
- "description": "Fired when resend button is clicked"
8862
+ "description": "Fired when the new chat button is clicked.",
8863
+ "name": "forge-ai-threads-new-chat"
8723
8864
  },
8724
8865
  {
8725
- "name": "forge-ai-user-message-toolbar-edit",
8726
8866
  "type": {
8727
- "text": "CustomEvent<void>"
8867
+ "text": "CustomEvent"
8728
8868
  },
8729
- "description": "Fired when edit button is clicked"
8869
+ "description": "Fired when the clear history button is clicked.",
8870
+ "name": "forge-ai-threads-clear-history"
8730
8871
  }
8731
8872
  ],
8732
8873
  "attributes": [
8733
8874
  {
8734
- "name": "streaming",
8875
+ "name": "threads",
8735
8876
  "type": {
8736
- "text": "boolean"
8877
+ "text": "Thread[]"
8737
8878
  },
8738
- "default": "false",
8739
- "fieldName": "streaming"
8879
+ "default": "[]",
8880
+ "description": "Array of threads to display in the navigation list",
8881
+ "fieldName": "threads"
8740
8882
  }
8741
8883
  ],
8742
8884
  "superclass": {
8743
8885
  "name": "LitElement",
8744
8886
  "package": "lit"
8745
8887
  },
8746
- "tagName": "forge-ai-user-message-toolbar",
8747
- "customElement": true,
8748
- "summary": "Toolbar for user message actions including copy, resend, and edit."
8888
+ "tagName": "forge-ai-threads",
8889
+ "customElement": true
8749
8890
  }
8750
8891
  ],
8751
8892
  "exports": [
8752
8893
  {
8753
8894
  "kind": "js",
8754
- "name": "AiUserMessageToolbarComponentTagName",
8895
+ "name": "AiThreadsComponentTagName",
8755
8896
  "declaration": {
8756
- "name": "AiUserMessageToolbarComponentTagName",
8757
- "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8897
+ "name": "AiThreadsComponentTagName",
8898
+ "module": "src/lib/ai-threads/ai-threads.ts"
8758
8899
  }
8759
8900
  },
8760
8901
  {
8761
8902
  "kind": "js",
8762
- "name": "AiUserMessageToolbarComponent",
8903
+ "name": "AiThreadsComponent",
8763
8904
  "declaration": {
8764
- "name": "AiUserMessageToolbarComponent",
8765
- "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8905
+ "name": "AiThreadsComponent",
8906
+ "module": "src/lib/ai-threads/ai-threads.ts"
8766
8907
  }
8767
8908
  },
8768
8909
  {
8769
8910
  "kind": "custom-element-definition",
8770
8911
  "declaration": {
8771
- "name": "AiUserMessageToolbarComponent",
8912
+ "name": "AiThreadsComponent",
8913
+ "module": "src/lib/ai-threads/ai-threads.ts"
8914
+ }
8915
+ }
8916
+ ]
8917
+ },
8918
+ {
8919
+ "kind": "javascript-module",
8920
+ "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
8921
+ "declarations": [
8922
+ {
8923
+ "kind": "variable",
8924
+ "name": "AiUserMessageToolbarComponentTagName",
8925
+ "type": {
8926
+ "text": "keyof HTMLElementTagNameMap"
8927
+ },
8928
+ "default": "'forge-ai-user-message-toolbar'"
8929
+ },
8930
+ {
8931
+ "kind": "class",
8932
+ "description": "",
8933
+ "name": "AiUserMessageToolbarComponent",
8934
+ "members": [
8935
+ {
8936
+ "kind": "field",
8937
+ "name": "timestamp",
8938
+ "type": {
8939
+ "text": "number"
8940
+ },
8941
+ "privacy": "public"
8942
+ },
8943
+ {
8944
+ "kind": "field",
8945
+ "name": "streaming",
8946
+ "type": {
8947
+ "text": "boolean"
8948
+ },
8949
+ "privacy": "public",
8950
+ "default": "false",
8951
+ "attribute": "streaming"
8952
+ }
8953
+ ],
8954
+ "events": [
8955
+ {
8956
+ "name": "forge-ai-user-message-toolbar-copy",
8957
+ "type": {
8958
+ "text": "CustomEvent<void>"
8959
+ },
8960
+ "description": "Fired when copy button is clicked"
8961
+ },
8962
+ {
8963
+ "name": "forge-ai-user-message-toolbar-resend",
8964
+ "type": {
8965
+ "text": "CustomEvent<void>"
8966
+ },
8967
+ "description": "Fired when resend button is clicked"
8968
+ },
8969
+ {
8970
+ "name": "forge-ai-user-message-toolbar-edit",
8971
+ "type": {
8972
+ "text": "CustomEvent<void>"
8973
+ },
8974
+ "description": "Fired when edit button is clicked"
8975
+ }
8976
+ ],
8977
+ "attributes": [
8978
+ {
8979
+ "name": "streaming",
8980
+ "type": {
8981
+ "text": "boolean"
8982
+ },
8983
+ "default": "false",
8984
+ "fieldName": "streaming"
8985
+ }
8986
+ ],
8987
+ "superclass": {
8988
+ "name": "LitElement",
8989
+ "package": "lit"
8990
+ },
8991
+ "tagName": "forge-ai-user-message-toolbar",
8992
+ "customElement": true,
8993
+ "summary": "Toolbar for user message actions including copy, resend, and edit."
8994
+ }
8995
+ ],
8996
+ "exports": [
8997
+ {
8998
+ "kind": "js",
8999
+ "name": "AiUserMessageToolbarComponentTagName",
9000
+ "declaration": {
9001
+ "name": "AiUserMessageToolbarComponentTagName",
9002
+ "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
9003
+ }
9004
+ },
9005
+ {
9006
+ "kind": "js",
9007
+ "name": "AiUserMessageToolbarComponent",
9008
+ "declaration": {
9009
+ "name": "AiUserMessageToolbarComponent",
9010
+ "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
9011
+ }
9012
+ },
9013
+ {
9014
+ "kind": "custom-element-definition",
9015
+ "declaration": {
9016
+ "name": "AiUserMessageToolbarComponent",
8772
9017
  "module": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts"
8773
9018
  }
8774
9019
  }
@@ -9068,98 +9313,6 @@
9068
9313
  }
9069
9314
  ]
9070
9315
  },
9071
- {
9072
- "kind": "javascript-module",
9073
- "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
9074
- "declarations": [
9075
- {
9076
- "kind": "variable",
9077
- "name": "ThoughtSearchResultComponentTagName",
9078
- "type": {
9079
- "text": "keyof HTMLElementTagNameMap"
9080
- },
9081
- "default": "'forge-ai-thought-search-result'"
9082
- },
9083
- {
9084
- "kind": "class",
9085
- "description": "",
9086
- "name": "ThoughtSearchResultComponent",
9087
- "members": [
9088
- {
9089
- "kind": "field",
9090
- "name": "step",
9091
- "type": {
9092
- "text": "number | undefined"
9093
- },
9094
- "privacy": "public",
9095
- "description": "The step number for this thought search result",
9096
- "attribute": "step"
9097
- },
9098
- {
9099
- "kind": "field",
9100
- "name": "sources",
9101
- "type": {
9102
- "text": "Source[]"
9103
- },
9104
- "privacy": "public",
9105
- "default": "[]",
9106
- "description": "Array of sources for the search result",
9107
- "attribute": "sources"
9108
- }
9109
- ],
9110
- "attributes": [
9111
- {
9112
- "name": "step",
9113
- "type": {
9114
- "text": "number | undefined"
9115
- },
9116
- "description": "The step number for this thought search result",
9117
- "fieldName": "step"
9118
- },
9119
- {
9120
- "name": "sources",
9121
- "type": {
9122
- "text": "Source[]"
9123
- },
9124
- "default": "[]",
9125
- "description": "Array of sources for the search result",
9126
- "fieldName": "sources"
9127
- }
9128
- ],
9129
- "superclass": {
9130
- "name": "LitElement",
9131
- "package": "lit"
9132
- },
9133
- "tagName": "forge-ai-thought-search-result",
9134
- "customElement": true
9135
- }
9136
- ],
9137
- "exports": [
9138
- {
9139
- "kind": "js",
9140
- "name": "ThoughtSearchResultComponentTagName",
9141
- "declaration": {
9142
- "name": "ThoughtSearchResultComponentTagName",
9143
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9144
- }
9145
- },
9146
- {
9147
- "kind": "js",
9148
- "name": "ThoughtSearchResultComponent",
9149
- "declaration": {
9150
- "name": "ThoughtSearchResultComponent",
9151
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9152
- }
9153
- },
9154
- {
9155
- "kind": "custom-element-definition",
9156
- "declaration": {
9157
- "name": "ThoughtSearchResultComponent",
9158
- "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9159
- }
9160
- }
9161
- ]
9162
- },
9163
9316
  {
9164
9317
  "kind": "javascript-module",
9165
9318
  "path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
@@ -9234,75 +9387,92 @@
9234
9387
  },
9235
9388
  {
9236
9389
  "kind": "javascript-module",
9237
- "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
9390
+ "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
9238
9391
  "declarations": [
9239
9392
  {
9240
9393
  "kind": "variable",
9241
- "name": "PromptButtonComponentTagName",
9394
+ "name": "ThoughtSearchResultComponentTagName",
9242
9395
  "type": {
9243
9396
  "text": "keyof HTMLElementTagNameMap"
9244
9397
  },
9245
- "default": "'forge-prompt-button'"
9398
+ "default": "'forge-ai-thought-search-result'"
9246
9399
  },
9247
9400
  {
9248
9401
  "kind": "class",
9249
9402
  "description": "",
9250
- "name": "PromptButtonComponent",
9403
+ "name": "ThoughtSearchResultComponent",
9251
9404
  "members": [
9252
9405
  {
9253
9406
  "kind": "field",
9254
- "name": "disabled",
9407
+ "name": "step",
9255
9408
  "type": {
9256
- "text": "boolean"
9409
+ "text": "number | undefined"
9257
9410
  },
9258
9411
  "privacy": "public",
9259
- "default": "false",
9260
- "description": "Whether the button is disabled",
9261
- "attribute": "disabled",
9262
- "reflects": true
9412
+ "description": "The step number for this thought search result",
9413
+ "attribute": "step"
9414
+ },
9415
+ {
9416
+ "kind": "field",
9417
+ "name": "sources",
9418
+ "type": {
9419
+ "text": "Source[]"
9420
+ },
9421
+ "privacy": "public",
9422
+ "default": "[]",
9423
+ "description": "Array of sources for the search result",
9424
+ "attribute": "sources"
9263
9425
  }
9264
9426
  ],
9265
9427
  "attributes": [
9266
9428
  {
9267
- "name": "disabled",
9429
+ "name": "step",
9268
9430
  "type": {
9269
- "text": "boolean"
9431
+ "text": "number | undefined"
9270
9432
  },
9271
- "default": "false",
9272
- "description": "Whether the button is disabled",
9273
- "fieldName": "disabled"
9433
+ "description": "The step number for this thought search result",
9434
+ "fieldName": "step"
9435
+ },
9436
+ {
9437
+ "name": "sources",
9438
+ "type": {
9439
+ "text": "Source[]"
9440
+ },
9441
+ "default": "[]",
9442
+ "description": "Array of sources for the search result",
9443
+ "fieldName": "sources"
9274
9444
  }
9275
9445
  ],
9276
9446
  "superclass": {
9277
9447
  "name": "LitElement",
9278
9448
  "package": "lit"
9279
9449
  },
9280
- "tagName": "forge-prompt-button",
9450
+ "tagName": "forge-ai-thought-search-result",
9281
9451
  "customElement": true
9282
9452
  }
9283
9453
  ],
9284
9454
  "exports": [
9285
9455
  {
9286
9456
  "kind": "js",
9287
- "name": "PromptButtonComponentTagName",
9457
+ "name": "ThoughtSearchResultComponentTagName",
9288
9458
  "declaration": {
9289
- "name": "PromptButtonComponentTagName",
9290
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9459
+ "name": "ThoughtSearchResultComponentTagName",
9460
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9291
9461
  }
9292
9462
  },
9293
9463
  {
9294
9464
  "kind": "js",
9295
- "name": "PromptButtonComponent",
9465
+ "name": "ThoughtSearchResultComponent",
9296
9466
  "declaration": {
9297
- "name": "PromptButtonComponent",
9298
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9467
+ "name": "ThoughtSearchResultComponent",
9468
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9299
9469
  }
9300
9470
  },
9301
9471
  {
9302
9472
  "kind": "custom-element-definition",
9303
9473
  "declaration": {
9304
- "name": "PromptButtonComponent",
9305
- "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9474
+ "name": "ThoughtSearchResultComponent",
9475
+ "module": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts"
9306
9476
  }
9307
9477
  }
9308
9478
  ]
@@ -9360,95 +9530,21 @@
9360
9530
  },
9361
9531
  {
9362
9532
  "kind": "javascript-module",
9363
- "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
9533
+ "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
9364
9534
  "declarations": [
9365
9535
  {
9366
9536
  "kind": "variable",
9367
- "name": "displayDataTableTool",
9537
+ "name": "PromptButtonComponentTagName",
9368
9538
  "type": {
9369
- "text": "ToolDefinition"
9370
- },
9371
- "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' }) }"
9372
- }
9373
- ],
9374
- "exports": [
9375
- {
9376
- "kind": "js",
9377
- "name": "displayDataTableTool",
9378
- "declaration": {
9379
- "name": "displayDataTableTool",
9380
- "module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
9381
- }
9382
- }
9383
- ]
9384
- },
9385
- {
9386
- "kind": "javascript-module",
9387
- "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9388
- "declarations": [
9389
- {
9390
- "kind": "class",
9391
- "description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
9392
- "name": "DataTableToolElement",
9393
- "members": [
9394
- {
9395
- "kind": "field",
9396
- "name": "toolCall",
9397
- "type": {
9398
- "text": "ToolCall<TableData>"
9399
- },
9400
- "privacy": "public",
9401
- "description": "Tool call data containing table configuration and data"
9402
- }
9403
- ],
9404
- "superclass": {
9405
- "name": "LitElement",
9406
- "package": "lit"
9539
+ "text": "keyof HTMLElementTagNameMap"
9407
9540
  },
9408
- "tagName": "forge-ai-tool-data-table",
9409
- "customElement": true
9410
- }
9411
- ],
9412
- "exports": [
9413
- {
9414
- "kind": "custom-element-definition",
9415
- "name": "forge-ai-tool-data-table",
9416
- "declaration": {
9417
- "name": "DataTableToolElement",
9418
- "module": "src/lib/tools/ai-data-table/ai-data-table.ts"
9419
- }
9420
- }
9421
- ]
9422
- },
9423
- {
9424
- "kind": "javascript-module",
9425
- "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
9426
- "declarations": [
9541
+ "default": "'forge-prompt-button'"
9542
+ },
9427
9543
  {
9428
9544
  "kind": "class",
9429
9545
  "description": "",
9430
- "name": "AiPaginator",
9546
+ "name": "PromptButtonComponent",
9431
9547
  "members": [
9432
- {
9433
- "kind": "field",
9434
- "name": "currentPage",
9435
- "type": {
9436
- "text": "number"
9437
- },
9438
- "privacy": "public",
9439
- "default": "1",
9440
- "attribute": "current-page"
9441
- },
9442
- {
9443
- "kind": "field",
9444
- "name": "totalPages",
9445
- "type": {
9446
- "text": "number"
9447
- },
9448
- "privacy": "public",
9449
- "default": "1",
9450
- "attribute": "total-pages"
9451
- },
9452
9548
  {
9453
9549
  "kind": "field",
9454
9550
  "name": "disabled",
@@ -9457,41 +9553,19 @@
9457
9553
  },
9458
9554
  "privacy": "public",
9459
9555
  "default": "false",
9556
+ "description": "Whether the button is disabled",
9460
9557
  "attribute": "disabled",
9461
9558
  "reflects": true
9462
9559
  }
9463
9560
  ],
9464
- "events": [
9465
- {
9466
- "name": "page-change",
9467
- "type": {
9468
- "text": "CustomEvent"
9469
- }
9470
- }
9471
- ],
9472
9561
  "attributes": [
9473
- {
9474
- "name": "current-page",
9475
- "type": {
9476
- "text": "number"
9477
- },
9478
- "default": "1",
9479
- "fieldName": "currentPage"
9480
- },
9481
- {
9482
- "name": "total-pages",
9483
- "type": {
9484
- "text": "number"
9485
- },
9486
- "default": "1",
9487
- "fieldName": "totalPages"
9488
- },
9489
9562
  {
9490
9563
  "name": "disabled",
9491
9564
  "type": {
9492
9565
  "text": "boolean"
9493
9566
  },
9494
9567
  "default": "false",
9568
+ "description": "Whether the button is disabled",
9495
9569
  "fieldName": "disabled"
9496
9570
  }
9497
9571
  ],
@@ -9499,40 +9573,47 @@
9499
9573
  "name": "LitElement",
9500
9574
  "package": "lit"
9501
9575
  },
9502
- "tagName": "forge-ai-paginator",
9576
+ "tagName": "forge-prompt-button",
9503
9577
  "customElement": true
9504
9578
  }
9505
9579
  ],
9506
9580
  "exports": [
9507
9581
  {
9508
9582
  "kind": "js",
9509
- "name": "AiPaginator",
9583
+ "name": "PromptButtonComponentTagName",
9510
9584
  "declaration": {
9511
- "name": "AiPaginator",
9512
- "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
9585
+ "name": "PromptButtonComponentTagName",
9586
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9587
+ }
9588
+ },
9589
+ {
9590
+ "kind": "js",
9591
+ "name": "PromptButtonComponent",
9592
+ "declaration": {
9593
+ "name": "PromptButtonComponent",
9594
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9513
9595
  }
9514
9596
  },
9515
9597
  {
9516
9598
  "kind": "custom-element-definition",
9517
- "name": "forge-ai-paginator",
9518
9599
  "declaration": {
9519
- "name": "AiPaginator",
9520
- "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
9600
+ "name": "PromptButtonComponent",
9601
+ "module": "src/lib/ai-prompt/prompt-button/prompt-button.ts"
9521
9602
  }
9522
9603
  }
9523
9604
  ]
9524
9605
  },
9525
9606
  {
9526
9607
  "kind": "javascript-module",
9527
- "path": "src/lib/core/popover/popover.ts",
9608
+ "path": "src/lib/core/overlay/overlay.ts",
9528
9609
  "declarations": [
9529
9610
  {
9530
9611
  "kind": "class",
9531
9612
  "description": "",
9532
- "name": "ForgeAiPopoverComponent",
9613
+ "name": "ForgeAiOverlayComponent",
9533
9614
  "slots": [
9534
9615
  {
9535
- "description": "The default slot for popover content.",
9616
+ "description": "The default slot for overlay content.",
9536
9617
  "name": ""
9537
9618
  }
9538
9619
  ],
@@ -9545,18 +9626,18 @@
9545
9626
  },
9546
9627
  "privacy": "public",
9547
9628
  "default": "null",
9548
- "description": "The anchor element to position the popover relative to.",
9629
+ "description": "The anchor element to position the overlay relative to.",
9549
9630
  "attribute": "anchor"
9550
9631
  },
9551
9632
  {
9552
9633
  "kind": "field",
9553
9634
  "name": "placement",
9554
9635
  "type": {
9555
- "text": "PopoverPlacement"
9636
+ "text": "OverlayPlacement"
9556
9637
  },
9557
9638
  "privacy": "public",
9558
9639
  "default": "'bottom-start'",
9559
- "description": "The placement of the popover relative to the anchor.",
9640
+ "description": "The placement of the overlay relative to the anchor.",
9560
9641
  "attribute": "placement"
9561
9642
  },
9562
9643
  {
@@ -9566,8 +9647,8 @@
9566
9647
  "text": "boolean"
9567
9648
  },
9568
9649
  "privacy": "public",
9569
- "default": "false",
9570
- "description": "Whether the popover should flip to the opposite side when there's no space.",
9650
+ "default": "true",
9651
+ "description": "Whether the overlay should flip to the opposite side when there's no space.",
9571
9652
  "attribute": "flip"
9572
9653
  },
9573
9654
  {
@@ -9578,7 +9659,7 @@
9578
9659
  },
9579
9660
  "privacy": "public",
9580
9661
  "default": "false",
9581
- "description": "Whether the popover should shift to stay in view.",
9662
+ "description": "Whether the overlay should shift to stay in view.",
9582
9663
  "attribute": "shift"
9583
9664
  },
9584
9665
  {
@@ -9589,30 +9670,30 @@
9589
9670
  },
9590
9671
  "privacy": "public",
9591
9672
  "default": "false",
9592
- "description": "Whether the popover is open.",
9673
+ "description": "Whether the overlay is open.",
9593
9674
  "attribute": "open",
9594
9675
  "reflects": true
9595
9676
  },
9596
9677
  {
9597
9678
  "kind": "field",
9598
- "name": "arrow",
9679
+ "name": "arrowElement",
9599
9680
  "type": {
9600
- "text": "boolean"
9681
+ "text": "HTMLElement | null"
9601
9682
  },
9602
9683
  "privacy": "public",
9603
- "default": "false",
9604
- "description": "Whether to show an arrow pointing to the anchor element.",
9605
- "attribute": "arrow"
9684
+ "default": "null",
9685
+ "description": "The arrow element to position relative to the overlay.",
9686
+ "attribute": "arrowElement"
9606
9687
  },
9607
9688
  {
9608
9689
  "kind": "field",
9609
9690
  "name": "offset",
9610
9691
  "type": {
9611
- "text": "PopoverOffset | undefined"
9692
+ "text": "OverlayOffset | undefined"
9612
9693
  },
9613
9694
  "privacy": "public",
9614
9695
  "default": "undefined",
9615
- "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.",
9696
+ "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.",
9616
9697
  "attribute": "offset"
9617
9698
  },
9618
9699
  {
@@ -9623,7 +9704,7 @@
9623
9704
  },
9624
9705
  "privacy": "public",
9625
9706
  "default": "'auto'",
9626
- "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9707
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9627
9708
  "attribute": "dismiss-mode"
9628
9709
  }
9629
9710
  ],
@@ -9634,16 +9715,16 @@
9634
9715
  "text": "Element | null"
9635
9716
  },
9636
9717
  "default": "null",
9637
- "description": "The anchor element to position the popover relative to.",
9718
+ "description": "The anchor element to position the overlay relative to.",
9638
9719
  "fieldName": "anchor"
9639
9720
  },
9640
9721
  {
9641
9722
  "name": "placement",
9642
9723
  "type": {
9643
- "text": "PopoverPlacement"
9724
+ "text": "OverlayPlacement"
9644
9725
  },
9645
9726
  "default": "'bottom-start'",
9646
- "description": "The placement of the popover relative to the anchor.",
9727
+ "description": "The placement of the overlay relative to the anchor.",
9647
9728
  "fieldName": "placement"
9648
9729
  },
9649
9730
  {
@@ -9651,8 +9732,8 @@
9651
9732
  "type": {
9652
9733
  "text": "boolean"
9653
9734
  },
9654
- "default": "false",
9655
- "description": "Whether the popover should flip to the opposite side when there's no space.",
9735
+ "default": "true",
9736
+ "description": "Whether the overlay should flip to the opposite side when there's no space.",
9656
9737
  "fieldName": "flip"
9657
9738
  },
9658
9739
  {
@@ -9661,7 +9742,7 @@
9661
9742
  "text": "boolean"
9662
9743
  },
9663
9744
  "default": "false",
9664
- "description": "Whether the popover should shift to stay in view.",
9745
+ "description": "Whether the overlay should shift to stay in view.",
9665
9746
  "fieldName": "shift"
9666
9747
  },
9667
9748
  {
@@ -9670,76 +9751,138 @@
9670
9751
  "text": "boolean"
9671
9752
  },
9672
9753
  "default": "false",
9673
- "description": "Whether the popover is open.",
9754
+ "description": "Whether the overlay is open.",
9674
9755
  "fieldName": "open"
9675
9756
  },
9676
9757
  {
9677
- "name": "arrow",
9758
+ "name": "arrowElement",
9678
9759
  "type": {
9679
- "text": "boolean"
9760
+ "text": "HTMLElement | null"
9680
9761
  },
9681
- "default": "false",
9682
- "description": "Whether to show an arrow pointing to the anchor element.",
9683
- "fieldName": "arrow"
9762
+ "default": "null",
9763
+ "description": "The arrow element to position relative to the overlay.",
9764
+ "fieldName": "arrowElement"
9684
9765
  },
9685
9766
  {
9686
9767
  "name": "offset",
9687
9768
  "type": {
9688
- "text": "PopoverOffset | undefined"
9769
+ "text": "OverlayOffset | undefined"
9689
9770
  },
9690
9771
  "default": "undefined",
9691
- "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.",
9772
+ "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.",
9692
9773
  "fieldName": "offset"
9693
9774
  },
9694
9775
  {
9695
- "name": "dismiss-mode",
9776
+ "name": "dismiss-mode",
9777
+ "type": {
9778
+ "text": "'auto' | 'manual'"
9779
+ },
9780
+ "default": "'auto'",
9781
+ "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9782
+ "fieldName": "dismissMode"
9783
+ }
9784
+ ],
9785
+ "superclass": {
9786
+ "name": "LitElement",
9787
+ "package": "lit"
9788
+ },
9789
+ "summary": "A low-level overlay component for internal use within AI components.",
9790
+ "tagName": "forge-ai-overlay",
9791
+ "customElement": true
9792
+ }
9793
+ ],
9794
+ "exports": [
9795
+ {
9796
+ "kind": "js",
9797
+ "name": "ForgeAiOverlayComponent",
9798
+ "declaration": {
9799
+ "name": "ForgeAiOverlayComponent",
9800
+ "module": "src/lib/core/overlay/overlay.ts"
9801
+ }
9802
+ },
9803
+ {
9804
+ "kind": "custom-element-definition",
9805
+ "name": "forge-ai-overlay",
9806
+ "declaration": {
9807
+ "name": "ForgeAiOverlayComponent",
9808
+ "module": "src/lib/core/overlay/overlay.ts"
9809
+ }
9810
+ }
9811
+ ]
9812
+ },
9813
+ {
9814
+ "kind": "javascript-module",
9815
+ "path": "src/lib/tools/ai-data-table/ai-data-table-definition.ts",
9816
+ "declarations": [
9817
+ {
9818
+ "kind": "variable",
9819
+ "name": "displayDataTableTool",
9820
+ "type": {
9821
+ "text": "ToolDefinition"
9822
+ },
9823
+ "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' }) }"
9824
+ }
9825
+ ],
9826
+ "exports": [
9827
+ {
9828
+ "kind": "js",
9829
+ "name": "displayDataTableTool",
9830
+ "declaration": {
9831
+ "name": "displayDataTableTool",
9832
+ "module": "src/lib/tools/ai-data-table/ai-data-table-definition.ts"
9833
+ }
9834
+ }
9835
+ ]
9836
+ },
9837
+ {
9838
+ "kind": "javascript-module",
9839
+ "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
9840
+ "declarations": [
9841
+ {
9842
+ "kind": "class",
9843
+ "description": "Data table component tool renderer for displaying tabular data with pagination and filtering.",
9844
+ "name": "DataTableToolElement",
9845
+ "members": [
9846
+ {
9847
+ "kind": "field",
9848
+ "name": "toolCall",
9696
9849
  "type": {
9697
- "text": "'auto' | 'manual'"
9850
+ "text": "ToolCall<TableData>"
9698
9851
  },
9699
- "default": "'auto'",
9700
- "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9701
- "fieldName": "dismissMode"
9852
+ "privacy": "public",
9853
+ "description": "Tool call data containing table configuration and data"
9702
9854
  }
9703
9855
  ],
9704
9856
  "superclass": {
9705
9857
  "name": "LitElement",
9706
9858
  "package": "lit"
9707
9859
  },
9708
- "summary": "A popover component that provides styled overlay functionality.",
9709
- "tagName": "forge-ai-popover",
9860
+ "tagName": "forge-ai-tool-data-table",
9710
9861
  "customElement": true
9711
9862
  }
9712
9863
  ],
9713
9864
  "exports": [
9714
- {
9715
- "kind": "js",
9716
- "name": "ForgeAiPopoverComponent",
9717
- "declaration": {
9718
- "name": "ForgeAiPopoverComponent",
9719
- "module": "src/lib/core/popover/popover.ts"
9720
- }
9721
- },
9722
9865
  {
9723
9866
  "kind": "custom-element-definition",
9724
- "name": "forge-ai-popover",
9867
+ "name": "forge-ai-tool-data-table",
9725
9868
  "declaration": {
9726
- "name": "ForgeAiPopoverComponent",
9727
- "module": "src/lib/core/popover/popover.ts"
9869
+ "name": "DataTableToolElement",
9870
+ "module": "src/lib/tools/ai-data-table/ai-data-table.ts"
9728
9871
  }
9729
9872
  }
9730
9873
  ]
9731
9874
  },
9732
9875
  {
9733
9876
  "kind": "javascript-module",
9734
- "path": "src/lib/core/overlay/overlay.ts",
9877
+ "path": "src/lib/core/popover/popover.ts",
9735
9878
  "declarations": [
9736
9879
  {
9737
9880
  "kind": "class",
9738
9881
  "description": "",
9739
- "name": "ForgeAiOverlayComponent",
9882
+ "name": "ForgeAiPopoverComponent",
9740
9883
  "slots": [
9741
9884
  {
9742
- "description": "The default slot for overlay content.",
9885
+ "description": "The default slot for popover content.",
9743
9886
  "name": ""
9744
9887
  }
9745
9888
  ],
@@ -9752,18 +9895,18 @@
9752
9895
  },
9753
9896
  "privacy": "public",
9754
9897
  "default": "null",
9755
- "description": "The anchor element to position the overlay relative to.",
9898
+ "description": "The anchor element to position the popover relative to.",
9756
9899
  "attribute": "anchor"
9757
9900
  },
9758
9901
  {
9759
9902
  "kind": "field",
9760
9903
  "name": "placement",
9761
9904
  "type": {
9762
- "text": "OverlayPlacement"
9905
+ "text": "PopoverPlacement"
9763
9906
  },
9764
9907
  "privacy": "public",
9765
9908
  "default": "'bottom-start'",
9766
- "description": "The placement of the overlay relative to the anchor.",
9909
+ "description": "The placement of the popover relative to the anchor.",
9767
9910
  "attribute": "placement"
9768
9911
  },
9769
9912
  {
@@ -9773,8 +9916,8 @@
9773
9916
  "text": "boolean"
9774
9917
  },
9775
9918
  "privacy": "public",
9776
- "default": "true",
9777
- "description": "Whether the overlay should flip to the opposite side when there's no space.",
9919
+ "default": "false",
9920
+ "description": "Whether the popover should flip to the opposite side when there's no space.",
9778
9921
  "attribute": "flip"
9779
9922
  },
9780
9923
  {
@@ -9785,7 +9928,7 @@
9785
9928
  },
9786
9929
  "privacy": "public",
9787
9930
  "default": "false",
9788
- "description": "Whether the overlay should shift to stay in view.",
9931
+ "description": "Whether the popover should shift to stay in view.",
9789
9932
  "attribute": "shift"
9790
9933
  },
9791
9934
  {
@@ -9796,30 +9939,30 @@
9796
9939
  },
9797
9940
  "privacy": "public",
9798
9941
  "default": "false",
9799
- "description": "Whether the overlay is open.",
9942
+ "description": "Whether the popover is open.",
9800
9943
  "attribute": "open",
9801
9944
  "reflects": true
9802
9945
  },
9803
9946
  {
9804
9947
  "kind": "field",
9805
- "name": "arrowElement",
9948
+ "name": "arrow",
9806
9949
  "type": {
9807
- "text": "HTMLElement | null"
9950
+ "text": "boolean"
9808
9951
  },
9809
9952
  "privacy": "public",
9810
- "default": "null",
9811
- "description": "The arrow element to position relative to the overlay.",
9812
- "attribute": "arrowElement"
9953
+ "default": "false",
9954
+ "description": "Whether to show an arrow pointing to the anchor element.",
9955
+ "attribute": "arrow"
9813
9956
  },
9814
9957
  {
9815
9958
  "kind": "field",
9816
9959
  "name": "offset",
9817
9960
  "type": {
9818
- "text": "OverlayOffset | undefined"
9961
+ "text": "PopoverOffset | undefined"
9819
9962
  },
9820
9963
  "privacy": "public",
9821
9964
  "default": "undefined",
9822
- "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.",
9965
+ "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.",
9823
9966
  "attribute": "offset"
9824
9967
  },
9825
9968
  {
@@ -9830,7 +9973,7 @@
9830
9973
  },
9831
9974
  "privacy": "public",
9832
9975
  "default": "'auto'",
9833
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9976
+ "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9834
9977
  "attribute": "dismiss-mode"
9835
9978
  }
9836
9979
  ],
@@ -9841,16 +9984,16 @@
9841
9984
  "text": "Element | null"
9842
9985
  },
9843
9986
  "default": "null",
9844
- "description": "The anchor element to position the overlay relative to.",
9987
+ "description": "The anchor element to position the popover relative to.",
9845
9988
  "fieldName": "anchor"
9846
9989
  },
9847
9990
  {
9848
9991
  "name": "placement",
9849
9992
  "type": {
9850
- "text": "OverlayPlacement"
9993
+ "text": "PopoverPlacement"
9851
9994
  },
9852
9995
  "default": "'bottom-start'",
9853
- "description": "The placement of the overlay relative to the anchor.",
9996
+ "description": "The placement of the popover relative to the anchor.",
9854
9997
  "fieldName": "placement"
9855
9998
  },
9856
9999
  {
@@ -9858,8 +10001,8 @@
9858
10001
  "type": {
9859
10002
  "text": "boolean"
9860
10003
  },
9861
- "default": "true",
9862
- "description": "Whether the overlay should flip to the opposite side when there's no space.",
10004
+ "default": "false",
10005
+ "description": "Whether the popover should flip to the opposite side when there's no space.",
9863
10006
  "fieldName": "flip"
9864
10007
  },
9865
10008
  {
@@ -9868,7 +10011,7 @@
9868
10011
  "text": "boolean"
9869
10012
  },
9870
10013
  "default": "false",
9871
- "description": "Whether the overlay should shift to stay in view.",
10014
+ "description": "Whether the popover should shift to stay in view.",
9872
10015
  "fieldName": "shift"
9873
10016
  },
9874
10017
  {
@@ -9877,25 +10020,25 @@
9877
10020
  "text": "boolean"
9878
10021
  },
9879
10022
  "default": "false",
9880
- "description": "Whether the overlay is open.",
10023
+ "description": "Whether the popover is open.",
9881
10024
  "fieldName": "open"
9882
10025
  },
9883
10026
  {
9884
- "name": "arrowElement",
10027
+ "name": "arrow",
9885
10028
  "type": {
9886
- "text": "HTMLElement | null"
10029
+ "text": "boolean"
9887
10030
  },
9888
- "default": "null",
9889
- "description": "The arrow element to position relative to the overlay.",
9890
- "fieldName": "arrowElement"
10031
+ "default": "false",
10032
+ "description": "Whether to show an arrow pointing to the anchor element.",
10033
+ "fieldName": "arrow"
9891
10034
  },
9892
10035
  {
9893
10036
  "name": "offset",
9894
10037
  "type": {
9895
- "text": "OverlayOffset | undefined"
10038
+ "text": "PopoverOffset | undefined"
9896
10039
  },
9897
10040
  "default": "undefined",
9898
- "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.",
10041
+ "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.",
9899
10042
  "fieldName": "offset"
9900
10043
  },
9901
10044
  {
@@ -9904,7 +10047,7 @@
9904
10047
  "text": "'auto' | 'manual'"
9905
10048
  },
9906
10049
  "default": "'auto'",
9907
- "description": "The dismiss mode for the overlay.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
10050
+ "description": "The dismiss mode for the popover.\n- 'auto': Automatically closes on outside clicks and Escape key\n- 'manual': Requires manual control to close",
9908
10051
  "fieldName": "dismissMode"
9909
10052
  }
9910
10053
  ],
@@ -9912,26 +10055,26 @@
9912
10055
  "name": "LitElement",
9913
10056
  "package": "lit"
9914
10057
  },
9915
- "summary": "A low-level overlay component for internal use within AI components.",
9916
- "tagName": "forge-ai-overlay",
10058
+ "summary": "A popover component that provides styled overlay functionality.",
10059
+ "tagName": "forge-ai-popover",
9917
10060
  "customElement": true
9918
10061
  }
9919
10062
  ],
9920
10063
  "exports": [
9921
10064
  {
9922
10065
  "kind": "js",
9923
- "name": "ForgeAiOverlayComponent",
10066
+ "name": "ForgeAiPopoverComponent",
9924
10067
  "declaration": {
9925
- "name": "ForgeAiOverlayComponent",
9926
- "module": "src/lib/core/overlay/overlay.ts"
10068
+ "name": "ForgeAiPopoverComponent",
10069
+ "module": "src/lib/core/popover/popover.ts"
9927
10070
  }
9928
10071
  },
9929
10072
  {
9930
10073
  "kind": "custom-element-definition",
9931
- "name": "forge-ai-overlay",
10074
+ "name": "forge-ai-popover",
9932
10075
  "declaration": {
9933
- "name": "ForgeAiOverlayComponent",
9934
- "module": "src/lib/core/overlay/overlay.ts"
10076
+ "name": "ForgeAiPopoverComponent",
10077
+ "module": "src/lib/core/popover/popover.ts"
9935
10078
  }
9936
10079
  }
9937
10080
  ]
@@ -10075,93 +10218,195 @@
10075
10218
  ],
10076
10219
  "attributes": [
10077
10220
  {
10078
- "name": "for",
10221
+ "name": "for",
10222
+ "type": {
10223
+ "text": "string"
10224
+ },
10225
+ "default": "''",
10226
+ "description": "The ID of the anchor element to attach the tooltip to.",
10227
+ "fieldName": "for"
10228
+ },
10229
+ {
10230
+ "name": "text",
10231
+ "type": {
10232
+ "text": "string"
10233
+ },
10234
+ "default": "''",
10235
+ "description": "The text content of the tooltip (alternative to slotted content).",
10236
+ "fieldName": "text"
10237
+ },
10238
+ {
10239
+ "name": "placement",
10240
+ "type": {
10241
+ "text": "TooltipPlacement"
10242
+ },
10243
+ "default": "'top'",
10244
+ "description": "The placement of the tooltip relative to the anchor.",
10245
+ "fieldName": "placement"
10246
+ },
10247
+ {
10248
+ "name": "trigger",
10249
+ "type": {
10250
+ "text": "TooltipTrigger"
10251
+ },
10252
+ "default": "'hover'",
10253
+ "description": "How the tooltip should be triggered.",
10254
+ "fieldName": "trigger"
10255
+ },
10256
+ {
10257
+ "name": "open",
10258
+ "type": {
10259
+ "text": "boolean"
10260
+ },
10261
+ "default": "false",
10262
+ "description": "Whether the tooltip is open.",
10263
+ "fieldName": "open"
10264
+ },
10265
+ {
10266
+ "name": "delay",
10267
+ "type": {
10268
+ "text": "number"
10269
+ },
10270
+ "default": "500",
10271
+ "description": "Delay in milliseconds before showing the tooltip.",
10272
+ "fieldName": "delay"
10273
+ },
10274
+ {
10275
+ "name": "hide-delay",
10276
+ "type": {
10277
+ "text": "number"
10278
+ },
10279
+ "default": "0",
10280
+ "description": "Delay in milliseconds before hiding the tooltip.",
10281
+ "fieldName": "hideDelay"
10282
+ }
10283
+ ],
10284
+ "superclass": {
10285
+ "name": "LitElement",
10286
+ "package": "lit"
10287
+ },
10288
+ "summary": "A tooltip component with accessibility features and dynamic positioning.",
10289
+ "tagName": "forge-ai-tooltip",
10290
+ "customElement": true
10291
+ }
10292
+ ],
10293
+ "exports": [
10294
+ {
10295
+ "kind": "js",
10296
+ "name": "ForgeAiTooltipComponent",
10297
+ "declaration": {
10298
+ "name": "ForgeAiTooltipComponent",
10299
+ "module": "src/lib/core/tooltip/tooltip.ts"
10300
+ }
10301
+ },
10302
+ {
10303
+ "kind": "custom-element-definition",
10304
+ "name": "forge-ai-tooltip",
10305
+ "declaration": {
10306
+ "name": "ForgeAiTooltipComponent",
10307
+ "module": "src/lib/core/tooltip/tooltip.ts"
10308
+ }
10309
+ }
10310
+ ]
10311
+ },
10312
+ {
10313
+ "kind": "javascript-module",
10314
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
10315
+ "declarations": [
10316
+ {
10317
+ "kind": "class",
10318
+ "description": "",
10319
+ "name": "AiPaginator",
10320
+ "members": [
10321
+ {
10322
+ "kind": "field",
10323
+ "name": "currentPage",
10079
10324
  "type": {
10080
- "text": "string"
10325
+ "text": "number"
10081
10326
  },
10082
- "default": "''",
10083
- "description": "The ID of the anchor element to attach the tooltip to.",
10084
- "fieldName": "for"
10327
+ "privacy": "public",
10328
+ "default": "1",
10329
+ "attribute": "current-page"
10085
10330
  },
10086
10331
  {
10087
- "name": "text",
10332
+ "kind": "field",
10333
+ "name": "totalPages",
10088
10334
  "type": {
10089
- "text": "string"
10335
+ "text": "number"
10090
10336
  },
10091
- "default": "''",
10092
- "description": "The text content of the tooltip (alternative to slotted content).",
10093
- "fieldName": "text"
10337
+ "privacy": "public",
10338
+ "default": "1",
10339
+ "attribute": "total-pages"
10094
10340
  },
10095
10341
  {
10096
- "name": "placement",
10342
+ "kind": "field",
10343
+ "name": "disabled",
10097
10344
  "type": {
10098
- "text": "TooltipPlacement"
10345
+ "text": "boolean"
10099
10346
  },
10100
- "default": "'top'",
10101
- "description": "The placement of the tooltip relative to the anchor.",
10102
- "fieldName": "placement"
10103
- },
10347
+ "privacy": "public",
10348
+ "default": "false",
10349
+ "attribute": "disabled",
10350
+ "reflects": true
10351
+ }
10352
+ ],
10353
+ "events": [
10104
10354
  {
10105
- "name": "trigger",
10355
+ "name": "page-change",
10106
10356
  "type": {
10107
- "text": "TooltipTrigger"
10108
- },
10109
- "default": "'hover'",
10110
- "description": "How the tooltip should be triggered.",
10111
- "fieldName": "trigger"
10112
- },
10357
+ "text": "CustomEvent"
10358
+ }
10359
+ }
10360
+ ],
10361
+ "attributes": [
10113
10362
  {
10114
- "name": "open",
10363
+ "name": "current-page",
10115
10364
  "type": {
10116
- "text": "boolean"
10365
+ "text": "number"
10117
10366
  },
10118
- "default": "false",
10119
- "description": "Whether the tooltip is open.",
10120
- "fieldName": "open"
10367
+ "default": "1",
10368
+ "fieldName": "currentPage"
10121
10369
  },
10122
10370
  {
10123
- "name": "delay",
10371
+ "name": "total-pages",
10124
10372
  "type": {
10125
10373
  "text": "number"
10126
10374
  },
10127
- "default": "500",
10128
- "description": "Delay in milliseconds before showing the tooltip.",
10129
- "fieldName": "delay"
10375
+ "default": "1",
10376
+ "fieldName": "totalPages"
10130
10377
  },
10131
10378
  {
10132
- "name": "hide-delay",
10379
+ "name": "disabled",
10133
10380
  "type": {
10134
- "text": "number"
10381
+ "text": "boolean"
10135
10382
  },
10136
- "default": "0",
10137
- "description": "Delay in milliseconds before hiding the tooltip.",
10138
- "fieldName": "hideDelay"
10383
+ "default": "false",
10384
+ "fieldName": "disabled"
10139
10385
  }
10140
10386
  ],
10141
10387
  "superclass": {
10142
10388
  "name": "LitElement",
10143
10389
  "package": "lit"
10144
10390
  },
10145
- "summary": "A tooltip component with accessibility features and dynamic positioning.",
10146
- "tagName": "forge-ai-tooltip",
10391
+ "tagName": "forge-ai-paginator",
10147
10392
  "customElement": true
10148
10393
  }
10149
10394
  ],
10150
10395
  "exports": [
10151
10396
  {
10152
10397
  "kind": "js",
10153
- "name": "ForgeAiTooltipComponent",
10398
+ "name": "AiPaginator",
10154
10399
  "declaration": {
10155
- "name": "ForgeAiTooltipComponent",
10156
- "module": "src/lib/core/tooltip/tooltip.ts"
10400
+ "name": "AiPaginator",
10401
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
10157
10402
  }
10158
10403
  },
10159
10404
  {
10160
10405
  "kind": "custom-element-definition",
10161
- "name": "forge-ai-tooltip",
10406
+ "name": "forge-ai-paginator",
10162
10407
  "declaration": {
10163
- "name": "ForgeAiTooltipComponent",
10164
- "module": "src/lib/core/tooltip/tooltip.ts"
10408
+ "name": "AiPaginator",
10409
+ "module": "src/lib/tools/ai-paginator/ai-paginator.ts"
10165
10410
  }
10166
10411
  }
10167
10412
  ]
@@ -10171,7 +10416,7 @@
10171
10416
  "forgeTypes": {
10172
10417
  "AgentInfo": {
10173
10418
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
10174
- "lineNumber": 39
10419
+ "lineNumber": 47
10175
10420
  },
10176
10421
  "AiAgentInfoComponent": {
10177
10422
  "path": "src/lib/ai-agent-info/ai-agent-info.ts",
@@ -10181,6 +10426,14 @@
10181
10426
  "path": "src/lib/ai-artifact/ai-artifact.ts",
10182
10427
  "lineNumber": 23
10183
10428
  },
10429
+ "ForgeAiAgentSelectorChangeEventData": {
10430
+ "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
10431
+ "lineNumber": 23
10432
+ },
10433
+ "AiAgentSelectorComponent": {
10434
+ "path": "src/lib/ai-agent-selector/ai-agent-selector.ts",
10435
+ "lineNumber": 48
10436
+ },
10184
10437
  "ForgeAiAssistantResponseFeedbackEventData": {
10185
10438
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
10186
10439
  "lineNumber": 30
@@ -10189,6 +10442,10 @@
10189
10442
  "path": "src/lib/ai-assistant-response/ai-assistant-response.ts",
10190
10443
  "lineNumber": 47
10191
10444
  },
10445
+ "AiButtonComponent": {
10446
+ "path": "src/lib/ai-button/ai-button.ts",
10447
+ "lineNumber": 22
10448
+ },
10192
10449
  "ForgeAiAttachmentRemoveEventData": {
10193
10450
  "path": "src/lib/ai-attachment/ai-attachment.ts",
10194
10451
  "lineNumber": 19
@@ -10197,25 +10454,25 @@
10197
10454
  "path": "src/lib/ai-attachment/ai-attachment.ts",
10198
10455
  "lineNumber": 41
10199
10456
  },
10200
- "AiButtonComponent": {
10201
- "path": "src/lib/ai-button/ai-button.ts",
10202
- "lineNumber": 22
10203
- },
10204
10457
  "AiChainOfThoughtComponent": {
10205
10458
  "path": "src/lib/ai-chain-of-thought/ai-chain-of-thought.ts",
10206
10459
  "lineNumber": 17
10207
10460
  },
10461
+ "ForgeAiChatHeaderAgentChangeEventData": {
10462
+ "path": "src/lib/ai-chat-header/ai-chat-header.ts",
10463
+ "lineNumber": 38
10464
+ },
10208
10465
  "MinimizeIconType": {
10209
10466
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
10210
- "lineNumber": 35
10467
+ "lineNumber": 43
10211
10468
  },
10212
10469
  "OptionState": {
10213
10470
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
10214
- "lineNumber": 37
10471
+ "lineNumber": 45
10215
10472
  },
10216
10473
  "AiChatHeaderComponent": {
10217
10474
  "path": "src/lib/ai-chat-header/ai-chat-header.ts",
10218
- "lineNumber": 68
10475
+ "lineNumber": 76
10219
10476
  },
10220
10477
  "AiChatInterfaceComponent": {
10221
10478
  "path": "src/lib/ai-chat-interface/ai-chat-interface.ts",
@@ -10239,15 +10496,15 @@
10239
10496
  },
10240
10497
  "MessageStartEvent": {
10241
10498
  "path": "src/lib/ai-chatbot/types.ts",
10242
- "lineNumber": 75
10499
+ "lineNumber": 81
10243
10500
  },
10244
10501
  "MessageDeltaEvent": {
10245
10502
  "path": "src/lib/ai-chatbot/types.ts",
10246
- "lineNumber": 79
10503
+ "lineNumber": 85
10247
10504
  },
10248
10505
  "MessageEndEvent": {
10249
10506
  "path": "src/lib/ai-chatbot/types.ts",
10250
- "lineNumber": 84
10507
+ "lineNumber": 90
10251
10508
  },
10252
10509
  "ToolCallEvent": {
10253
10510
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
@@ -10255,19 +10512,19 @@
10255
10512
  },
10256
10513
  "ToolCallStartEvent": {
10257
10514
  "path": "src/lib/ai-chatbot/types.ts",
10258
- "lineNumber": 88
10515
+ "lineNumber": 94
10259
10516
  },
10260
10517
  "ToolCallArgsEvent": {
10261
10518
  "path": "src/lib/ai-chatbot/types.ts",
10262
- "lineNumber": 94
10519
+ "lineNumber": 100
10263
10520
  },
10264
10521
  "ToolCallEndEvent": {
10265
10522
  "path": "src/lib/ai-chatbot/types.ts",
10266
- "lineNumber": 102
10523
+ "lineNumber": 108
10267
10524
  },
10268
10525
  "ToolResultEvent": {
10269
10526
  "path": "src/lib/ai-chatbot/types.ts",
10270
- "lineNumber": 109
10527
+ "lineNumber": 115
10271
10528
  },
10272
10529
  "AdapterState": {
10273
10530
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
@@ -10279,7 +10536,7 @@
10279
10536
  },
10280
10537
  "FileRemoveEvent": {
10281
10538
  "path": "src/lib/ai-chatbot/types.ts",
10282
- "lineNumber": 204
10539
+ "lineNumber": 211
10283
10540
  },
10284
10541
  "ErrorEvent": {
10285
10542
  "path": "src/lib/ai-chatbot/agent-adapter.ts",
@@ -10347,31 +10604,35 @@
10347
10604
  },
10348
10605
  "ForgeAiChatbotMessageEventData": {
10349
10606
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10350
- "lineNumber": 83
10607
+ "lineNumber": 87
10351
10608
  },
10352
10609
  "ForgeAiChatbotToolCallEventData": {
10353
10610
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10354
- "lineNumber": 87
10611
+ "lineNumber": 91
10355
10612
  },
10356
10613
  "ForgeAiChatbotErrorEventData": {
10357
10614
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10358
- "lineNumber": 93
10615
+ "lineNumber": 97
10359
10616
  },
10360
10617
  "ForgeAiChatbotFileRemoveEventData": {
10361
10618
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10362
- "lineNumber": 97
10619
+ "lineNumber": 101
10363
10620
  },
10364
10621
  "ForgeAiChatbotResponseFeedbackEventData": {
10365
10622
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10366
- "lineNumber": 101
10623
+ "lineNumber": 105
10624
+ },
10625
+ "ForgeAiChatbotAgentChangeEventData": {
10626
+ "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10627
+ "lineNumber": 111
10367
10628
  },
10368
10629
  "FeatureToggle": {
10369
10630
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10370
- "lineNumber": 112
10631
+ "lineNumber": 121
10371
10632
  },
10372
10633
  "AiChatbotComponent": {
10373
10634
  "path": "src/lib/ai-chatbot/ai-chatbot.ts",
10374
- "lineNumber": 143
10635
+ "lineNumber": 157
10375
10636
  },
10376
10637
  "CreateToolRendererElementConfig": {
10377
10638
  "path": "src/lib/ai-chatbot/create-tool-renderer.ts",
@@ -10423,107 +10684,111 @@
10423
10684
  },
10424
10685
  "MessageStateController": {
10425
10686
  "path": "src/lib/ai-chatbot/message-state-controller.ts",
10426
- "lineNumber": 36
10687
+ "lineNumber": 37
10427
10688
  },
10428
10689
  "HeadingLevel": {
10429
10690
  "path": "src/lib/ai-chatbot/types.ts",
10430
10691
  "lineNumber": 4
10431
10692
  },
10432
- "SlashCommandId": {
10693
+ "Agent": {
10433
10694
  "path": "src/lib/ai-chatbot/types.ts",
10434
10695
  "lineNumber": 6
10435
10696
  },
10697
+ "SlashCommandId": {
10698
+ "path": "src/lib/ai-chatbot/types.ts",
10699
+ "lineNumber": 12
10700
+ },
10436
10701
  "SlashCommandGroup": {
10437
10702
  "path": "src/lib/ai-chatbot/types.ts",
10438
- "lineNumber": 8
10703
+ "lineNumber": 14
10439
10704
  },
10440
10705
  "SlashCommand": {
10441
10706
  "path": "src/lib/ai-chatbot/types.ts",
10442
- "lineNumber": 10
10707
+ "lineNumber": 16
10443
10708
  },
10444
10709
  "ForgeAiSlashCommandMenuSelectEventData": {
10445
10710
  "path": "src/lib/ai-chatbot/types.ts",
10446
- "lineNumber": 16
10711
+ "lineNumber": 22
10447
10712
  },
10448
10713
  "ToolRenderer": {
10449
10714
  "path": "src/lib/ai-chatbot/types.ts",
10450
- "lineNumber": 21
10715
+ "lineNumber": 27
10451
10716
  },
10452
10717
  "IToolRenderer": {
10453
10718
  "path": "src/lib/ai-chatbot/types.ts",
10454
- "lineNumber": 30
10719
+ "lineNumber": 36
10455
10720
  },
10456
10721
  "HandlerContext": {
10457
10722
  "path": "src/lib/ai-chatbot/types.ts",
10458
- "lineNumber": 38
10723
+ "lineNumber": 44
10459
10724
  },
10460
10725
  "ToolType": {
10461
10726
  "path": "src/lib/ai-chatbot/types.ts",
10462
- "lineNumber": 49
10727
+ "lineNumber": 55
10463
10728
  },
10464
10729
  "ToolDefinition": {
10465
10730
  "path": "src/lib/ai-chatbot/types.ts",
10466
- "lineNumber": 55
10731
+ "lineNumber": 61
10467
10732
  },
10468
10733
  "StreamEvent": {
10469
10734
  "path": "src/lib/ai-chatbot/types.ts",
10470
- "lineNumber": 115
10735
+ "lineNumber": 121
10471
10736
  },
10472
10737
  "ChatMessage": {
10473
10738
  "path": "src/lib/ai-chatbot/types.ts",
10474
- "lineNumber": 124
10739
+ "lineNumber": 130
10475
10740
  },
10476
10741
  "ToolCall": {
10477
10742
  "path": "src/lib/ai-chatbot/types.ts",
10478
- "lineNumber": 137
10743
+ "lineNumber": 144
10479
10744
  },
10480
10745
  "ResponseItem": {
10481
10746
  "path": "src/lib/ai-chatbot/types.ts",
10482
- "lineNumber": 149
10747
+ "lineNumber": 156
10483
10748
  },
10484
10749
  "FeedbackType": {
10485
10750
  "path": "src/lib/ai-chatbot/types.ts",
10486
- "lineNumber": 153
10751
+ "lineNumber": 160
10487
10752
  },
10488
10753
  "ResponseFeedback": {
10489
10754
  "path": "src/lib/ai-chatbot/types.ts",
10490
- "lineNumber": 155
10755
+ "lineNumber": 162
10491
10756
  },
10492
10757
  "AssistantResponse": {
10493
10758
  "path": "src/lib/ai-chatbot/types.ts",
10494
- "lineNumber": 160
10759
+ "lineNumber": 167
10495
10760
  },
10496
10761
  "FileAttachment": {
10497
10762
  "path": "src/lib/ai-chatbot/types.ts",
10498
- "lineNumber": 169
10763
+ "lineNumber": 176
10499
10764
  },
10500
10765
  "UploadedFileMetadata": {
10501
10766
  "path": "src/lib/ai-chatbot/types.ts",
10502
- "lineNumber": 182
10767
+ "lineNumber": 189
10503
10768
  },
10504
10769
  "FileUploadCallbacks": {
10505
10770
  "path": "src/lib/ai-chatbot/types.ts",
10506
- "lineNumber": 190
10771
+ "lineNumber": 197
10507
10772
  },
10508
10773
  "FileUploadHandler": {
10509
10774
  "path": "src/lib/ai-chatbot/types.ts",
10510
- "lineNumber": 197
10775
+ "lineNumber": 204
10511
10776
  },
10512
10777
  "FileRemoveCallbacks": {
10513
10778
  "path": "src/lib/ai-chatbot/types.ts",
10514
- "lineNumber": 199
10779
+ "lineNumber": 206
10515
10780
  },
10516
10781
  "ForgeAiChatbotFileSelectEventData": {
10517
10782
  "path": "src/lib/ai-chatbot/types.ts",
10518
- "lineNumber": 208
10783
+ "lineNumber": 215
10519
10784
  },
10520
10785
  "MessageItem": {
10521
10786
  "path": "src/lib/ai-chatbot/types.ts",
10522
- "lineNumber": 221
10787
+ "lineNumber": 228
10523
10788
  },
10524
10789
  "ThreadState": {
10525
10790
  "path": "src/lib/ai-chatbot/types.ts",
10526
- "lineNumber": 226
10791
+ "lineNumber": 233
10527
10792
  },
10528
10793
  "AiDialogComponent": {
10529
10794
  "path": "src/lib/ai-dialog/ai-dialog.ts",
@@ -10597,14 +10862,14 @@
10597
10862
  "path": "src/lib/ai-empty-state/ai-empty-state.ts",
10598
10863
  "lineNumber": 23
10599
10864
  },
10600
- "AiEventStreamViewerComponent": {
10601
- "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
10602
- "lineNumber": 21
10603
- },
10604
10865
  "AiErrorMessageComponent": {
10605
10866
  "path": "src/lib/ai-error-message/ai-error-message.ts",
10606
10867
  "lineNumber": 22
10607
10868
  },
10869
+ "AiEventStreamViewerComponent": {
10870
+ "path": "src/lib/ai-event-stream-viewer/ai-event-stream-viewer.ts",
10871
+ "lineNumber": 21
10872
+ },
10608
10873
  "AiFabComponent": {
10609
10874
  "path": "src/lib/ai-fab/ai-fab.ts",
10610
10875
  "lineNumber": 22
@@ -10669,6 +10934,10 @@
10669
10934
  "path": "src/lib/ai-modal/ai-modal.ts",
10670
10935
  "lineNumber": 36
10671
10936
  },
10937
+ "AiReasoningComponent": {
10938
+ "path": "src/lib/ai-reasoning/ai-reasoning.ts",
10939
+ "lineNumber": 17
10940
+ },
10672
10941
  "ForgeAiPromptSendEventData": {
10673
10942
  "path": "src/lib/ai-prompt/ai-prompt.ts",
10674
10943
  "lineNumber": 29
@@ -10689,18 +10958,14 @@
10689
10958
  "path": "src/lib/ai-prompt/ai-prompt.ts",
10690
10959
  "lineNumber": 63
10691
10960
  },
10692
- "AiReasoningComponent": {
10693
- "path": "src/lib/ai-reasoning/ai-reasoning.ts",
10694
- "lineNumber": 17
10961
+ "AiResponseMessageComponent": {
10962
+ "path": "src/lib/ai-response-message/ai-response-message.ts",
10963
+ "lineNumber": 19
10695
10964
  },
10696
10965
  "AiReasoningHeaderComponent": {
10697
10966
  "path": "src/lib/ai-reasoning-header/ai-reasoning-header.ts",
10698
10967
  "lineNumber": 22
10699
10968
  },
10700
- "AiResponseMessageComponent": {
10701
- "path": "src/lib/ai-response-message/ai-response-message.ts",
10702
- "lineNumber": 19
10703
- },
10704
10969
  "ForgeAiResponseMessageToolbarActionEventData": {
10705
10970
  "path": "src/lib/ai-response-message-toolbar/ai-response-message-toolbar.ts",
10706
10971
  "lineNumber": 23
@@ -10737,6 +11002,10 @@
10737
11002
  "path": "src/lib/ai-spinner/ai-spinner.ts",
10738
11003
  "lineNumber": 27
10739
11004
  },
11005
+ "AiThinkingIndicatorComponent": {
11006
+ "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
11007
+ "lineNumber": 38
11008
+ },
10740
11009
  "Suggestion": {
10741
11010
  "path": "src/lib/ai-suggestions/ai-suggestions.ts",
10742
11011
  "lineNumber": 20
@@ -10751,23 +11020,7 @@
10751
11020
  },
10752
11021
  "AiSuggestionsComponent": {
10753
11022
  "path": "src/lib/ai-suggestions/ai-suggestions.ts",
10754
- "lineNumber": 44
10755
- },
10756
- "AiThinkingIndicatorComponent": {
10757
- "path": "src/lib/ai-thinking-indicator/ai-thinking-indicator.ts",
10758
- "lineNumber": 38
10759
- },
10760
- "Thread": {
10761
- "path": "src/lib/ai-threads/ai-threads.ts",
10762
- "lineNumber": 19
10763
- },
10764
- "ForgeAiThreadsSelectEventData": {
10765
- "path": "src/lib/ai-threads/ai-threads.ts",
10766
- "lineNumber": 26
10767
- },
10768
- "AiThreadsComponent": {
10769
- "path": "src/lib/ai-threads/ai-threads.ts",
10770
- "lineNumber": 46
11023
+ "lineNumber": 45
10771
11024
  },
10772
11025
  "ForgeAiUserMessageCopyEventData": {
10773
11026
  "path": "src/lib/ai-user-message/ai-user-message.ts",
@@ -10785,6 +11038,18 @@
10785
11038
  "path": "src/lib/ai-user-message/ai-user-message.ts",
10786
11039
  "lineNumber": 42
10787
11040
  },
11041
+ "Thread": {
11042
+ "path": "src/lib/ai-threads/ai-threads.ts",
11043
+ "lineNumber": 19
11044
+ },
11045
+ "ForgeAiThreadsSelectEventData": {
11046
+ "path": "src/lib/ai-threads/ai-threads.ts",
11047
+ "lineNumber": 26
11048
+ },
11049
+ "AiThreadsComponent": {
11050
+ "path": "src/lib/ai-threads/ai-threads.ts",
11051
+ "lineNumber": 46
11052
+ },
10788
11053
  "AiUserMessageToolbarComponent": {
10789
11054
  "path": "src/lib/ai-user-message-toolbar/ai-user-message-toolbar.ts",
10790
11055
  "lineNumber": 31
@@ -10833,6 +11098,10 @@
10833
11098
  "path": "src/lib/ai-chain-of-thought/thought-detail/thought-detail.ts",
10834
11099
  "lineNumber": 18
10835
11100
  },
11101
+ "ThoughtImageComponent": {
11102
+ "path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
11103
+ "lineNumber": 19
11104
+ },
10836
11105
  "Source": {
10837
11106
  "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
10838
11107
  "lineNumber": 14
@@ -10841,17 +11110,25 @@
10841
11110
  "path": "src/lib/ai-chain-of-thought/thought-search-result/thought-search-result.ts",
10842
11111
  "lineNumber": 24
10843
11112
  },
10844
- "ThoughtImageComponent": {
10845
- "path": "src/lib/ai-chain-of-thought/thought-image/thought-image.ts",
10846
- "lineNumber": 19
11113
+ "ReasoningContentComponent": {
11114
+ "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
11115
+ "lineNumber": 17
10847
11116
  },
10848
11117
  "PromptButtonComponent": {
10849
11118
  "path": "src/lib/ai-prompt/prompt-button/prompt-button.ts",
10850
11119
  "lineNumber": 17
10851
11120
  },
10852
- "ReasoningContentComponent": {
10853
- "path": "src/lib/ai-reasoning/reasoning-content/reasoning-content.ts",
10854
- "lineNumber": 17
11121
+ "OverlayPlacement": {
11122
+ "path": "src/lib/core/overlay/overlay.ts",
11123
+ "lineNumber": 31
11124
+ },
11125
+ "OverlayOffset": {
11126
+ "path": "src/lib/core/overlay/overlay.ts",
11127
+ "lineNumber": 33
11128
+ },
11129
+ "ForgeAiOverlayComponent": {
11130
+ "path": "src/lib/core/overlay/overlay.ts",
11131
+ "lineNumber": 40
10855
11132
  },
10856
11133
  "TableData": {
10857
11134
  "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
@@ -10861,10 +11138,6 @@
10861
11138
  "path": "src/lib/tools/ai-data-table/ai-data-table.ts",
10862
11139
  "lineNumber": 32
10863
11140
  },
10864
- "AiPaginator": {
10865
- "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
10866
- "lineNumber": 13
10867
- },
10868
11141
  "PopoverToggleEventData": {
10869
11142
  "path": "src/lib/core/popover/popover.ts",
10870
11143
  "lineNumber": 18
@@ -10881,18 +11154,6 @@
10881
11154
  "path": "src/lib/core/popover/popover.ts",
10882
11155
  "lineNumber": 37
10883
11156
  },
10884
- "OverlayPlacement": {
10885
- "path": "src/lib/core/overlay/overlay.ts",
10886
- "lineNumber": 31
10887
- },
10888
- "OverlayOffset": {
10889
- "path": "src/lib/core/overlay/overlay.ts",
10890
- "lineNumber": 33
10891
- },
10892
- "ForgeAiOverlayComponent": {
10893
- "path": "src/lib/core/overlay/overlay.ts",
10894
- "lineNumber": 40
10895
- },
10896
11157
  "TooltipToggleEventDetail": {
10897
11158
  "path": "src/lib/core/tooltip/tooltip.ts",
10898
11159
  "lineNumber": 20
@@ -10908,6 +11169,10 @@
10908
11169
  "ForgeAiTooltipComponent": {
10909
11170
  "path": "src/lib/core/tooltip/tooltip.ts",
10910
11171
  "lineNumber": 44
11172
+ },
11173
+ "AiPaginator": {
11174
+ "path": "src/lib/tools/ai-paginator/ai-paginator.ts",
11175
+ "lineNumber": 13
10911
11176
  }
10912
11177
  }
10913
11178
  }