@genesislcap/ai-assistant 14.403.0-ai-assistant.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 (244) hide show
  1. package/api-extractor.json +4 -0
  2. package/dist/ai-assistant.api.json +4028 -0
  3. package/dist/ai-assistant.d.ts +396 -0
  4. package/dist/dts/channel/ai-activity-channel.d.ts +32 -0
  5. package/dist/dts/channel/ai-activity-channel.d.ts.map +1 -0
  6. package/dist/dts/components/activity-halo/activity-halo.d.ts +31 -0
  7. package/dist/dts/components/activity-halo/activity-halo.d.ts.map +1 -0
  8. package/dist/dts/components/chat-bubble/chat-bubble.d.ts +52 -0
  9. package/dist/dts/components/chat-bubble/chat-bubble.d.ts.map +1 -0
  10. package/dist/dts/components/chat-bubble/chat-bubble.styles.d.ts +2 -0
  11. package/dist/dts/components/chat-bubble/chat-bubble.styles.d.ts.map +1 -0
  12. package/dist/dts/components/chat-bubble/chat-bubble.template.d.ts +4 -0
  13. package/dist/dts/components/chat-bubble/chat-bubble.template.d.ts.map +1 -0
  14. package/dist/dts/components/chat-bubble/index.d.ts +2 -0
  15. package/dist/dts/components/chat-bubble/index.d.ts.map +1 -0
  16. package/dist/dts/components/chat-driver/chat-driver.d.ts +49 -0
  17. package/dist/dts/components/chat-driver/chat-driver.d.ts.map +1 -0
  18. package/dist/dts/components/chat-driver/index.d.ts +2 -0
  19. package/dist/dts/components/chat-driver/index.d.ts.map +1 -0
  20. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.d.ts +19 -0
  21. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.d.ts.map +1 -0
  22. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.styles.d.ts +2 -0
  23. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.styles.d.ts.map +1 -0
  24. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.template.d.ts +3 -0
  25. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.template.d.ts.map +1 -0
  26. package/dist/dts/components/chat-interaction-wrapper/index.d.ts +4 -0
  27. package/dist/dts/components/chat-interaction-wrapper/index.d.ts.map +1 -0
  28. package/dist/dts/components/chat-markdown/chat-markdown.d.ts +6 -0
  29. package/dist/dts/components/chat-markdown/chat-markdown.d.ts.map +1 -0
  30. package/dist/dts/components/chat-markdown/index.d.ts +2 -0
  31. package/dist/dts/components/chat-markdown/index.d.ts.map +1 -0
  32. package/dist/dts/components/halo-overlay.d.ts +25 -0
  33. package/dist/dts/components/halo-overlay.d.ts.map +1 -0
  34. package/dist/dts/config/config.d.ts +51 -0
  35. package/dist/dts/config/config.d.ts.map +1 -0
  36. package/dist/dts/config/configure.d.ts +1 -0
  37. package/dist/dts/config/configure.d.ts.map +1 -0
  38. package/dist/dts/config/index.d.ts +2 -0
  39. package/dist/dts/config/index.d.ts.map +1 -0
  40. package/dist/dts/index.d.ts +10 -0
  41. package/dist/dts/index.d.ts.map +1 -0
  42. package/dist/dts/main/index.d.ts +5 -0
  43. package/dist/dts/main/index.d.ts.map +1 -0
  44. package/dist/dts/main/main.d.ts +103 -0
  45. package/dist/dts/main/main.d.ts.map +1 -0
  46. package/dist/dts/main/main.styles.d.ts +2 -0
  47. package/dist/dts/main/main.styles.d.ts.map +1 -0
  48. package/dist/dts/main/main.template.d.ts +4 -0
  49. package/dist/dts/main/main.template.d.ts.map +1 -0
  50. package/dist/dts/main/main.types.d.ts +54 -0
  51. package/dist/dts/main/main.types.d.ts.map +1 -0
  52. package/dist/dts/styles/index.d.ts +2 -0
  53. package/dist/dts/styles/index.d.ts.map +1 -0
  54. package/dist/dts/styles/styles.d.ts +5 -0
  55. package/dist/dts/styles/styles.d.ts.map +1 -0
  56. package/dist/dts/tags/index.d.ts +1 -0
  57. package/dist/dts/tags/index.d.ts.map +1 -0
  58. package/dist/dts/types/ai-chat-widget.d.ts +12 -0
  59. package/dist/dts/types/ai-chat-widget.d.ts.map +1 -0
  60. package/dist/dts/utils/index.d.ts +2 -0
  61. package/dist/dts/utils/index.d.ts.map +1 -0
  62. package/dist/dts/utils/logger.d.ts +2 -0
  63. package/dist/dts/utils/logger.d.ts.map +1 -0
  64. package/dist/esm/channel/ai-activity-channel.js +2 -0
  65. package/dist/esm/components/activity-halo/activity-halo.js +119 -0
  66. package/dist/esm/components/chat-bubble/chat-bubble.js +381 -0
  67. package/dist/esm/components/chat-bubble/chat-bubble.styles.js +193 -0
  68. package/dist/esm/components/chat-bubble/chat-bubble.template.js +50 -0
  69. package/dist/esm/components/chat-bubble/index.js +1 -0
  70. package/dist/esm/components/chat-driver/chat-driver.js +209 -0
  71. package/dist/esm/components/chat-driver/index.js +1 -0
  72. package/dist/esm/components/chat-interaction-wrapper/chat-interaction-wrapper.js +90 -0
  73. package/dist/esm/components/chat-interaction-wrapper/chat-interaction-wrapper.styles.js +6 -0
  74. package/dist/esm/components/chat-interaction-wrapper/chat-interaction-wrapper.template.js +4 -0
  75. package/dist/esm/components/chat-interaction-wrapper/index.js +3 -0
  76. package/dist/esm/components/chat-markdown/chat-markdown.js +95 -0
  77. package/dist/esm/components/chat-markdown/index.js +1 -0
  78. package/dist/esm/components/halo-overlay.js +118 -0
  79. package/dist/esm/config/config.js +16 -0
  80. package/dist/esm/config/configure.js +0 -0
  81. package/dist/esm/config/index.js +1 -0
  82. package/dist/esm/index.js +8 -0
  83. package/dist/esm/main/index.js +4 -0
  84. package/dist/esm/main/main.js +491 -0
  85. package/dist/esm/main/main.styles.js +356 -0
  86. package/dist/esm/main/main.template.js +272 -0
  87. package/dist/esm/main/main.types.js +22 -0
  88. package/dist/esm/styles/index.js +1 -0
  89. package/dist/esm/styles/styles.js +237 -0
  90. package/dist/esm/tags/index.js +0 -0
  91. package/dist/esm/types/ai-chat-widget.js +1 -0
  92. package/dist/esm/utils/index.js +1 -0
  93. package/dist/esm/utils/logger.js +2 -0
  94. package/dist/tsconfig.tsbuildinfo +1 -0
  95. package/dist/tsdoc-metadata.json +11 -0
  96. package/docs/.gitattributes +2 -0
  97. package/docs/api/ai-assistant.ai_activity_channel_name.md +11 -0
  98. package/docs/api/ai-assistant.aiactivityevents.md +24 -0
  99. package/docs/api/ai-assistant.aiactivityhalo.channelname.md +16 -0
  100. package/docs/api/ai-assistant.aiactivityhalo.connectedcallback.md +18 -0
  101. package/docs/api/ai-assistant.aiactivityhalo.disconnectedcallback.md +18 -0
  102. package/docs/api/ai-assistant.aiactivityhalo.haloactive.md +14 -0
  103. package/docs/api/ai-assistant.aiactivityhalo.md +176 -0
  104. package/docs/api/ai-assistant.aiactivityhalo.minshowtime.md +16 -0
  105. package/docs/api/ai-assistant.aiactivityhalo.tools.md +16 -0
  106. package/docs/api/ai-assistant.aiassistantanimation.md +18 -0
  107. package/docs/api/ai-assistant.aiassistantanimationdef.label.md +16 -0
  108. package/docs/api/ai-assistant.aiassistantanimationdef.md +80 -0
  109. package/docs/api/ai-assistant.aiassistantanimationdef.tooltip.md +16 -0
  110. package/docs/api/ai-assistant.aiassistantconfig.chatconfig.md +16 -0
  111. package/docs/api/ai-assistant.aiassistantconfig.debugstatefactory.md +16 -0
  112. package/docs/api/ai-assistant.aiassistantconfig.headertitle.md +16 -0
  113. package/docs/api/ai-assistant.aiassistantconfig.md +157 -0
  114. package/docs/api/ai-assistant.aiassistantconfig.systemprompt.md +16 -0
  115. package/docs/api/ai-assistant.aiassistantconfig.tooldefinitions.md +16 -0
  116. package/docs/api/ai-assistant.aiassistantconfig.toolhandlers.md +16 -0
  117. package/docs/api/ai-assistant.aiassistantserializedstate.enabledanimations.md +14 -0
  118. package/docs/api/ai-assistant.aiassistantserializedstate.md +118 -0
  119. package/docs/api/ai-assistant.aiassistantserializedstate.messages.md +14 -0
  120. package/docs/api/ai-assistant.aiassistantserializedstate.showthinkingsteps.md +14 -0
  121. package/docs/api/ai-assistant.aiassistantserializedstate.showtoolcalls.md +14 -0
  122. package/docs/api/ai-assistant.aiassistantstate.md +16 -0
  123. package/docs/api/ai-assistant.aichatbubble.bubbleleft.md +11 -0
  124. package/docs/api/ai-assistant.aichatbubble.bubbletop.md +11 -0
  125. package/docs/api/ai-assistant.aichatbubble.channelname.md +11 -0
  126. package/docs/api/ai-assistant.aichatbubble.connectedcallback.md +15 -0
  127. package/docs/api/ai-assistant.aichatbubble.designsystemprefix.md +11 -0
  128. package/docs/api/ai-assistant.aichatbubble.dialogcontent.md +11 -0
  129. package/docs/api/ai-assistant.aichatbubble.dialogcontentchanged.md +64 -0
  130. package/docs/api/ai-assistant.aichatbubble.dialogheight.md +11 -0
  131. package/docs/api/ai-assistant.aichatbubble.dialogleft.md +11 -0
  132. package/docs/api/ai-assistant.aichatbubble.dialogopen.md +11 -0
  133. package/docs/api/ai-assistant.aichatbubble.dialogopenchanged.md +64 -0
  134. package/docs/api/ai-assistant.aichatbubble.dialogtop.md +11 -0
  135. package/docs/api/ai-assistant.aichatbubble.dialogwidth.md +11 -0
  136. package/docs/api/ai-assistant.aichatbubble.disconnectedcallback.md +15 -0
  137. package/docs/api/ai-assistant.aichatbubble.hovered.md +11 -0
  138. package/docs/api/ai-assistant.aichatbubble.imagesrc.md +11 -0
  139. package/docs/api/ai-assistant.aichatbubble.md +396 -0
  140. package/docs/api/ai-assistant.aichatbubble.onbubblemousedown.md +50 -0
  141. package/docs/api/ai-assistant.aichatbubble.onclosedialog.md +15 -0
  142. package/docs/api/ai-assistant.aichatbubble.ondialogheadermousedown.md +53 -0
  143. package/docs/api/ai-assistant.aichatbubble.onpopout.md +15 -0
  144. package/docs/api/ai-assistant.aichatbubble.title.md +11 -0
  145. package/docs/api/ai-assistant.aichatbubble.tooltipstyle.md +11 -0
  146. package/docs/api/ai-assistant.aichatwidget.data.md +14 -0
  147. package/docs/api/ai-assistant.aichatwidget.md +80 -0
  148. package/docs/api/ai-assistant.aichatwidget.resolved.md +16 -0
  149. package/docs/api/ai-assistant.animation_defs.md +25 -0
  150. package/docs/api/ai-assistant.chatdriver._constructor_.md +99 -0
  151. package/docs/api/ai-assistant.chatdriver.gethistory.md +18 -0
  152. package/docs/api/ai-assistant.chatdriver.isbusy.md +18 -0
  153. package/docs/api/ai-assistant.chatdriver.loadhistory.md +55 -0
  154. package/docs/api/ai-assistant.chatdriver.md +158 -0
  155. package/docs/api/ai-assistant.chatdriver.requestinteraction.md +73 -0
  156. package/docs/api/ai-assistant.chatdriver.resolveinteraction.md +69 -0
  157. package/docs/api/ai-assistant.chatdriver.sendmessage.md +69 -0
  158. package/docs/api/ai-assistant.chathistoryupdatedevent.md +16 -0
  159. package/docs/api/ai-assistant.defaultaiassistantconfig.md +16 -0
  160. package/docs/api/ai-assistant.foundationaiassistant.aiprovider.md +14 -0
  161. package/docs/api/ai-assistant.foundationaiassistant.applystate.md +55 -0
  162. package/docs/api/ai-assistant.foundationaiassistant.attachmenterrors.md +14 -0
  163. package/docs/api/ai-assistant.foundationaiassistant.attachments.md +14 -0
  164. package/docs/api/ai-assistant.foundationaiassistant.channelname.md +14 -0
  165. package/docs/api/ai-assistant.foundationaiassistant.chatconfig.md +14 -0
  166. package/docs/api/ai-assistant.foundationaiassistant.connectedcallback.md +18 -0
  167. package/docs/api/ai-assistant.foundationaiassistant.debugstatefactory.md +14 -0
  168. package/docs/api/ai-assistant.foundationaiassistant.designsystemprefix.md +14 -0
  169. package/docs/api/ai-assistant.foundationaiassistant.disconnectedcallback.md +18 -0
  170. package/docs/api/ai-assistant.foundationaiassistant.downloadhistory.md +18 -0
  171. package/docs/api/ai-assistant.foundationaiassistant.enabledanimations.md +16 -0
  172. package/docs/api/ai-assistant.foundationaiassistant.handlefileselect.md +53 -0
  173. package/docs/api/ai-assistant.foundationaiassistant.handleinteractioncompleted.md +53 -0
  174. package/docs/api/ai-assistant.foundationaiassistant.handlepopout.md +20 -0
  175. package/docs/api/ai-assistant.foundationaiassistant.handlesendclick.md +18 -0
  176. package/docs/api/ai-assistant.foundationaiassistant.hasactivependinginteraction.md +16 -0
  177. package/docs/api/ai-assistant.foundationaiassistant.headertitle.md +14 -0
  178. package/docs/api/ai-assistant.foundationaiassistant.imagesrc.md +14 -0
  179. package/docs/api/ai-assistant.foundationaiassistant.inputvalue.md +14 -0
  180. package/docs/api/ai-assistant.foundationaiassistant.md +826 -0
  181. package/docs/api/ai-assistant.foundationaiassistant.messages.md +14 -0
  182. package/docs/api/ai-assistant.foundationaiassistant.messageschanged.md +18 -0
  183. package/docs/api/ai-assistant.foundationaiassistant.onchatheadermousedown.md +53 -0
  184. package/docs/api/ai-assistant.foundationaiassistant.placeholder.md +14 -0
  185. package/docs/api/ai-assistant.foundationaiassistant.popoutmode.md +16 -0
  186. package/docs/api/ai-assistant.foundationaiassistant.removeattachment.md +53 -0
  187. package/docs/api/ai-assistant.foundationaiassistant.removeattachmenterror.md +53 -0
  188. package/docs/api/ai-assistant.foundationaiassistant.setenabledanimations.md +53 -0
  189. package/docs/api/ai-assistant.foundationaiassistant.settingsopen.md +16 -0
  190. package/docs/api/ai-assistant.foundationaiassistant.showhalo.md +16 -0
  191. package/docs/api/ai-assistant.foundationaiassistant.showhalochanged.md +18 -0
  192. package/docs/api/ai-assistant.foundationaiassistant.showloadingindicator.md +16 -0
  193. package/docs/api/ai-assistant.foundationaiassistant.showloadingindicatorchanged.md +18 -0
  194. package/docs/api/ai-assistant.foundationaiassistant.showthinkingsteps.md +16 -0
  195. package/docs/api/ai-assistant.foundationaiassistant.showtoolcalls.md +16 -0
  196. package/docs/api/ai-assistant.foundationaiassistant.state.md +14 -0
  197. package/docs/api/ai-assistant.foundationaiassistant.statechanged.md +18 -0
  198. package/docs/api/ai-assistant.foundationaiassistant.systemprompt.md +14 -0
  199. package/docs/api/ai-assistant.foundationaiassistant.togglesettings.md +18 -0
  200. package/docs/api/ai-assistant.foundationaiassistant.toggleshowthinkingsteps.md +18 -0
  201. package/docs/api/ai-assistant.foundationaiassistant.toggleshowtoolcalls.md +18 -0
  202. package/docs/api/ai-assistant.foundationaiassistant.tooldefinitions.md +14 -0
  203. package/docs/api/ai-assistant.foundationaiassistant.toolhandlers.md +14 -0
  204. package/docs/api/ai-assistant.foundationaiassistant.triggerfileinput.md +18 -0
  205. package/docs/api/ai-assistant.foundationaiassistant.visiblemessages.md +16 -0
  206. package/docs/api/ai-assistant.foundationaiassistanttemplate.md +50 -0
  207. package/docs/api/ai-assistant.md +262 -0
  208. package/docs/api/ai-assistant.popoutmode.md +16 -0
  209. package/docs/api/index.md +30 -0
  210. package/docs/api-report.md.api.md +280 -0
  211. package/license.txt +46 -0
  212. package/package.json +92 -0
  213. package/src/channel/ai-activity-channel.ts +30 -0
  214. package/src/components/activity-halo/activity-halo.ts +113 -0
  215. package/src/components/chat-bubble/chat-bubble.styles.ts +194 -0
  216. package/src/components/chat-bubble/chat-bubble.template.ts +63 -0
  217. package/src/components/chat-bubble/chat-bubble.ts +389 -0
  218. package/src/components/chat-bubble/index.ts +1 -0
  219. package/src/components/chat-driver/chat-driver.ts +254 -0
  220. package/src/components/chat-driver/index.ts +1 -0
  221. package/src/components/chat-interaction-wrapper/chat-interaction-wrapper.styles.ts +7 -0
  222. package/src/components/chat-interaction-wrapper/chat-interaction-wrapper.template.ts +6 -0
  223. package/src/components/chat-interaction-wrapper/chat-interaction-wrapper.ts +89 -0
  224. package/src/components/chat-interaction-wrapper/index.ts +3 -0
  225. package/src/components/chat-markdown/chat-markdown.ts +87 -0
  226. package/src/components/chat-markdown/index.ts +1 -0
  227. package/src/components/halo-overlay.ts +115 -0
  228. package/src/config/config.ts +59 -0
  229. package/src/config/configure.ts +0 -0
  230. package/src/config/index.ts +1 -0
  231. package/src/index.ts +9 -0
  232. package/src/main/index.ts +4 -0
  233. package/src/main/main.styles.ts +357 -0
  234. package/src/main/main.template.ts +364 -0
  235. package/src/main/main.ts +474 -0
  236. package/src/main/main.types.ts +58 -0
  237. package/src/styles/index.ts +1 -0
  238. package/src/styles/styles.ts +238 -0
  239. package/src/tags/index.ts +0 -0
  240. package/src/types/ai-chat-widget.ts +11 -0
  241. package/src/utils/index.ts +1 -0
  242. package/src/utils/logger.ts +3 -0
  243. package/temp/api-report.md.api.md +280 -0
  244. package/tsconfig.json +11 -0
@@ -0,0 +1,4028 @@
1
+ {
2
+ "metadata": {
3
+ "toolPackage": "@microsoft/api-extractor",
4
+ "toolVersion": "7.52.10",
5
+ "schemaVersion": 1011,
6
+ "oldestForwardsCompatibleVersion": 1001,
7
+ "tsdocConfig": {
8
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
9
+ "noStandardTags": true,
10
+ "tagDefinitions": [
11
+ {
12
+ "tagName": "@alpha",
13
+ "syntaxKind": "modifier"
14
+ },
15
+ {
16
+ "tagName": "@beta",
17
+ "syntaxKind": "modifier"
18
+ },
19
+ {
20
+ "tagName": "@defaultValue",
21
+ "syntaxKind": "block"
22
+ },
23
+ {
24
+ "tagName": "@decorator",
25
+ "syntaxKind": "block",
26
+ "allowMultiple": true
27
+ },
28
+ {
29
+ "tagName": "@deprecated",
30
+ "syntaxKind": "block"
31
+ },
32
+ {
33
+ "tagName": "@eventProperty",
34
+ "syntaxKind": "modifier"
35
+ },
36
+ {
37
+ "tagName": "@example",
38
+ "syntaxKind": "block",
39
+ "allowMultiple": true
40
+ },
41
+ {
42
+ "tagName": "@experimental",
43
+ "syntaxKind": "modifier"
44
+ },
45
+ {
46
+ "tagName": "@inheritDoc",
47
+ "syntaxKind": "inline"
48
+ },
49
+ {
50
+ "tagName": "@internal",
51
+ "syntaxKind": "modifier"
52
+ },
53
+ {
54
+ "tagName": "@label",
55
+ "syntaxKind": "inline"
56
+ },
57
+ {
58
+ "tagName": "@link",
59
+ "syntaxKind": "inline",
60
+ "allowMultiple": true
61
+ },
62
+ {
63
+ "tagName": "@override",
64
+ "syntaxKind": "modifier"
65
+ },
66
+ {
67
+ "tagName": "@packageDocumentation",
68
+ "syntaxKind": "modifier"
69
+ },
70
+ {
71
+ "tagName": "@param",
72
+ "syntaxKind": "block",
73
+ "allowMultiple": true
74
+ },
75
+ {
76
+ "tagName": "@privateRemarks",
77
+ "syntaxKind": "block"
78
+ },
79
+ {
80
+ "tagName": "@public",
81
+ "syntaxKind": "modifier"
82
+ },
83
+ {
84
+ "tagName": "@readonly",
85
+ "syntaxKind": "modifier"
86
+ },
87
+ {
88
+ "tagName": "@remarks",
89
+ "syntaxKind": "block"
90
+ },
91
+ {
92
+ "tagName": "@returns",
93
+ "syntaxKind": "block"
94
+ },
95
+ {
96
+ "tagName": "@sealed",
97
+ "syntaxKind": "modifier"
98
+ },
99
+ {
100
+ "tagName": "@see",
101
+ "syntaxKind": "block"
102
+ },
103
+ {
104
+ "tagName": "@throws",
105
+ "syntaxKind": "block",
106
+ "allowMultiple": true
107
+ },
108
+ {
109
+ "tagName": "@typeParam",
110
+ "syntaxKind": "block",
111
+ "allowMultiple": true
112
+ },
113
+ {
114
+ "tagName": "@virtual",
115
+ "syntaxKind": "modifier"
116
+ },
117
+ {
118
+ "tagName": "@betaDocumentation",
119
+ "syntaxKind": "modifier"
120
+ },
121
+ {
122
+ "tagName": "@internalRemarks",
123
+ "syntaxKind": "block"
124
+ },
125
+ {
126
+ "tagName": "@preapproved",
127
+ "syntaxKind": "modifier"
128
+ }
129
+ ],
130
+ "supportForTags": {
131
+ "@alpha": true,
132
+ "@beta": true,
133
+ "@defaultValue": true,
134
+ "@decorator": true,
135
+ "@deprecated": true,
136
+ "@eventProperty": true,
137
+ "@example": true,
138
+ "@experimental": true,
139
+ "@inheritDoc": true,
140
+ "@internal": true,
141
+ "@label": true,
142
+ "@link": true,
143
+ "@override": true,
144
+ "@packageDocumentation": true,
145
+ "@param": true,
146
+ "@privateRemarks": true,
147
+ "@public": true,
148
+ "@readonly": true,
149
+ "@remarks": true,
150
+ "@returns": true,
151
+ "@sealed": true,
152
+ "@see": true,
153
+ "@throws": true,
154
+ "@typeParam": true,
155
+ "@virtual": true,
156
+ "@betaDocumentation": true,
157
+ "@internalRemarks": true,
158
+ "@preapproved": true
159
+ },
160
+ "reportUnsupportedHtmlElements": false
161
+ }
162
+ },
163
+ "kind": "Package",
164
+ "canonicalReference": "@genesislcap/ai-assistant!",
165
+ "docComment": "",
166
+ "name": "@genesislcap/ai-assistant",
167
+ "preserveMemberOrder": false,
168
+ "members": [
169
+ {
170
+ "kind": "EntryPoint",
171
+ "canonicalReference": "@genesislcap/ai-assistant!",
172
+ "name": "",
173
+ "preserveMemberOrder": false,
174
+ "members": [
175
+ {
176
+ "kind": "Variable",
177
+ "canonicalReference": "@genesislcap/ai-assistant!AI_ACTIVITY_CHANNEL_NAME:var",
178
+ "docComment": "",
179
+ "excerptTokens": [
180
+ {
181
+ "kind": "Content",
182
+ "text": "AI_ACTIVITY_CHANNEL_NAME = "
183
+ },
184
+ {
185
+ "kind": "Content",
186
+ "text": "\"foundation-ai-activity\""
187
+ }
188
+ ],
189
+ "fileUrlPath": "src/channel/ai-activity-channel.ts",
190
+ "initializerTokenRange": {
191
+ "startIndex": 1,
192
+ "endIndex": 2
193
+ },
194
+ "isReadonly": true,
195
+ "releaseTag": "Public",
196
+ "name": "AI_ACTIVITY_CHANNEL_NAME",
197
+ "variableTypeTokenRange": {
198
+ "startIndex": 0,
199
+ "endIndex": 0
200
+ }
201
+ },
202
+ {
203
+ "kind": "TypeAlias",
204
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityEvents:type",
205
+ "docComment": "",
206
+ "excerptTokens": [
207
+ {
208
+ "kind": "Content",
209
+ "text": "export type AiActivityEvents = "
210
+ },
211
+ {
212
+ "kind": "Content",
213
+ "text": "{\n 'halo-start': {\n toolNames: string[];\n };\n 'halo-stop': void;\n 'chat-popout': {\n state: "
214
+ },
215
+ {
216
+ "kind": "Reference",
217
+ "text": "AiAssistantSerializedState",
218
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState:interface"
219
+ },
220
+ {
221
+ "kind": "Content",
222
+ "text": ";\n };\n 'chat-popin': {\n state: "
223
+ },
224
+ {
225
+ "kind": "Reference",
226
+ "text": "AiAssistantSerializedState",
227
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState:interface"
228
+ },
229
+ {
230
+ "kind": "Content",
231
+ "text": ";\n };\n}"
232
+ },
233
+ {
234
+ "kind": "Content",
235
+ "text": ";"
236
+ }
237
+ ],
238
+ "fileUrlPath": "src/channel/ai-activity-channel.ts",
239
+ "releaseTag": "Public",
240
+ "name": "AiActivityEvents",
241
+ "typeTokenRange": {
242
+ "startIndex": 1,
243
+ "endIndex": 6
244
+ }
245
+ },
246
+ {
247
+ "kind": "Class",
248
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo:class",
249
+ "docComment": "/**\n * Wrapper component that shows an `<ai-halo-overlay>` when the AI assistant is executing one of the declared tool names.\n *\n * @example\n * ```html\n * <ai-activity-halo tools=\"search_trades\">\n * <trades-grid></trades-grid>\n * </ai-activity-halo>\n * ```\n *\n * @beta\n */\n",
250
+ "excerptTokens": [
251
+ {
252
+ "kind": "Content",
253
+ "text": "export declare class AiActivityHalo extends "
254
+ },
255
+ {
256
+ "kind": "Reference",
257
+ "text": "GenesisElement",
258
+ "canonicalReference": "@microsoft/fast-element!FASTElement:interface"
259
+ },
260
+ {
261
+ "kind": "Content",
262
+ "text": " "
263
+ }
264
+ ],
265
+ "fileUrlPath": "src/components/activity-halo/activity-halo.ts",
266
+ "releaseTag": "Beta",
267
+ "isAbstract": false,
268
+ "name": "AiActivityHalo",
269
+ "preserveMemberOrder": false,
270
+ "members": [
271
+ {
272
+ "kind": "Property",
273
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#channelName:member",
274
+ "docComment": "/**\n * Broadcast channel name — must match the assistant's channel-name attribute.\n */\n",
275
+ "excerptTokens": [
276
+ {
277
+ "kind": "Content",
278
+ "text": "channelName: "
279
+ },
280
+ {
281
+ "kind": "Content",
282
+ "text": "string"
283
+ },
284
+ {
285
+ "kind": "Content",
286
+ "text": ";"
287
+ }
288
+ ],
289
+ "isReadonly": false,
290
+ "isOptional": false,
291
+ "releaseTag": "Beta",
292
+ "name": "channelName",
293
+ "propertyTypeTokenRange": {
294
+ "startIndex": 1,
295
+ "endIndex": 2
296
+ },
297
+ "isStatic": false,
298
+ "isProtected": false,
299
+ "isAbstract": false
300
+ },
301
+ {
302
+ "kind": "Method",
303
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#connectedCallback:member(1)",
304
+ "docComment": "",
305
+ "excerptTokens": [
306
+ {
307
+ "kind": "Content",
308
+ "text": "connectedCallback(): "
309
+ },
310
+ {
311
+ "kind": "Content",
312
+ "text": "void"
313
+ },
314
+ {
315
+ "kind": "Content",
316
+ "text": ";"
317
+ }
318
+ ],
319
+ "isStatic": false,
320
+ "returnTypeTokenRange": {
321
+ "startIndex": 1,
322
+ "endIndex": 2
323
+ },
324
+ "releaseTag": "Beta",
325
+ "isProtected": false,
326
+ "overloadIndex": 1,
327
+ "parameters": [],
328
+ "isOptional": false,
329
+ "isAbstract": false,
330
+ "name": "connectedCallback"
331
+ },
332
+ {
333
+ "kind": "Method",
334
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#disconnectedCallback:member(1)",
335
+ "docComment": "",
336
+ "excerptTokens": [
337
+ {
338
+ "kind": "Content",
339
+ "text": "disconnectedCallback(): "
340
+ },
341
+ {
342
+ "kind": "Content",
343
+ "text": "void"
344
+ },
345
+ {
346
+ "kind": "Content",
347
+ "text": ";"
348
+ }
349
+ ],
350
+ "isStatic": false,
351
+ "returnTypeTokenRange": {
352
+ "startIndex": 1,
353
+ "endIndex": 2
354
+ },
355
+ "releaseTag": "Beta",
356
+ "isProtected": false,
357
+ "overloadIndex": 1,
358
+ "parameters": [],
359
+ "isOptional": false,
360
+ "isAbstract": false,
361
+ "name": "disconnectedCallback"
362
+ },
363
+ {
364
+ "kind": "Property",
365
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#haloActive:member",
366
+ "docComment": "",
367
+ "excerptTokens": [
368
+ {
369
+ "kind": "Content",
370
+ "text": "haloActive: "
371
+ },
372
+ {
373
+ "kind": "Content",
374
+ "text": "boolean"
375
+ },
376
+ {
377
+ "kind": "Content",
378
+ "text": ";"
379
+ }
380
+ ],
381
+ "isReadonly": false,
382
+ "isOptional": false,
383
+ "releaseTag": "Beta",
384
+ "name": "haloActive",
385
+ "propertyTypeTokenRange": {
386
+ "startIndex": 1,
387
+ "endIndex": 2
388
+ },
389
+ "isStatic": false,
390
+ "isProtected": false,
391
+ "isAbstract": false
392
+ },
393
+ {
394
+ "kind": "Property",
395
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#minShowTime:member",
396
+ "docComment": "/**\n * Minimum time in ms the halo stays visible after activation.\n */\n",
397
+ "excerptTokens": [
398
+ {
399
+ "kind": "Content",
400
+ "text": "minShowTime: "
401
+ },
402
+ {
403
+ "kind": "Content",
404
+ "text": "number"
405
+ },
406
+ {
407
+ "kind": "Content",
408
+ "text": ";"
409
+ }
410
+ ],
411
+ "isReadonly": false,
412
+ "isOptional": false,
413
+ "releaseTag": "Beta",
414
+ "name": "minShowTime",
415
+ "propertyTypeTokenRange": {
416
+ "startIndex": 1,
417
+ "endIndex": 2
418
+ },
419
+ "isStatic": false,
420
+ "isProtected": false,
421
+ "isAbstract": false
422
+ },
423
+ {
424
+ "kind": "Property",
425
+ "canonicalReference": "@genesislcap/ai-assistant!AiActivityHalo#tools:member",
426
+ "docComment": "/**\n * Comma-separated list of tool names this element reacts to.\n */\n",
427
+ "excerptTokens": [
428
+ {
429
+ "kind": "Content",
430
+ "text": "tools: "
431
+ },
432
+ {
433
+ "kind": "Content",
434
+ "text": "string"
435
+ },
436
+ {
437
+ "kind": "Content",
438
+ "text": ";"
439
+ }
440
+ ],
441
+ "isReadonly": false,
442
+ "isOptional": false,
443
+ "releaseTag": "Beta",
444
+ "name": "tools",
445
+ "propertyTypeTokenRange": {
446
+ "startIndex": 1,
447
+ "endIndex": 2
448
+ },
449
+ "isStatic": false,
450
+ "isProtected": false,
451
+ "isAbstract": false
452
+ }
453
+ ],
454
+ "extendsTokenRange": {
455
+ "startIndex": 1,
456
+ "endIndex": 2
457
+ },
458
+ "implementsTokenRanges": []
459
+ },
460
+ {
461
+ "kind": "TypeAlias",
462
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type",
463
+ "docComment": "/**\n * Union of all available animation names, derived from {@link ANIMATION_DEFS}.\n *\n * @beta\n */\n",
464
+ "excerptTokens": [
465
+ {
466
+ "kind": "Content",
467
+ "text": "export type AiAssistantAnimation = "
468
+ },
469
+ {
470
+ "kind": "Content",
471
+ "text": "keyof typeof "
472
+ },
473
+ {
474
+ "kind": "Reference",
475
+ "text": "ANIMATION_DEFS",
476
+ "canonicalReference": "@genesislcap/ai-assistant!ANIMATION_DEFS:var"
477
+ },
478
+ {
479
+ "kind": "Content",
480
+ "text": ";"
481
+ }
482
+ ],
483
+ "fileUrlPath": "src/main/main.types.ts",
484
+ "releaseTag": "Beta",
485
+ "name": "AiAssistantAnimation",
486
+ "typeTokenRange": {
487
+ "startIndex": 1,
488
+ "endIndex": 3
489
+ }
490
+ },
491
+ {
492
+ "kind": "Interface",
493
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimationDef:interface",
494
+ "docComment": "/**\n * Metadata describing a UI animation in the assistant.\n *\n * @beta\n */\n",
495
+ "excerptTokens": [
496
+ {
497
+ "kind": "Content",
498
+ "text": "export interface AiAssistantAnimationDef "
499
+ }
500
+ ],
501
+ "fileUrlPath": "src/main/main.types.ts",
502
+ "releaseTag": "Beta",
503
+ "name": "AiAssistantAnimationDef",
504
+ "preserveMemberOrder": false,
505
+ "members": [
506
+ {
507
+ "kind": "PropertySignature",
508
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimationDef#label:member",
509
+ "docComment": "/**\n * Display label shown in the settings multiselect.\n */\n",
510
+ "excerptTokens": [
511
+ {
512
+ "kind": "Content",
513
+ "text": "label: "
514
+ },
515
+ {
516
+ "kind": "Content",
517
+ "text": "string"
518
+ },
519
+ {
520
+ "kind": "Content",
521
+ "text": ";"
522
+ }
523
+ ],
524
+ "isReadonly": false,
525
+ "isOptional": false,
526
+ "releaseTag": "Beta",
527
+ "name": "label",
528
+ "propertyTypeTokenRange": {
529
+ "startIndex": 1,
530
+ "endIndex": 2
531
+ }
532
+ },
533
+ {
534
+ "kind": "PropertySignature",
535
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimationDef#tooltip:member",
536
+ "docComment": "/**\n * Short description shown as a tooltip on the option.\n */\n",
537
+ "excerptTokens": [
538
+ {
539
+ "kind": "Content",
540
+ "text": "tooltip: "
541
+ },
542
+ {
543
+ "kind": "Content",
544
+ "text": "string"
545
+ },
546
+ {
547
+ "kind": "Content",
548
+ "text": ";"
549
+ }
550
+ ],
551
+ "isReadonly": false,
552
+ "isOptional": false,
553
+ "releaseTag": "Beta",
554
+ "name": "tooltip",
555
+ "propertyTypeTokenRange": {
556
+ "startIndex": 1,
557
+ "endIndex": 2
558
+ }
559
+ }
560
+ ],
561
+ "extendsTokenRanges": []
562
+ },
563
+ {
564
+ "kind": "Interface",
565
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig:interface",
566
+ "docComment": "/**\n * AiAssistantConfig DI interface.\n *\n * @beta\n */\n",
567
+ "excerptTokens": [
568
+ {
569
+ "kind": "Content",
570
+ "text": "export interface AiAssistantConfig extends "
571
+ },
572
+ {
573
+ "kind": "Reference",
574
+ "text": "PartialGenesisElementDefinition",
575
+ "canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
576
+ },
577
+ {
578
+ "kind": "Content",
579
+ "text": " "
580
+ }
581
+ ],
582
+ "fileUrlPath": "src/config/config.ts",
583
+ "releaseTag": "Beta",
584
+ "name": "AiAssistantConfig",
585
+ "preserveMemberOrder": false,
586
+ "members": [
587
+ {
588
+ "kind": "PropertySignature",
589
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#chatConfig:member",
590
+ "docComment": "/**\n * Chat display and behaviour configuration.\n */\n",
591
+ "excerptTokens": [
592
+ {
593
+ "kind": "Content",
594
+ "text": "chatConfig: "
595
+ },
596
+ {
597
+ "kind": "Reference",
598
+ "text": "ChatConfig",
599
+ "canonicalReference": "@genesislcap/foundation-ai!ChatConfig:interface"
600
+ },
601
+ {
602
+ "kind": "Content",
603
+ "text": ";"
604
+ }
605
+ ],
606
+ "isReadonly": false,
607
+ "isOptional": false,
608
+ "releaseTag": "Beta",
609
+ "name": "chatConfig",
610
+ "propertyTypeTokenRange": {
611
+ "startIndex": 1,
612
+ "endIndex": 2
613
+ }
614
+ },
615
+ {
616
+ "kind": "PropertySignature",
617
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#debugStateFactory:member",
618
+ "docComment": "/**\n * Optional factory called at download time to include extra app-specific debug state alongside the message history. Only used when `chatConfig.allowDebugDownload` is `true`.\n */\n",
619
+ "excerptTokens": [
620
+ {
621
+ "kind": "Content",
622
+ "text": "debugStateFactory?: "
623
+ },
624
+ {
625
+ "kind": "Content",
626
+ "text": "() => unknown"
627
+ },
628
+ {
629
+ "kind": "Content",
630
+ "text": ";"
631
+ }
632
+ ],
633
+ "isReadonly": false,
634
+ "isOptional": true,
635
+ "releaseTag": "Beta",
636
+ "name": "debugStateFactory",
637
+ "propertyTypeTokenRange": {
638
+ "startIndex": 1,
639
+ "endIndex": 2
640
+ }
641
+ },
642
+ {
643
+ "kind": "PropertySignature",
644
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#headerTitle:member",
645
+ "docComment": "/**\n * Display title shown in the chat header (e.g. 'Trades Assistant').\n */\n",
646
+ "excerptTokens": [
647
+ {
648
+ "kind": "Content",
649
+ "text": "headerTitle?: "
650
+ },
651
+ {
652
+ "kind": "Content",
653
+ "text": "string"
654
+ },
655
+ {
656
+ "kind": "Content",
657
+ "text": ";"
658
+ }
659
+ ],
660
+ "isReadonly": false,
661
+ "isOptional": true,
662
+ "releaseTag": "Beta",
663
+ "name": "headerTitle",
664
+ "propertyTypeTokenRange": {
665
+ "startIndex": 1,
666
+ "endIndex": 2
667
+ }
668
+ },
669
+ {
670
+ "kind": "PropertySignature",
671
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#systemPrompt:member",
672
+ "docComment": "/**\n * System prompt injected into every conversation.\n */\n",
673
+ "excerptTokens": [
674
+ {
675
+ "kind": "Content",
676
+ "text": "systemPrompt?: "
677
+ },
678
+ {
679
+ "kind": "Content",
680
+ "text": "string"
681
+ },
682
+ {
683
+ "kind": "Content",
684
+ "text": ";"
685
+ }
686
+ ],
687
+ "isReadonly": false,
688
+ "isOptional": true,
689
+ "releaseTag": "Beta",
690
+ "name": "systemPrompt",
691
+ "propertyTypeTokenRange": {
692
+ "startIndex": 1,
693
+ "endIndex": 2
694
+ }
695
+ },
696
+ {
697
+ "kind": "PropertySignature",
698
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#toolDefinitions:member",
699
+ "docComment": "/**\n * Tool definitions (JSON Schema) passed to the AI provider.\n */\n",
700
+ "excerptTokens": [
701
+ {
702
+ "kind": "Content",
703
+ "text": "toolDefinitions?: "
704
+ },
705
+ {
706
+ "kind": "Reference",
707
+ "text": "ChatToolDefinition",
708
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolDefinition:interface"
709
+ },
710
+ {
711
+ "kind": "Content",
712
+ "text": "[]"
713
+ },
714
+ {
715
+ "kind": "Content",
716
+ "text": ";"
717
+ }
718
+ ],
719
+ "isReadonly": false,
720
+ "isOptional": true,
721
+ "releaseTag": "Beta",
722
+ "name": "toolDefinitions",
723
+ "propertyTypeTokenRange": {
724
+ "startIndex": 1,
725
+ "endIndex": 3
726
+ }
727
+ },
728
+ {
729
+ "kind": "PropertySignature",
730
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig#toolHandlers:member",
731
+ "docComment": "/**\n * Tool handlers injected per-app at configure() time.\n */\n",
732
+ "excerptTokens": [
733
+ {
734
+ "kind": "Content",
735
+ "text": "toolHandlers?: "
736
+ },
737
+ {
738
+ "kind": "Reference",
739
+ "text": "ChatToolHandlers",
740
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolHandlers:type"
741
+ },
742
+ {
743
+ "kind": "Content",
744
+ "text": ";"
745
+ }
746
+ ],
747
+ "isReadonly": false,
748
+ "isOptional": true,
749
+ "releaseTag": "Beta",
750
+ "name": "toolHandlers",
751
+ "propertyTypeTokenRange": {
752
+ "startIndex": 1,
753
+ "endIndex": 2
754
+ }
755
+ }
756
+ ],
757
+ "extendsTokenRanges": [
758
+ {
759
+ "startIndex": 1,
760
+ "endIndex": 2
761
+ }
762
+ ]
763
+ },
764
+ {
765
+ "kind": "Interface",
766
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState:interface",
767
+ "docComment": "/**\n * Serialized state of a `FoundationAiAssistant` instance. All fields are JSON-serializable and round-trip through BroadcastChannel structured-clone.\n *\n * @beta\n */\n",
768
+ "excerptTokens": [
769
+ {
770
+ "kind": "Content",
771
+ "text": "export interface AiAssistantSerializedState "
772
+ }
773
+ ],
774
+ "fileUrlPath": "src/channel/ai-activity-channel.ts",
775
+ "releaseTag": "Beta",
776
+ "name": "AiAssistantSerializedState",
777
+ "preserveMemberOrder": false,
778
+ "members": [
779
+ {
780
+ "kind": "PropertySignature",
781
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState#enabledAnimations:member",
782
+ "docComment": "",
783
+ "excerptTokens": [
784
+ {
785
+ "kind": "Content",
786
+ "text": "enabledAnimations: "
787
+ },
788
+ {
789
+ "kind": "Reference",
790
+ "text": "AiAssistantAnimation",
791
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type"
792
+ },
793
+ {
794
+ "kind": "Content",
795
+ "text": "[]"
796
+ },
797
+ {
798
+ "kind": "Content",
799
+ "text": ";"
800
+ }
801
+ ],
802
+ "isReadonly": false,
803
+ "isOptional": false,
804
+ "releaseTag": "Beta",
805
+ "name": "enabledAnimations",
806
+ "propertyTypeTokenRange": {
807
+ "startIndex": 1,
808
+ "endIndex": 3
809
+ }
810
+ },
811
+ {
812
+ "kind": "PropertySignature",
813
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState#messages:member",
814
+ "docComment": "",
815
+ "excerptTokens": [
816
+ {
817
+ "kind": "Content",
818
+ "text": "messages: "
819
+ },
820
+ {
821
+ "kind": "Reference",
822
+ "text": "ChatMessage",
823
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
824
+ },
825
+ {
826
+ "kind": "Content",
827
+ "text": "[]"
828
+ },
829
+ {
830
+ "kind": "Content",
831
+ "text": ";"
832
+ }
833
+ ],
834
+ "isReadonly": false,
835
+ "isOptional": false,
836
+ "releaseTag": "Beta",
837
+ "name": "messages",
838
+ "propertyTypeTokenRange": {
839
+ "startIndex": 1,
840
+ "endIndex": 3
841
+ }
842
+ },
843
+ {
844
+ "kind": "PropertySignature",
845
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState#showThinkingSteps:member",
846
+ "docComment": "",
847
+ "excerptTokens": [
848
+ {
849
+ "kind": "Content",
850
+ "text": "showThinkingSteps: "
851
+ },
852
+ {
853
+ "kind": "Content",
854
+ "text": "boolean"
855
+ },
856
+ {
857
+ "kind": "Content",
858
+ "text": ";"
859
+ }
860
+ ],
861
+ "isReadonly": false,
862
+ "isOptional": false,
863
+ "releaseTag": "Beta",
864
+ "name": "showThinkingSteps",
865
+ "propertyTypeTokenRange": {
866
+ "startIndex": 1,
867
+ "endIndex": 2
868
+ }
869
+ },
870
+ {
871
+ "kind": "PropertySignature",
872
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState#showToolCalls:member",
873
+ "docComment": "",
874
+ "excerptTokens": [
875
+ {
876
+ "kind": "Content",
877
+ "text": "showToolCalls: "
878
+ },
879
+ {
880
+ "kind": "Content",
881
+ "text": "boolean"
882
+ },
883
+ {
884
+ "kind": "Content",
885
+ "text": ";"
886
+ }
887
+ ],
888
+ "isReadonly": false,
889
+ "isOptional": false,
890
+ "releaseTag": "Beta",
891
+ "name": "showToolCalls",
892
+ "propertyTypeTokenRange": {
893
+ "startIndex": 1,
894
+ "endIndex": 2
895
+ }
896
+ }
897
+ ],
898
+ "extendsTokenRanges": []
899
+ },
900
+ {
901
+ "kind": "TypeAlias",
902
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantState:type",
903
+ "docComment": "/**\n * State of the AI assistant component.\n *\n * @beta\n */\n",
904
+ "excerptTokens": [
905
+ {
906
+ "kind": "Content",
907
+ "text": "export type AiAssistantState = "
908
+ },
909
+ {
910
+ "kind": "Content",
911
+ "text": "'idle' | 'loading' | 'error'"
912
+ },
913
+ {
914
+ "kind": "Content",
915
+ "text": ";"
916
+ }
917
+ ],
918
+ "fileUrlPath": "src/main/main.types.ts",
919
+ "releaseTag": "Beta",
920
+ "name": "AiAssistantState",
921
+ "typeTokenRange": {
922
+ "startIndex": 1,
923
+ "endIndex": 2
924
+ }
925
+ },
926
+ {
927
+ "kind": "Class",
928
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble:class",
929
+ "docComment": "",
930
+ "excerptTokens": [
931
+ {
932
+ "kind": "Content",
933
+ "text": "export declare class AiChatBubble extends "
934
+ },
935
+ {
936
+ "kind": "Reference",
937
+ "text": "GenesisElement",
938
+ "canonicalReference": "@microsoft/fast-element!FASTElement:interface"
939
+ },
940
+ {
941
+ "kind": "Content",
942
+ "text": " "
943
+ }
944
+ ],
945
+ "fileUrlPath": "src/components/chat-bubble/chat-bubble.ts",
946
+ "releaseTag": "Public",
947
+ "isAbstract": false,
948
+ "name": "AiChatBubble",
949
+ "preserveMemberOrder": false,
950
+ "members": [
951
+ {
952
+ "kind": "Property",
953
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#bubbleLeft:member",
954
+ "docComment": "",
955
+ "excerptTokens": [
956
+ {
957
+ "kind": "Content",
958
+ "text": "bubbleLeft: "
959
+ },
960
+ {
961
+ "kind": "Content",
962
+ "text": "number"
963
+ },
964
+ {
965
+ "kind": "Content",
966
+ "text": ";"
967
+ }
968
+ ],
969
+ "isReadonly": false,
970
+ "isOptional": false,
971
+ "releaseTag": "Public",
972
+ "name": "bubbleLeft",
973
+ "propertyTypeTokenRange": {
974
+ "startIndex": 1,
975
+ "endIndex": 2
976
+ },
977
+ "isStatic": false,
978
+ "isProtected": false,
979
+ "isAbstract": false
980
+ },
981
+ {
982
+ "kind": "Property",
983
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#bubbleTop:member",
984
+ "docComment": "",
985
+ "excerptTokens": [
986
+ {
987
+ "kind": "Content",
988
+ "text": "bubbleTop: "
989
+ },
990
+ {
991
+ "kind": "Content",
992
+ "text": "number"
993
+ },
994
+ {
995
+ "kind": "Content",
996
+ "text": ";"
997
+ }
998
+ ],
999
+ "isReadonly": false,
1000
+ "isOptional": false,
1001
+ "releaseTag": "Public",
1002
+ "name": "bubbleTop",
1003
+ "propertyTypeTokenRange": {
1004
+ "startIndex": 1,
1005
+ "endIndex": 2
1006
+ },
1007
+ "isStatic": false,
1008
+ "isProtected": false,
1009
+ "isAbstract": false
1010
+ },
1011
+ {
1012
+ "kind": "Property",
1013
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#channelName:member",
1014
+ "docComment": "",
1015
+ "excerptTokens": [
1016
+ {
1017
+ "kind": "Content",
1018
+ "text": "channelName: "
1019
+ },
1020
+ {
1021
+ "kind": "Content",
1022
+ "text": "string"
1023
+ },
1024
+ {
1025
+ "kind": "Content",
1026
+ "text": ";"
1027
+ }
1028
+ ],
1029
+ "isReadonly": false,
1030
+ "isOptional": false,
1031
+ "releaseTag": "Public",
1032
+ "name": "channelName",
1033
+ "propertyTypeTokenRange": {
1034
+ "startIndex": 1,
1035
+ "endIndex": 2
1036
+ },
1037
+ "isStatic": false,
1038
+ "isProtected": false,
1039
+ "isAbstract": false
1040
+ },
1041
+ {
1042
+ "kind": "Method",
1043
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#connectedCallback:member(1)",
1044
+ "docComment": "",
1045
+ "excerptTokens": [
1046
+ {
1047
+ "kind": "Content",
1048
+ "text": "connectedCallback(): "
1049
+ },
1050
+ {
1051
+ "kind": "Content",
1052
+ "text": "void"
1053
+ },
1054
+ {
1055
+ "kind": "Content",
1056
+ "text": ";"
1057
+ }
1058
+ ],
1059
+ "isStatic": false,
1060
+ "returnTypeTokenRange": {
1061
+ "startIndex": 1,
1062
+ "endIndex": 2
1063
+ },
1064
+ "releaseTag": "Public",
1065
+ "isProtected": false,
1066
+ "overloadIndex": 1,
1067
+ "parameters": [],
1068
+ "isOptional": false,
1069
+ "isAbstract": false,
1070
+ "name": "connectedCallback"
1071
+ },
1072
+ {
1073
+ "kind": "Property",
1074
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#designSystemPrefix:member",
1075
+ "docComment": "",
1076
+ "excerptTokens": [
1077
+ {
1078
+ "kind": "Content",
1079
+ "text": "designSystemPrefix: "
1080
+ },
1081
+ {
1082
+ "kind": "Content",
1083
+ "text": "string"
1084
+ },
1085
+ {
1086
+ "kind": "Content",
1087
+ "text": ";"
1088
+ }
1089
+ ],
1090
+ "isReadonly": false,
1091
+ "isOptional": false,
1092
+ "releaseTag": "Public",
1093
+ "name": "designSystemPrefix",
1094
+ "propertyTypeTokenRange": {
1095
+ "startIndex": 1,
1096
+ "endIndex": 2
1097
+ },
1098
+ "isStatic": false,
1099
+ "isProtected": false,
1100
+ "isAbstract": false
1101
+ },
1102
+ {
1103
+ "kind": "Property",
1104
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogContent:member",
1105
+ "docComment": "",
1106
+ "excerptTokens": [
1107
+ {
1108
+ "kind": "Content",
1109
+ "text": "dialogContent: "
1110
+ },
1111
+ {
1112
+ "kind": "Reference",
1113
+ "text": "HTMLElement",
1114
+ "canonicalReference": "!HTMLElement:interface"
1115
+ },
1116
+ {
1117
+ "kind": "Content",
1118
+ "text": "[]"
1119
+ },
1120
+ {
1121
+ "kind": "Content",
1122
+ "text": ";"
1123
+ }
1124
+ ],
1125
+ "isReadonly": false,
1126
+ "isOptional": false,
1127
+ "releaseTag": "Public",
1128
+ "name": "dialogContent",
1129
+ "propertyTypeTokenRange": {
1130
+ "startIndex": 1,
1131
+ "endIndex": 3
1132
+ },
1133
+ "isStatic": false,
1134
+ "isProtected": false,
1135
+ "isAbstract": false
1136
+ },
1137
+ {
1138
+ "kind": "Method",
1139
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogContentChanged:member(1)",
1140
+ "docComment": "",
1141
+ "excerptTokens": [
1142
+ {
1143
+ "kind": "Content",
1144
+ "text": "dialogContentChanged(_: "
1145
+ },
1146
+ {
1147
+ "kind": "Reference",
1148
+ "text": "HTMLElement",
1149
+ "canonicalReference": "!HTMLElement:interface"
1150
+ },
1151
+ {
1152
+ "kind": "Content",
1153
+ "text": "[]"
1154
+ },
1155
+ {
1156
+ "kind": "Content",
1157
+ "text": ", next: "
1158
+ },
1159
+ {
1160
+ "kind": "Reference",
1161
+ "text": "HTMLElement",
1162
+ "canonicalReference": "!HTMLElement:interface"
1163
+ },
1164
+ {
1165
+ "kind": "Content",
1166
+ "text": "[]"
1167
+ },
1168
+ {
1169
+ "kind": "Content",
1170
+ "text": "): "
1171
+ },
1172
+ {
1173
+ "kind": "Content",
1174
+ "text": "void"
1175
+ },
1176
+ {
1177
+ "kind": "Content",
1178
+ "text": ";"
1179
+ }
1180
+ ],
1181
+ "isStatic": false,
1182
+ "returnTypeTokenRange": {
1183
+ "startIndex": 7,
1184
+ "endIndex": 8
1185
+ },
1186
+ "releaseTag": "Public",
1187
+ "isProtected": false,
1188
+ "overloadIndex": 1,
1189
+ "parameters": [
1190
+ {
1191
+ "parameterName": "_",
1192
+ "parameterTypeTokenRange": {
1193
+ "startIndex": 1,
1194
+ "endIndex": 3
1195
+ },
1196
+ "isOptional": false
1197
+ },
1198
+ {
1199
+ "parameterName": "next",
1200
+ "parameterTypeTokenRange": {
1201
+ "startIndex": 4,
1202
+ "endIndex": 6
1203
+ },
1204
+ "isOptional": false
1205
+ }
1206
+ ],
1207
+ "isOptional": false,
1208
+ "isAbstract": false,
1209
+ "name": "dialogContentChanged"
1210
+ },
1211
+ {
1212
+ "kind": "Property",
1213
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogHeight:member",
1214
+ "docComment": "",
1215
+ "excerptTokens": [
1216
+ {
1217
+ "kind": "Content",
1218
+ "text": "dialogHeight: "
1219
+ },
1220
+ {
1221
+ "kind": "Content",
1222
+ "text": "number"
1223
+ },
1224
+ {
1225
+ "kind": "Content",
1226
+ "text": ";"
1227
+ }
1228
+ ],
1229
+ "isReadonly": false,
1230
+ "isOptional": false,
1231
+ "releaseTag": "Public",
1232
+ "name": "dialogHeight",
1233
+ "propertyTypeTokenRange": {
1234
+ "startIndex": 1,
1235
+ "endIndex": 2
1236
+ },
1237
+ "isStatic": false,
1238
+ "isProtected": false,
1239
+ "isAbstract": false
1240
+ },
1241
+ {
1242
+ "kind": "Property",
1243
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogLeft:member",
1244
+ "docComment": "",
1245
+ "excerptTokens": [
1246
+ {
1247
+ "kind": "Content",
1248
+ "text": "dialogLeft: "
1249
+ },
1250
+ {
1251
+ "kind": "Content",
1252
+ "text": "number"
1253
+ },
1254
+ {
1255
+ "kind": "Content",
1256
+ "text": ";"
1257
+ }
1258
+ ],
1259
+ "isReadonly": false,
1260
+ "isOptional": false,
1261
+ "releaseTag": "Public",
1262
+ "name": "dialogLeft",
1263
+ "propertyTypeTokenRange": {
1264
+ "startIndex": 1,
1265
+ "endIndex": 2
1266
+ },
1267
+ "isStatic": false,
1268
+ "isProtected": false,
1269
+ "isAbstract": false
1270
+ },
1271
+ {
1272
+ "kind": "Property",
1273
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogOpen:member",
1274
+ "docComment": "",
1275
+ "excerptTokens": [
1276
+ {
1277
+ "kind": "Content",
1278
+ "text": "dialogOpen: "
1279
+ },
1280
+ {
1281
+ "kind": "Content",
1282
+ "text": "boolean"
1283
+ },
1284
+ {
1285
+ "kind": "Content",
1286
+ "text": ";"
1287
+ }
1288
+ ],
1289
+ "isReadonly": false,
1290
+ "isOptional": false,
1291
+ "releaseTag": "Public",
1292
+ "name": "dialogOpen",
1293
+ "propertyTypeTokenRange": {
1294
+ "startIndex": 1,
1295
+ "endIndex": 2
1296
+ },
1297
+ "isStatic": false,
1298
+ "isProtected": false,
1299
+ "isAbstract": false
1300
+ },
1301
+ {
1302
+ "kind": "Method",
1303
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogOpenChanged:member(1)",
1304
+ "docComment": "",
1305
+ "excerptTokens": [
1306
+ {
1307
+ "kind": "Content",
1308
+ "text": "dialogOpenChanged(_: "
1309
+ },
1310
+ {
1311
+ "kind": "Content",
1312
+ "text": "boolean"
1313
+ },
1314
+ {
1315
+ "kind": "Content",
1316
+ "text": ", next: "
1317
+ },
1318
+ {
1319
+ "kind": "Content",
1320
+ "text": "boolean"
1321
+ },
1322
+ {
1323
+ "kind": "Content",
1324
+ "text": "): "
1325
+ },
1326
+ {
1327
+ "kind": "Content",
1328
+ "text": "void"
1329
+ },
1330
+ {
1331
+ "kind": "Content",
1332
+ "text": ";"
1333
+ }
1334
+ ],
1335
+ "isStatic": false,
1336
+ "returnTypeTokenRange": {
1337
+ "startIndex": 5,
1338
+ "endIndex": 6
1339
+ },
1340
+ "releaseTag": "Public",
1341
+ "isProtected": false,
1342
+ "overloadIndex": 1,
1343
+ "parameters": [
1344
+ {
1345
+ "parameterName": "_",
1346
+ "parameterTypeTokenRange": {
1347
+ "startIndex": 1,
1348
+ "endIndex": 2
1349
+ },
1350
+ "isOptional": false
1351
+ },
1352
+ {
1353
+ "parameterName": "next",
1354
+ "parameterTypeTokenRange": {
1355
+ "startIndex": 3,
1356
+ "endIndex": 4
1357
+ },
1358
+ "isOptional": false
1359
+ }
1360
+ ],
1361
+ "isOptional": false,
1362
+ "isAbstract": false,
1363
+ "name": "dialogOpenChanged"
1364
+ },
1365
+ {
1366
+ "kind": "Property",
1367
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogTop:member",
1368
+ "docComment": "",
1369
+ "excerptTokens": [
1370
+ {
1371
+ "kind": "Content",
1372
+ "text": "dialogTop: "
1373
+ },
1374
+ {
1375
+ "kind": "Content",
1376
+ "text": "number"
1377
+ },
1378
+ {
1379
+ "kind": "Content",
1380
+ "text": ";"
1381
+ }
1382
+ ],
1383
+ "isReadonly": false,
1384
+ "isOptional": false,
1385
+ "releaseTag": "Public",
1386
+ "name": "dialogTop",
1387
+ "propertyTypeTokenRange": {
1388
+ "startIndex": 1,
1389
+ "endIndex": 2
1390
+ },
1391
+ "isStatic": false,
1392
+ "isProtected": false,
1393
+ "isAbstract": false
1394
+ },
1395
+ {
1396
+ "kind": "Property",
1397
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#dialogWidth:member",
1398
+ "docComment": "",
1399
+ "excerptTokens": [
1400
+ {
1401
+ "kind": "Content",
1402
+ "text": "dialogWidth: "
1403
+ },
1404
+ {
1405
+ "kind": "Content",
1406
+ "text": "number"
1407
+ },
1408
+ {
1409
+ "kind": "Content",
1410
+ "text": ";"
1411
+ }
1412
+ ],
1413
+ "isReadonly": false,
1414
+ "isOptional": false,
1415
+ "releaseTag": "Public",
1416
+ "name": "dialogWidth",
1417
+ "propertyTypeTokenRange": {
1418
+ "startIndex": 1,
1419
+ "endIndex": 2
1420
+ },
1421
+ "isStatic": false,
1422
+ "isProtected": false,
1423
+ "isAbstract": false
1424
+ },
1425
+ {
1426
+ "kind": "Method",
1427
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#disconnectedCallback:member(1)",
1428
+ "docComment": "",
1429
+ "excerptTokens": [
1430
+ {
1431
+ "kind": "Content",
1432
+ "text": "disconnectedCallback(): "
1433
+ },
1434
+ {
1435
+ "kind": "Content",
1436
+ "text": "void"
1437
+ },
1438
+ {
1439
+ "kind": "Content",
1440
+ "text": ";"
1441
+ }
1442
+ ],
1443
+ "isStatic": false,
1444
+ "returnTypeTokenRange": {
1445
+ "startIndex": 1,
1446
+ "endIndex": 2
1447
+ },
1448
+ "releaseTag": "Public",
1449
+ "isProtected": false,
1450
+ "overloadIndex": 1,
1451
+ "parameters": [],
1452
+ "isOptional": false,
1453
+ "isAbstract": false,
1454
+ "name": "disconnectedCallback"
1455
+ },
1456
+ {
1457
+ "kind": "Property",
1458
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#hovered:member",
1459
+ "docComment": "",
1460
+ "excerptTokens": [
1461
+ {
1462
+ "kind": "Content",
1463
+ "text": "hovered: "
1464
+ },
1465
+ {
1466
+ "kind": "Content",
1467
+ "text": "boolean"
1468
+ },
1469
+ {
1470
+ "kind": "Content",
1471
+ "text": ";"
1472
+ }
1473
+ ],
1474
+ "isReadonly": false,
1475
+ "isOptional": false,
1476
+ "releaseTag": "Public",
1477
+ "name": "hovered",
1478
+ "propertyTypeTokenRange": {
1479
+ "startIndex": 1,
1480
+ "endIndex": 2
1481
+ },
1482
+ "isStatic": false,
1483
+ "isProtected": false,
1484
+ "isAbstract": false
1485
+ },
1486
+ {
1487
+ "kind": "Property",
1488
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#imageSrc:member",
1489
+ "docComment": "",
1490
+ "excerptTokens": [
1491
+ {
1492
+ "kind": "Content",
1493
+ "text": "imageSrc?: "
1494
+ },
1495
+ {
1496
+ "kind": "Content",
1497
+ "text": "string"
1498
+ },
1499
+ {
1500
+ "kind": "Content",
1501
+ "text": ";"
1502
+ }
1503
+ ],
1504
+ "isReadonly": false,
1505
+ "isOptional": true,
1506
+ "releaseTag": "Public",
1507
+ "name": "imageSrc",
1508
+ "propertyTypeTokenRange": {
1509
+ "startIndex": 1,
1510
+ "endIndex": 2
1511
+ },
1512
+ "isStatic": false,
1513
+ "isProtected": false,
1514
+ "isAbstract": false
1515
+ },
1516
+ {
1517
+ "kind": "Method",
1518
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#onBubbleMouseDown:member(1)",
1519
+ "docComment": "",
1520
+ "excerptTokens": [
1521
+ {
1522
+ "kind": "Content",
1523
+ "text": "onBubbleMouseDown(e: "
1524
+ },
1525
+ {
1526
+ "kind": "Reference",
1527
+ "text": "MouseEvent",
1528
+ "canonicalReference": "!MouseEvent:interface"
1529
+ },
1530
+ {
1531
+ "kind": "Content",
1532
+ "text": "): "
1533
+ },
1534
+ {
1535
+ "kind": "Content",
1536
+ "text": "void"
1537
+ },
1538
+ {
1539
+ "kind": "Content",
1540
+ "text": ";"
1541
+ }
1542
+ ],
1543
+ "isStatic": false,
1544
+ "returnTypeTokenRange": {
1545
+ "startIndex": 3,
1546
+ "endIndex": 4
1547
+ },
1548
+ "releaseTag": "Public",
1549
+ "isProtected": false,
1550
+ "overloadIndex": 1,
1551
+ "parameters": [
1552
+ {
1553
+ "parameterName": "e",
1554
+ "parameterTypeTokenRange": {
1555
+ "startIndex": 1,
1556
+ "endIndex": 2
1557
+ },
1558
+ "isOptional": false
1559
+ }
1560
+ ],
1561
+ "isOptional": false,
1562
+ "isAbstract": false,
1563
+ "name": "onBubbleMouseDown"
1564
+ },
1565
+ {
1566
+ "kind": "Method",
1567
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#onCloseDialog:member(1)",
1568
+ "docComment": "",
1569
+ "excerptTokens": [
1570
+ {
1571
+ "kind": "Content",
1572
+ "text": "onCloseDialog(): "
1573
+ },
1574
+ {
1575
+ "kind": "Content",
1576
+ "text": "void"
1577
+ },
1578
+ {
1579
+ "kind": "Content",
1580
+ "text": ";"
1581
+ }
1582
+ ],
1583
+ "isStatic": false,
1584
+ "returnTypeTokenRange": {
1585
+ "startIndex": 1,
1586
+ "endIndex": 2
1587
+ },
1588
+ "releaseTag": "Public",
1589
+ "isProtected": false,
1590
+ "overloadIndex": 1,
1591
+ "parameters": [],
1592
+ "isOptional": false,
1593
+ "isAbstract": false,
1594
+ "name": "onCloseDialog"
1595
+ },
1596
+ {
1597
+ "kind": "Method",
1598
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#onDialogHeaderMouseDown:member(1)",
1599
+ "docComment": "",
1600
+ "excerptTokens": [
1601
+ {
1602
+ "kind": "Content",
1603
+ "text": "onDialogHeaderMouseDown(e: "
1604
+ },
1605
+ {
1606
+ "kind": "Reference",
1607
+ "text": "CustomEvent",
1608
+ "canonicalReference": "!CustomEvent:interface"
1609
+ },
1610
+ {
1611
+ "kind": "Content",
1612
+ "text": "<{\n clientX: number;\n clientY: number;\n }>"
1613
+ },
1614
+ {
1615
+ "kind": "Content",
1616
+ "text": "): "
1617
+ },
1618
+ {
1619
+ "kind": "Content",
1620
+ "text": "void"
1621
+ },
1622
+ {
1623
+ "kind": "Content",
1624
+ "text": ";"
1625
+ }
1626
+ ],
1627
+ "isStatic": false,
1628
+ "returnTypeTokenRange": {
1629
+ "startIndex": 4,
1630
+ "endIndex": 5
1631
+ },
1632
+ "releaseTag": "Public",
1633
+ "isProtected": false,
1634
+ "overloadIndex": 1,
1635
+ "parameters": [
1636
+ {
1637
+ "parameterName": "e",
1638
+ "parameterTypeTokenRange": {
1639
+ "startIndex": 1,
1640
+ "endIndex": 3
1641
+ },
1642
+ "isOptional": false
1643
+ }
1644
+ ],
1645
+ "isOptional": false,
1646
+ "isAbstract": false,
1647
+ "name": "onDialogHeaderMouseDown"
1648
+ },
1649
+ {
1650
+ "kind": "Method",
1651
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#onPopout:member(1)",
1652
+ "docComment": "",
1653
+ "excerptTokens": [
1654
+ {
1655
+ "kind": "Content",
1656
+ "text": "onPopout(): "
1657
+ },
1658
+ {
1659
+ "kind": "Content",
1660
+ "text": "void"
1661
+ },
1662
+ {
1663
+ "kind": "Content",
1664
+ "text": ";"
1665
+ }
1666
+ ],
1667
+ "isStatic": false,
1668
+ "returnTypeTokenRange": {
1669
+ "startIndex": 1,
1670
+ "endIndex": 2
1671
+ },
1672
+ "releaseTag": "Public",
1673
+ "isProtected": false,
1674
+ "overloadIndex": 1,
1675
+ "parameters": [],
1676
+ "isOptional": false,
1677
+ "isAbstract": false,
1678
+ "name": "onPopout"
1679
+ },
1680
+ {
1681
+ "kind": "Property",
1682
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#title:member",
1683
+ "docComment": "",
1684
+ "excerptTokens": [
1685
+ {
1686
+ "kind": "Content",
1687
+ "text": "title: "
1688
+ },
1689
+ {
1690
+ "kind": "Content",
1691
+ "text": "string"
1692
+ },
1693
+ {
1694
+ "kind": "Content",
1695
+ "text": ";"
1696
+ }
1697
+ ],
1698
+ "isReadonly": false,
1699
+ "isOptional": false,
1700
+ "releaseTag": "Public",
1701
+ "name": "title",
1702
+ "propertyTypeTokenRange": {
1703
+ "startIndex": 1,
1704
+ "endIndex": 2
1705
+ },
1706
+ "isStatic": false,
1707
+ "isProtected": false,
1708
+ "isAbstract": false
1709
+ },
1710
+ {
1711
+ "kind": "Property",
1712
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatBubble#tooltipStyle:member",
1713
+ "docComment": "",
1714
+ "excerptTokens": [
1715
+ {
1716
+ "kind": "Content",
1717
+ "text": "get tooltipStyle(): "
1718
+ },
1719
+ {
1720
+ "kind": "Content",
1721
+ "text": "string"
1722
+ },
1723
+ {
1724
+ "kind": "Content",
1725
+ "text": ";"
1726
+ }
1727
+ ],
1728
+ "isReadonly": true,
1729
+ "isOptional": false,
1730
+ "releaseTag": "Public",
1731
+ "name": "tooltipStyle",
1732
+ "propertyTypeTokenRange": {
1733
+ "startIndex": 1,
1734
+ "endIndex": 2
1735
+ },
1736
+ "isStatic": false,
1737
+ "isProtected": false,
1738
+ "isAbstract": false
1739
+ }
1740
+ ],
1741
+ "extendsTokenRange": {
1742
+ "startIndex": 1,
1743
+ "endIndex": 2
1744
+ },
1745
+ "implementsTokenRanges": []
1746
+ },
1747
+ {
1748
+ "kind": "Interface",
1749
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatWidget:interface",
1750
+ "docComment": "/**\n * Interface that AI inline interaction components can implement. The `AiChatInteractionWrapper` always sets `data` and `resolved` on the rendered element.\n *\n * @beta\n */\n",
1751
+ "excerptTokens": [
1752
+ {
1753
+ "kind": "Content",
1754
+ "text": "export interface AiChatWidget "
1755
+ }
1756
+ ],
1757
+ "fileUrlPath": "src/types/ai-chat-widget.ts",
1758
+ "releaseTag": "Beta",
1759
+ "name": "AiChatWidget",
1760
+ "preserveMemberOrder": false,
1761
+ "members": [
1762
+ {
1763
+ "kind": "PropertySignature",
1764
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatWidget#data:member",
1765
+ "docComment": "",
1766
+ "excerptTokens": [
1767
+ {
1768
+ "kind": "Content",
1769
+ "text": "data: "
1770
+ },
1771
+ {
1772
+ "kind": "Content",
1773
+ "text": "unknown"
1774
+ },
1775
+ {
1776
+ "kind": "Content",
1777
+ "text": ";"
1778
+ }
1779
+ ],
1780
+ "isReadonly": false,
1781
+ "isOptional": false,
1782
+ "releaseTag": "Beta",
1783
+ "name": "data",
1784
+ "propertyTypeTokenRange": {
1785
+ "startIndex": 1,
1786
+ "endIndex": 2
1787
+ }
1788
+ },
1789
+ {
1790
+ "kind": "PropertySignature",
1791
+ "canonicalReference": "@genesislcap/ai-assistant!AiChatWidget#resolved:member",
1792
+ "docComment": "/**\n * When true, the interaction has already been resolved. Components should render read-only.\n */\n",
1793
+ "excerptTokens": [
1794
+ {
1795
+ "kind": "Content",
1796
+ "text": "resolved?: "
1797
+ },
1798
+ {
1799
+ "kind": "Content",
1800
+ "text": "boolean"
1801
+ },
1802
+ {
1803
+ "kind": "Content",
1804
+ "text": ";"
1805
+ }
1806
+ ],
1807
+ "isReadonly": false,
1808
+ "isOptional": true,
1809
+ "releaseTag": "Beta",
1810
+ "name": "resolved",
1811
+ "propertyTypeTokenRange": {
1812
+ "startIndex": 1,
1813
+ "endIndex": 2
1814
+ }
1815
+ }
1816
+ ],
1817
+ "extendsTokenRanges": []
1818
+ },
1819
+ {
1820
+ "kind": "Variable",
1821
+ "canonicalReference": "@genesislcap/ai-assistant!ANIMATION_DEFS:var",
1822
+ "docComment": "/**\n * Registry of all available animations with their display metadata. Adding an entry here automatically extends the {@link AiAssistantAnimation} type.\n *\n * @beta\n */\n",
1823
+ "excerptTokens": [
1824
+ {
1825
+ "kind": "Content",
1826
+ "text": "ANIMATION_DEFS: "
1827
+ },
1828
+ {
1829
+ "kind": "Content",
1830
+ "text": "{\n loading: {\n label: string;\n tooltip: string;\n };\n halo: {\n label: string;\n tooltip: string;\n };\n}"
1831
+ }
1832
+ ],
1833
+ "fileUrlPath": "src/main/main.types.ts",
1834
+ "isReadonly": true,
1835
+ "releaseTag": "Beta",
1836
+ "name": "ANIMATION_DEFS",
1837
+ "variableTypeTokenRange": {
1838
+ "startIndex": 1,
1839
+ "endIndex": 2
1840
+ }
1841
+ },
1842
+ {
1843
+ "kind": "Class",
1844
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver:class",
1845
+ "docComment": "/**\n * Plain TS class that drives a multi-turn chat conversation, including the tool-call loop. Owned by `FoundationAiAssistant` — created in `connectedCallback`, torn down in `disconnectedCallback`.\n *\n * Dispatches `'history-updated'` events on itself so the owning element can observe changes.\n *\n * @beta\n */\n",
1846
+ "excerptTokens": [
1847
+ {
1848
+ "kind": "Content",
1849
+ "text": "export declare class ChatDriver extends "
1850
+ },
1851
+ {
1852
+ "kind": "Reference",
1853
+ "text": "EventTarget",
1854
+ "canonicalReference": "!EventTarget:interface"
1855
+ },
1856
+ {
1857
+ "kind": "Content",
1858
+ "text": " "
1859
+ }
1860
+ ],
1861
+ "fileUrlPath": "src/components/chat-driver/chat-driver.ts",
1862
+ "releaseTag": "Beta",
1863
+ "isAbstract": false,
1864
+ "name": "ChatDriver",
1865
+ "preserveMemberOrder": false,
1866
+ "members": [
1867
+ {
1868
+ "kind": "Constructor",
1869
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver:constructor(1)",
1870
+ "docComment": "/**\n * Constructs a new instance of the `ChatDriver` class\n */\n",
1871
+ "excerptTokens": [
1872
+ {
1873
+ "kind": "Content",
1874
+ "text": "constructor(aiProvider: "
1875
+ },
1876
+ {
1877
+ "kind": "Reference",
1878
+ "text": "AIProvider",
1879
+ "canonicalReference": "@genesislcap/foundation-ai!AIProvider:interface"
1880
+ },
1881
+ {
1882
+ "kind": "Content",
1883
+ "text": ", toolHandlers?: "
1884
+ },
1885
+ {
1886
+ "kind": "Reference",
1887
+ "text": "ChatToolHandlers",
1888
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolHandlers:type"
1889
+ },
1890
+ {
1891
+ "kind": "Content",
1892
+ "text": ", toolDefinitions?: "
1893
+ },
1894
+ {
1895
+ "kind": "Reference",
1896
+ "text": "ChatToolDefinition",
1897
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolDefinition:interface"
1898
+ },
1899
+ {
1900
+ "kind": "Content",
1901
+ "text": "[]"
1902
+ },
1903
+ {
1904
+ "kind": "Content",
1905
+ "text": ", systemPrompt?: "
1906
+ },
1907
+ {
1908
+ "kind": "Content",
1909
+ "text": "string"
1910
+ },
1911
+ {
1912
+ "kind": "Content",
1913
+ "text": ");"
1914
+ }
1915
+ ],
1916
+ "releaseTag": "Beta",
1917
+ "isProtected": false,
1918
+ "overloadIndex": 1,
1919
+ "parameters": [
1920
+ {
1921
+ "parameterName": "aiProvider",
1922
+ "parameterTypeTokenRange": {
1923
+ "startIndex": 1,
1924
+ "endIndex": 2
1925
+ },
1926
+ "isOptional": false
1927
+ },
1928
+ {
1929
+ "parameterName": "toolHandlers",
1930
+ "parameterTypeTokenRange": {
1931
+ "startIndex": 3,
1932
+ "endIndex": 4
1933
+ },
1934
+ "isOptional": true
1935
+ },
1936
+ {
1937
+ "parameterName": "toolDefinitions",
1938
+ "parameterTypeTokenRange": {
1939
+ "startIndex": 5,
1940
+ "endIndex": 7
1941
+ },
1942
+ "isOptional": true
1943
+ },
1944
+ {
1945
+ "parameterName": "systemPrompt",
1946
+ "parameterTypeTokenRange": {
1947
+ "startIndex": 8,
1948
+ "endIndex": 9
1949
+ },
1950
+ "isOptional": true
1951
+ }
1952
+ ]
1953
+ },
1954
+ {
1955
+ "kind": "Method",
1956
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#getHistory:member(1)",
1957
+ "docComment": "",
1958
+ "excerptTokens": [
1959
+ {
1960
+ "kind": "Content",
1961
+ "text": "getHistory(): "
1962
+ },
1963
+ {
1964
+ "kind": "Reference",
1965
+ "text": "ReadonlyArray",
1966
+ "canonicalReference": "!ReadonlyArray:interface"
1967
+ },
1968
+ {
1969
+ "kind": "Content",
1970
+ "text": "<"
1971
+ },
1972
+ {
1973
+ "kind": "Reference",
1974
+ "text": "ChatMessage",
1975
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
1976
+ },
1977
+ {
1978
+ "kind": "Content",
1979
+ "text": ">"
1980
+ },
1981
+ {
1982
+ "kind": "Content",
1983
+ "text": ";"
1984
+ }
1985
+ ],
1986
+ "isStatic": false,
1987
+ "returnTypeTokenRange": {
1988
+ "startIndex": 1,
1989
+ "endIndex": 5
1990
+ },
1991
+ "releaseTag": "Beta",
1992
+ "isProtected": false,
1993
+ "overloadIndex": 1,
1994
+ "parameters": [],
1995
+ "isOptional": false,
1996
+ "isAbstract": false,
1997
+ "name": "getHistory"
1998
+ },
1999
+ {
2000
+ "kind": "Method",
2001
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#isBusy:member(1)",
2002
+ "docComment": "",
2003
+ "excerptTokens": [
2004
+ {
2005
+ "kind": "Content",
2006
+ "text": "isBusy(): "
2007
+ },
2008
+ {
2009
+ "kind": "Content",
2010
+ "text": "boolean"
2011
+ },
2012
+ {
2013
+ "kind": "Content",
2014
+ "text": ";"
2015
+ }
2016
+ ],
2017
+ "isStatic": false,
2018
+ "returnTypeTokenRange": {
2019
+ "startIndex": 1,
2020
+ "endIndex": 2
2021
+ },
2022
+ "releaseTag": "Beta",
2023
+ "isProtected": false,
2024
+ "overloadIndex": 1,
2025
+ "parameters": [],
2026
+ "isOptional": false,
2027
+ "isAbstract": false,
2028
+ "name": "isBusy"
2029
+ },
2030
+ {
2031
+ "kind": "Method",
2032
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#loadHistory:member(1)",
2033
+ "docComment": "/**\n * Seeds the driver with a prior conversation history so a new component instance can continue an existing conversation. Call this before the first user message.\n */\n",
2034
+ "excerptTokens": [
2035
+ {
2036
+ "kind": "Content",
2037
+ "text": "loadHistory(messages: "
2038
+ },
2039
+ {
2040
+ "kind": "Reference",
2041
+ "text": "ChatMessage",
2042
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
2043
+ },
2044
+ {
2045
+ "kind": "Content",
2046
+ "text": "[]"
2047
+ },
2048
+ {
2049
+ "kind": "Content",
2050
+ "text": "): "
2051
+ },
2052
+ {
2053
+ "kind": "Content",
2054
+ "text": "void"
2055
+ },
2056
+ {
2057
+ "kind": "Content",
2058
+ "text": ";"
2059
+ }
2060
+ ],
2061
+ "isStatic": false,
2062
+ "returnTypeTokenRange": {
2063
+ "startIndex": 4,
2064
+ "endIndex": 5
2065
+ },
2066
+ "releaseTag": "Beta",
2067
+ "isProtected": false,
2068
+ "overloadIndex": 1,
2069
+ "parameters": [
2070
+ {
2071
+ "parameterName": "messages",
2072
+ "parameterTypeTokenRange": {
2073
+ "startIndex": 1,
2074
+ "endIndex": 3
2075
+ },
2076
+ "isOptional": false
2077
+ }
2078
+ ],
2079
+ "isOptional": false,
2080
+ "isAbstract": false,
2081
+ "name": "loadHistory"
2082
+ },
2083
+ {
2084
+ "kind": "Method",
2085
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#requestInteraction:member(1)",
2086
+ "docComment": "/**\n * Request a custom UI interaction. Emits a new message with the interaction. Tool handlers can call this to pause execution until the user completes the UI interaction.\n *\n * @param componentName - The custom element name to render.\n *\n * @param data - Data to pass to the component.\n */\n",
2087
+ "excerptTokens": [
2088
+ {
2089
+ "kind": "Content",
2090
+ "text": "requestInteraction<T>(componentName: "
2091
+ },
2092
+ {
2093
+ "kind": "Content",
2094
+ "text": "string"
2095
+ },
2096
+ {
2097
+ "kind": "Content",
2098
+ "text": ", data: "
2099
+ },
2100
+ {
2101
+ "kind": "Content",
2102
+ "text": "any"
2103
+ },
2104
+ {
2105
+ "kind": "Content",
2106
+ "text": "): "
2107
+ },
2108
+ {
2109
+ "kind": "Reference",
2110
+ "text": "Promise",
2111
+ "canonicalReference": "!Promise:interface"
2112
+ },
2113
+ {
2114
+ "kind": "Content",
2115
+ "text": "<T>"
2116
+ },
2117
+ {
2118
+ "kind": "Content",
2119
+ "text": ";"
2120
+ }
2121
+ ],
2122
+ "typeParameters": [
2123
+ {
2124
+ "typeParameterName": "T",
2125
+ "constraintTokenRange": {
2126
+ "startIndex": 0,
2127
+ "endIndex": 0
2128
+ },
2129
+ "defaultTypeTokenRange": {
2130
+ "startIndex": 0,
2131
+ "endIndex": 0
2132
+ }
2133
+ }
2134
+ ],
2135
+ "isStatic": false,
2136
+ "returnTypeTokenRange": {
2137
+ "startIndex": 5,
2138
+ "endIndex": 7
2139
+ },
2140
+ "releaseTag": "Beta",
2141
+ "isProtected": false,
2142
+ "overloadIndex": 1,
2143
+ "parameters": [
2144
+ {
2145
+ "parameterName": "componentName",
2146
+ "parameterTypeTokenRange": {
2147
+ "startIndex": 1,
2148
+ "endIndex": 2
2149
+ },
2150
+ "isOptional": false
2151
+ },
2152
+ {
2153
+ "parameterName": "data",
2154
+ "parameterTypeTokenRange": {
2155
+ "startIndex": 3,
2156
+ "endIndex": 4
2157
+ },
2158
+ "isOptional": false
2159
+ }
2160
+ ],
2161
+ "isOptional": false,
2162
+ "isAbstract": false,
2163
+ "name": "requestInteraction"
2164
+ },
2165
+ {
2166
+ "kind": "Method",
2167
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#resolveInteraction:member(1)",
2168
+ "docComment": "/**\n * Resolve a pending interaction. The wrapper component calls this on completion. Marks the interaction message as resolved so it renders read-only on re-render.\n */\n",
2169
+ "excerptTokens": [
2170
+ {
2171
+ "kind": "Content",
2172
+ "text": "resolveInteraction(interactionId: "
2173
+ },
2174
+ {
2175
+ "kind": "Content",
2176
+ "text": "string"
2177
+ },
2178
+ {
2179
+ "kind": "Content",
2180
+ "text": ", result: "
2181
+ },
2182
+ {
2183
+ "kind": "Content",
2184
+ "text": "any"
2185
+ },
2186
+ {
2187
+ "kind": "Content",
2188
+ "text": "): "
2189
+ },
2190
+ {
2191
+ "kind": "Content",
2192
+ "text": "void"
2193
+ },
2194
+ {
2195
+ "kind": "Content",
2196
+ "text": ";"
2197
+ }
2198
+ ],
2199
+ "isStatic": false,
2200
+ "returnTypeTokenRange": {
2201
+ "startIndex": 5,
2202
+ "endIndex": 6
2203
+ },
2204
+ "releaseTag": "Beta",
2205
+ "isProtected": false,
2206
+ "overloadIndex": 1,
2207
+ "parameters": [
2208
+ {
2209
+ "parameterName": "interactionId",
2210
+ "parameterTypeTokenRange": {
2211
+ "startIndex": 1,
2212
+ "endIndex": 2
2213
+ },
2214
+ "isOptional": false
2215
+ },
2216
+ {
2217
+ "parameterName": "result",
2218
+ "parameterTypeTokenRange": {
2219
+ "startIndex": 3,
2220
+ "endIndex": 4
2221
+ },
2222
+ "isOptional": false
2223
+ }
2224
+ ],
2225
+ "isOptional": false,
2226
+ "isAbstract": false,
2227
+ "name": "resolveInteraction"
2228
+ },
2229
+ {
2230
+ "kind": "Method",
2231
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#sendMessage:member(1)",
2232
+ "docComment": "",
2233
+ "excerptTokens": [
2234
+ {
2235
+ "kind": "Content",
2236
+ "text": "sendMessage(userInput: "
2237
+ },
2238
+ {
2239
+ "kind": "Content",
2240
+ "text": "string"
2241
+ },
2242
+ {
2243
+ "kind": "Content",
2244
+ "text": ", attachments?: "
2245
+ },
2246
+ {
2247
+ "kind": "Reference",
2248
+ "text": "ChatAttachment",
2249
+ "canonicalReference": "@genesislcap/foundation-ai!ChatAttachment:interface"
2250
+ },
2251
+ {
2252
+ "kind": "Content",
2253
+ "text": "[]"
2254
+ },
2255
+ {
2256
+ "kind": "Content",
2257
+ "text": "): "
2258
+ },
2259
+ {
2260
+ "kind": "Reference",
2261
+ "text": "Promise",
2262
+ "canonicalReference": "!Promise:interface"
2263
+ },
2264
+ {
2265
+ "kind": "Content",
2266
+ "text": "<void>"
2267
+ },
2268
+ {
2269
+ "kind": "Content",
2270
+ "text": ";"
2271
+ }
2272
+ ],
2273
+ "isStatic": false,
2274
+ "returnTypeTokenRange": {
2275
+ "startIndex": 6,
2276
+ "endIndex": 8
2277
+ },
2278
+ "releaseTag": "Beta",
2279
+ "isProtected": false,
2280
+ "overloadIndex": 1,
2281
+ "parameters": [
2282
+ {
2283
+ "parameterName": "userInput",
2284
+ "parameterTypeTokenRange": {
2285
+ "startIndex": 1,
2286
+ "endIndex": 2
2287
+ },
2288
+ "isOptional": false
2289
+ },
2290
+ {
2291
+ "parameterName": "attachments",
2292
+ "parameterTypeTokenRange": {
2293
+ "startIndex": 3,
2294
+ "endIndex": 5
2295
+ },
2296
+ "isOptional": true
2297
+ }
2298
+ ],
2299
+ "isOptional": false,
2300
+ "isAbstract": false,
2301
+ "name": "sendMessage"
2302
+ }
2303
+ ],
2304
+ "extendsTokenRange": {
2305
+ "startIndex": 1,
2306
+ "endIndex": 2
2307
+ },
2308
+ "implementsTokenRanges": []
2309
+ },
2310
+ {
2311
+ "kind": "TypeAlias",
2312
+ "canonicalReference": "@genesislcap/ai-assistant!ChatHistoryUpdatedEvent:type",
2313
+ "docComment": "/**\n * Event emitted when the chat history is updated (new message appended).\n *\n * @beta\n */\n",
2314
+ "excerptTokens": [
2315
+ {
2316
+ "kind": "Content",
2317
+ "text": "export type ChatHistoryUpdatedEvent = "
2318
+ },
2319
+ {
2320
+ "kind": "Reference",
2321
+ "text": "CustomEvent",
2322
+ "canonicalReference": "!CustomEvent:interface"
2323
+ },
2324
+ {
2325
+ "kind": "Content",
2326
+ "text": "<"
2327
+ },
2328
+ {
2329
+ "kind": "Reference",
2330
+ "text": "ReadonlyArray",
2331
+ "canonicalReference": "!ReadonlyArray:interface"
2332
+ },
2333
+ {
2334
+ "kind": "Content",
2335
+ "text": "<"
2336
+ },
2337
+ {
2338
+ "kind": "Reference",
2339
+ "text": "ChatMessage",
2340
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
2341
+ },
2342
+ {
2343
+ "kind": "Content",
2344
+ "text": ">>"
2345
+ },
2346
+ {
2347
+ "kind": "Content",
2348
+ "text": ";"
2349
+ }
2350
+ ],
2351
+ "fileUrlPath": "src/components/chat-driver/chat-driver.ts",
2352
+ "releaseTag": "Beta",
2353
+ "name": "ChatHistoryUpdatedEvent",
2354
+ "typeTokenRange": {
2355
+ "startIndex": 1,
2356
+ "endIndex": 7
2357
+ }
2358
+ },
2359
+ {
2360
+ "kind": "Variable",
2361
+ "canonicalReference": "@genesislcap/ai-assistant!defaultAiAssistantConfig:var",
2362
+ "docComment": "/**\n * Default AiAssistantConfig DI implementation.\n *\n * @beta\n */\n",
2363
+ "excerptTokens": [
2364
+ {
2365
+ "kind": "Content",
2366
+ "text": "defaultAiAssistantConfig: "
2367
+ },
2368
+ {
2369
+ "kind": "Reference",
2370
+ "text": "AiAssistantConfig",
2371
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantConfig:interface"
2372
+ }
2373
+ ],
2374
+ "fileUrlPath": "src/config/config.ts",
2375
+ "isReadonly": true,
2376
+ "releaseTag": "Beta",
2377
+ "name": "defaultAiAssistantConfig",
2378
+ "variableTypeTokenRange": {
2379
+ "startIndex": 1,
2380
+ "endIndex": 2
2381
+ }
2382
+ },
2383
+ {
2384
+ "kind": "Class",
2385
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant:class",
2386
+ "docComment": "/**\n * Foundation AI Assistant component.\n *\n * @remarks\n *\n * Lazy-loaded via `configure()`. Inject an `AIProvider` and `AiAssistantConfig` through the DI container. The component creates a `ChatDriver` to manage the conversation loop.\n *\n * @beta\n */\n",
2387
+ "excerptTokens": [
2388
+ {
2389
+ "kind": "Content",
2390
+ "text": "export declare class FoundationAiAssistant extends "
2391
+ },
2392
+ {
2393
+ "kind": "Reference",
2394
+ "text": "GenesisElement",
2395
+ "canonicalReference": "@microsoft/fast-element!FASTElement:interface"
2396
+ },
2397
+ {
2398
+ "kind": "Content",
2399
+ "text": " "
2400
+ }
2401
+ ],
2402
+ "fileUrlPath": "src/main/main.ts",
2403
+ "releaseTag": "Beta",
2404
+ "isAbstract": false,
2405
+ "name": "FoundationAiAssistant",
2406
+ "preserveMemberOrder": false,
2407
+ "members": [
2408
+ {
2409
+ "kind": "Property",
2410
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#aiProvider:member",
2411
+ "docComment": "",
2412
+ "excerptTokens": [
2413
+ {
2414
+ "kind": "Content",
2415
+ "text": "aiProvider: "
2416
+ },
2417
+ {
2418
+ "kind": "Reference",
2419
+ "text": "AIProvider",
2420
+ "canonicalReference": "@genesislcap/foundation-ai!AIProvider:interface"
2421
+ },
2422
+ {
2423
+ "kind": "Content",
2424
+ "text": ";"
2425
+ }
2426
+ ],
2427
+ "isReadonly": false,
2428
+ "isOptional": false,
2429
+ "releaseTag": "Beta",
2430
+ "name": "aiProvider",
2431
+ "propertyTypeTokenRange": {
2432
+ "startIndex": 1,
2433
+ "endIndex": 2
2434
+ },
2435
+ "isStatic": false,
2436
+ "isProtected": false,
2437
+ "isAbstract": false
2438
+ },
2439
+ {
2440
+ "kind": "Method",
2441
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#applyState:member(1)",
2442
+ "docComment": "/**\n * Applies a serialized state snapshot to this live instance (used on collapse path).\n */\n",
2443
+ "excerptTokens": [
2444
+ {
2445
+ "kind": "Content",
2446
+ "text": "applyState(state: "
2447
+ },
2448
+ {
2449
+ "kind": "Reference",
2450
+ "text": "AiAssistantSerializedState",
2451
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState:interface"
2452
+ },
2453
+ {
2454
+ "kind": "Content",
2455
+ "text": "): "
2456
+ },
2457
+ {
2458
+ "kind": "Content",
2459
+ "text": "void"
2460
+ },
2461
+ {
2462
+ "kind": "Content",
2463
+ "text": ";"
2464
+ }
2465
+ ],
2466
+ "isStatic": false,
2467
+ "returnTypeTokenRange": {
2468
+ "startIndex": 3,
2469
+ "endIndex": 4
2470
+ },
2471
+ "releaseTag": "Beta",
2472
+ "isProtected": false,
2473
+ "overloadIndex": 1,
2474
+ "parameters": [
2475
+ {
2476
+ "parameterName": "state",
2477
+ "parameterTypeTokenRange": {
2478
+ "startIndex": 1,
2479
+ "endIndex": 2
2480
+ },
2481
+ "isOptional": false
2482
+ }
2483
+ ],
2484
+ "isOptional": false,
2485
+ "isAbstract": false,
2486
+ "name": "applyState"
2487
+ },
2488
+ {
2489
+ "kind": "Property",
2490
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#attachmentErrors:member",
2491
+ "docComment": "",
2492
+ "excerptTokens": [
2493
+ {
2494
+ "kind": "Content",
2495
+ "text": "attachmentErrors: "
2496
+ },
2497
+ {
2498
+ "kind": "Content",
2499
+ "text": "string[]"
2500
+ },
2501
+ {
2502
+ "kind": "Content",
2503
+ "text": ";"
2504
+ }
2505
+ ],
2506
+ "isReadonly": false,
2507
+ "isOptional": false,
2508
+ "releaseTag": "Beta",
2509
+ "name": "attachmentErrors",
2510
+ "propertyTypeTokenRange": {
2511
+ "startIndex": 1,
2512
+ "endIndex": 2
2513
+ },
2514
+ "isStatic": false,
2515
+ "isProtected": false,
2516
+ "isAbstract": false
2517
+ },
2518
+ {
2519
+ "kind": "Property",
2520
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#attachments:member",
2521
+ "docComment": "",
2522
+ "excerptTokens": [
2523
+ {
2524
+ "kind": "Content",
2525
+ "text": "attachments: "
2526
+ },
2527
+ {
2528
+ "kind": "Reference",
2529
+ "text": "ChatAttachment",
2530
+ "canonicalReference": "@genesislcap/foundation-ai!ChatAttachment:interface"
2531
+ },
2532
+ {
2533
+ "kind": "Content",
2534
+ "text": "[]"
2535
+ },
2536
+ {
2537
+ "kind": "Content",
2538
+ "text": ";"
2539
+ }
2540
+ ],
2541
+ "isReadonly": false,
2542
+ "isOptional": false,
2543
+ "releaseTag": "Beta",
2544
+ "name": "attachments",
2545
+ "propertyTypeTokenRange": {
2546
+ "startIndex": 1,
2547
+ "endIndex": 3
2548
+ },
2549
+ "isStatic": false,
2550
+ "isProtected": false,
2551
+ "isAbstract": false
2552
+ },
2553
+ {
2554
+ "kind": "Property",
2555
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#channelName:member",
2556
+ "docComment": "",
2557
+ "excerptTokens": [
2558
+ {
2559
+ "kind": "Content",
2560
+ "text": "channelName: "
2561
+ },
2562
+ {
2563
+ "kind": "Content",
2564
+ "text": "string"
2565
+ },
2566
+ {
2567
+ "kind": "Content",
2568
+ "text": ";"
2569
+ }
2570
+ ],
2571
+ "isReadonly": false,
2572
+ "isOptional": false,
2573
+ "releaseTag": "Beta",
2574
+ "name": "channelName",
2575
+ "propertyTypeTokenRange": {
2576
+ "startIndex": 1,
2577
+ "endIndex": 2
2578
+ },
2579
+ "isStatic": false,
2580
+ "isProtected": false,
2581
+ "isAbstract": false
2582
+ },
2583
+ {
2584
+ "kind": "Property",
2585
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#chatConfig:member",
2586
+ "docComment": "",
2587
+ "excerptTokens": [
2588
+ {
2589
+ "kind": "Content",
2590
+ "text": "chatConfig: "
2591
+ },
2592
+ {
2593
+ "kind": "Reference",
2594
+ "text": "ChatConfig",
2595
+ "canonicalReference": "@genesislcap/foundation-ai!ChatConfig:interface"
2596
+ },
2597
+ {
2598
+ "kind": "Content",
2599
+ "text": ";"
2600
+ }
2601
+ ],
2602
+ "isReadonly": false,
2603
+ "isOptional": false,
2604
+ "releaseTag": "Beta",
2605
+ "name": "chatConfig",
2606
+ "propertyTypeTokenRange": {
2607
+ "startIndex": 1,
2608
+ "endIndex": 2
2609
+ },
2610
+ "isStatic": false,
2611
+ "isProtected": false,
2612
+ "isAbstract": false
2613
+ },
2614
+ {
2615
+ "kind": "Method",
2616
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#connectedCallback:member(1)",
2617
+ "docComment": "",
2618
+ "excerptTokens": [
2619
+ {
2620
+ "kind": "Content",
2621
+ "text": "connectedCallback(): "
2622
+ },
2623
+ {
2624
+ "kind": "Content",
2625
+ "text": "void"
2626
+ },
2627
+ {
2628
+ "kind": "Content",
2629
+ "text": ";"
2630
+ }
2631
+ ],
2632
+ "isStatic": false,
2633
+ "returnTypeTokenRange": {
2634
+ "startIndex": 1,
2635
+ "endIndex": 2
2636
+ },
2637
+ "releaseTag": "Beta",
2638
+ "isProtected": false,
2639
+ "overloadIndex": 1,
2640
+ "parameters": [],
2641
+ "isOptional": false,
2642
+ "isAbstract": false,
2643
+ "name": "connectedCallback"
2644
+ },
2645
+ {
2646
+ "kind": "Property",
2647
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#debugStateFactory:member",
2648
+ "docComment": "",
2649
+ "excerptTokens": [
2650
+ {
2651
+ "kind": "Content",
2652
+ "text": "debugStateFactory?: "
2653
+ },
2654
+ {
2655
+ "kind": "Content",
2656
+ "text": "() => unknown"
2657
+ },
2658
+ {
2659
+ "kind": "Content",
2660
+ "text": ";"
2661
+ }
2662
+ ],
2663
+ "isReadonly": false,
2664
+ "isOptional": true,
2665
+ "releaseTag": "Beta",
2666
+ "name": "debugStateFactory",
2667
+ "propertyTypeTokenRange": {
2668
+ "startIndex": 1,
2669
+ "endIndex": 2
2670
+ },
2671
+ "isStatic": false,
2672
+ "isProtected": false,
2673
+ "isAbstract": false
2674
+ },
2675
+ {
2676
+ "kind": "Property",
2677
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#designSystemPrefix:member",
2678
+ "docComment": "",
2679
+ "excerptTokens": [
2680
+ {
2681
+ "kind": "Content",
2682
+ "text": "designSystemPrefix: "
2683
+ },
2684
+ {
2685
+ "kind": "Content",
2686
+ "text": "string"
2687
+ },
2688
+ {
2689
+ "kind": "Content",
2690
+ "text": ";"
2691
+ }
2692
+ ],
2693
+ "isReadonly": false,
2694
+ "isOptional": false,
2695
+ "releaseTag": "Beta",
2696
+ "name": "designSystemPrefix",
2697
+ "propertyTypeTokenRange": {
2698
+ "startIndex": 1,
2699
+ "endIndex": 2
2700
+ },
2701
+ "isStatic": false,
2702
+ "isProtected": false,
2703
+ "isAbstract": false
2704
+ },
2705
+ {
2706
+ "kind": "Method",
2707
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#disconnectedCallback:member(1)",
2708
+ "docComment": "",
2709
+ "excerptTokens": [
2710
+ {
2711
+ "kind": "Content",
2712
+ "text": "disconnectedCallback(): "
2713
+ },
2714
+ {
2715
+ "kind": "Content",
2716
+ "text": "void"
2717
+ },
2718
+ {
2719
+ "kind": "Content",
2720
+ "text": ";"
2721
+ }
2722
+ ],
2723
+ "isStatic": false,
2724
+ "returnTypeTokenRange": {
2725
+ "startIndex": 1,
2726
+ "endIndex": 2
2727
+ },
2728
+ "releaseTag": "Beta",
2729
+ "isProtected": false,
2730
+ "overloadIndex": 1,
2731
+ "parameters": [],
2732
+ "isOptional": false,
2733
+ "isAbstract": false,
2734
+ "name": "disconnectedCallback"
2735
+ },
2736
+ {
2737
+ "kind": "Method",
2738
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#downloadHistory:member(1)",
2739
+ "docComment": "",
2740
+ "excerptTokens": [
2741
+ {
2742
+ "kind": "Content",
2743
+ "text": "downloadHistory(): "
2744
+ },
2745
+ {
2746
+ "kind": "Content",
2747
+ "text": "void"
2748
+ },
2749
+ {
2750
+ "kind": "Content",
2751
+ "text": ";"
2752
+ }
2753
+ ],
2754
+ "isStatic": false,
2755
+ "returnTypeTokenRange": {
2756
+ "startIndex": 1,
2757
+ "endIndex": 2
2758
+ },
2759
+ "releaseTag": "Beta",
2760
+ "isProtected": false,
2761
+ "overloadIndex": 1,
2762
+ "parameters": [],
2763
+ "isOptional": false,
2764
+ "isAbstract": false,
2765
+ "name": "downloadHistory"
2766
+ },
2767
+ {
2768
+ "kind": "Property",
2769
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#enabledAnimations:member",
2770
+ "docComment": "/**\n * Currently enabled animations.\n */\n",
2771
+ "excerptTokens": [
2772
+ {
2773
+ "kind": "Content",
2774
+ "text": "enabledAnimations: "
2775
+ },
2776
+ {
2777
+ "kind": "Reference",
2778
+ "text": "AiAssistantAnimation",
2779
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type"
2780
+ },
2781
+ {
2782
+ "kind": "Content",
2783
+ "text": "[]"
2784
+ },
2785
+ {
2786
+ "kind": "Content",
2787
+ "text": ";"
2788
+ }
2789
+ ],
2790
+ "isReadonly": false,
2791
+ "isOptional": false,
2792
+ "releaseTag": "Beta",
2793
+ "name": "enabledAnimations",
2794
+ "propertyTypeTokenRange": {
2795
+ "startIndex": 1,
2796
+ "endIndex": 3
2797
+ },
2798
+ "isStatic": false,
2799
+ "isProtected": false,
2800
+ "isAbstract": false
2801
+ },
2802
+ {
2803
+ "kind": "Method",
2804
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handleFileSelect:member(1)",
2805
+ "docComment": "",
2806
+ "excerptTokens": [
2807
+ {
2808
+ "kind": "Content",
2809
+ "text": "handleFileSelect(e: "
2810
+ },
2811
+ {
2812
+ "kind": "Reference",
2813
+ "text": "Event",
2814
+ "canonicalReference": "!Event:interface"
2815
+ },
2816
+ {
2817
+ "kind": "Content",
2818
+ "text": "): "
2819
+ },
2820
+ {
2821
+ "kind": "Content",
2822
+ "text": "void"
2823
+ },
2824
+ {
2825
+ "kind": "Content",
2826
+ "text": ";"
2827
+ }
2828
+ ],
2829
+ "isStatic": false,
2830
+ "returnTypeTokenRange": {
2831
+ "startIndex": 3,
2832
+ "endIndex": 4
2833
+ },
2834
+ "releaseTag": "Beta",
2835
+ "isProtected": false,
2836
+ "overloadIndex": 1,
2837
+ "parameters": [
2838
+ {
2839
+ "parameterName": "e",
2840
+ "parameterTypeTokenRange": {
2841
+ "startIndex": 1,
2842
+ "endIndex": 2
2843
+ },
2844
+ "isOptional": false
2845
+ }
2846
+ ],
2847
+ "isOptional": false,
2848
+ "isAbstract": false,
2849
+ "name": "handleFileSelect"
2850
+ },
2851
+ {
2852
+ "kind": "Method",
2853
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handleInteractionCompleted:member(1)",
2854
+ "docComment": "",
2855
+ "excerptTokens": [
2856
+ {
2857
+ "kind": "Content",
2858
+ "text": "handleInteractionCompleted(e: "
2859
+ },
2860
+ {
2861
+ "kind": "Reference",
2862
+ "text": "Event",
2863
+ "canonicalReference": "!Event:interface"
2864
+ },
2865
+ {
2866
+ "kind": "Content",
2867
+ "text": "): "
2868
+ },
2869
+ {
2870
+ "kind": "Content",
2871
+ "text": "void"
2872
+ },
2873
+ {
2874
+ "kind": "Content",
2875
+ "text": ";"
2876
+ }
2877
+ ],
2878
+ "isStatic": false,
2879
+ "returnTypeTokenRange": {
2880
+ "startIndex": 3,
2881
+ "endIndex": 4
2882
+ },
2883
+ "releaseTag": "Beta",
2884
+ "isProtected": false,
2885
+ "overloadIndex": 1,
2886
+ "parameters": [
2887
+ {
2888
+ "parameterName": "e",
2889
+ "parameterTypeTokenRange": {
2890
+ "startIndex": 1,
2891
+ "endIndex": 2
2892
+ },
2893
+ "isOptional": false
2894
+ }
2895
+ ],
2896
+ "isOptional": false,
2897
+ "isAbstract": false,
2898
+ "name": "handleInteractionCompleted"
2899
+ },
2900
+ {
2901
+ "kind": "Method",
2902
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handlePopout:member(1)",
2903
+ "docComment": "/**\n * Called when the user clicks the popout button.\n */\n",
2904
+ "excerptTokens": [
2905
+ {
2906
+ "kind": "Content",
2907
+ "text": "handlePopout(): "
2908
+ },
2909
+ {
2910
+ "kind": "Content",
2911
+ "text": "void"
2912
+ },
2913
+ {
2914
+ "kind": "Content",
2915
+ "text": ";"
2916
+ }
2917
+ ],
2918
+ "isStatic": false,
2919
+ "returnTypeTokenRange": {
2920
+ "startIndex": 1,
2921
+ "endIndex": 2
2922
+ },
2923
+ "releaseTag": "Beta",
2924
+ "isProtected": false,
2925
+ "overloadIndex": 1,
2926
+ "parameters": [],
2927
+ "isOptional": false,
2928
+ "isAbstract": false,
2929
+ "name": "handlePopout"
2930
+ },
2931
+ {
2932
+ "kind": "Method",
2933
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handleSendClick:member(1)",
2934
+ "docComment": "",
2935
+ "excerptTokens": [
2936
+ {
2937
+ "kind": "Content",
2938
+ "text": "handleSendClick(): "
2939
+ },
2940
+ {
2941
+ "kind": "Content",
2942
+ "text": "void"
2943
+ },
2944
+ {
2945
+ "kind": "Content",
2946
+ "text": ";"
2947
+ }
2948
+ ],
2949
+ "isStatic": false,
2950
+ "returnTypeTokenRange": {
2951
+ "startIndex": 1,
2952
+ "endIndex": 2
2953
+ },
2954
+ "releaseTag": "Beta",
2955
+ "isProtected": false,
2956
+ "overloadIndex": 1,
2957
+ "parameters": [],
2958
+ "isOptional": false,
2959
+ "isAbstract": false,
2960
+ "name": "handleSendClick"
2961
+ },
2962
+ {
2963
+ "kind": "Property",
2964
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#hasActivePendingInteraction:member",
2965
+ "docComment": "/**\n * True when there is a pending (unresolved) interaction — disables the popout button.\n */\n",
2966
+ "excerptTokens": [
2967
+ {
2968
+ "kind": "Content",
2969
+ "text": "get hasActivePendingInteraction(): "
2970
+ },
2971
+ {
2972
+ "kind": "Content",
2973
+ "text": "boolean"
2974
+ },
2975
+ {
2976
+ "kind": "Content",
2977
+ "text": ";"
2978
+ }
2979
+ ],
2980
+ "isReadonly": true,
2981
+ "isOptional": false,
2982
+ "releaseTag": "Beta",
2983
+ "name": "hasActivePendingInteraction",
2984
+ "propertyTypeTokenRange": {
2985
+ "startIndex": 1,
2986
+ "endIndex": 2
2987
+ },
2988
+ "isStatic": false,
2989
+ "isProtected": false,
2990
+ "isAbstract": false
2991
+ },
2992
+ {
2993
+ "kind": "Property",
2994
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#headerTitle:member",
2995
+ "docComment": "",
2996
+ "excerptTokens": [
2997
+ {
2998
+ "kind": "Content",
2999
+ "text": "headerTitle?: "
3000
+ },
3001
+ {
3002
+ "kind": "Content",
3003
+ "text": "string"
3004
+ },
3005
+ {
3006
+ "kind": "Content",
3007
+ "text": ";"
3008
+ }
3009
+ ],
3010
+ "isReadonly": false,
3011
+ "isOptional": true,
3012
+ "releaseTag": "Beta",
3013
+ "name": "headerTitle",
3014
+ "propertyTypeTokenRange": {
3015
+ "startIndex": 1,
3016
+ "endIndex": 2
3017
+ },
3018
+ "isStatic": false,
3019
+ "isProtected": false,
3020
+ "isAbstract": false
3021
+ },
3022
+ {
3023
+ "kind": "Property",
3024
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#imageSrc:member",
3025
+ "docComment": "",
3026
+ "excerptTokens": [
3027
+ {
3028
+ "kind": "Content",
3029
+ "text": "imageSrc?: "
3030
+ },
3031
+ {
3032
+ "kind": "Content",
3033
+ "text": "string"
3034
+ },
3035
+ {
3036
+ "kind": "Content",
3037
+ "text": ";"
3038
+ }
3039
+ ],
3040
+ "isReadonly": false,
3041
+ "isOptional": true,
3042
+ "releaseTag": "Beta",
3043
+ "name": "imageSrc",
3044
+ "propertyTypeTokenRange": {
3045
+ "startIndex": 1,
3046
+ "endIndex": 2
3047
+ },
3048
+ "isStatic": false,
3049
+ "isProtected": false,
3050
+ "isAbstract": false
3051
+ },
3052
+ {
3053
+ "kind": "Property",
3054
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#inputValue:member",
3055
+ "docComment": "",
3056
+ "excerptTokens": [
3057
+ {
3058
+ "kind": "Content",
3059
+ "text": "inputValue: "
3060
+ },
3061
+ {
3062
+ "kind": "Content",
3063
+ "text": "string"
3064
+ },
3065
+ {
3066
+ "kind": "Content",
3067
+ "text": ";"
3068
+ }
3069
+ ],
3070
+ "isReadonly": false,
3071
+ "isOptional": false,
3072
+ "releaseTag": "Beta",
3073
+ "name": "inputValue",
3074
+ "propertyTypeTokenRange": {
3075
+ "startIndex": 1,
3076
+ "endIndex": 2
3077
+ },
3078
+ "isStatic": false,
3079
+ "isProtected": false,
3080
+ "isAbstract": false
3081
+ },
3082
+ {
3083
+ "kind": "Property",
3084
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#messages:member",
3085
+ "docComment": "",
3086
+ "excerptTokens": [
3087
+ {
3088
+ "kind": "Content",
3089
+ "text": "messages: "
3090
+ },
3091
+ {
3092
+ "kind": "Reference",
3093
+ "text": "ChatMessage",
3094
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
3095
+ },
3096
+ {
3097
+ "kind": "Content",
3098
+ "text": "[]"
3099
+ },
3100
+ {
3101
+ "kind": "Content",
3102
+ "text": ";"
3103
+ }
3104
+ ],
3105
+ "isReadonly": false,
3106
+ "isOptional": false,
3107
+ "releaseTag": "Beta",
3108
+ "name": "messages",
3109
+ "propertyTypeTokenRange": {
3110
+ "startIndex": 1,
3111
+ "endIndex": 3
3112
+ },
3113
+ "isStatic": false,
3114
+ "isProtected": false,
3115
+ "isAbstract": false
3116
+ },
3117
+ {
3118
+ "kind": "Method",
3119
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#messagesChanged:member(1)",
3120
+ "docComment": "",
3121
+ "excerptTokens": [
3122
+ {
3123
+ "kind": "Content",
3124
+ "text": "messagesChanged(): "
3125
+ },
3126
+ {
3127
+ "kind": "Content",
3128
+ "text": "void"
3129
+ },
3130
+ {
3131
+ "kind": "Content",
3132
+ "text": ";"
3133
+ }
3134
+ ],
3135
+ "isStatic": false,
3136
+ "returnTypeTokenRange": {
3137
+ "startIndex": 1,
3138
+ "endIndex": 2
3139
+ },
3140
+ "releaseTag": "Beta",
3141
+ "isProtected": false,
3142
+ "overloadIndex": 1,
3143
+ "parameters": [],
3144
+ "isOptional": false,
3145
+ "isAbstract": false,
3146
+ "name": "messagesChanged"
3147
+ },
3148
+ {
3149
+ "kind": "Method",
3150
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#onChatHeaderMouseDown:member(1)",
3151
+ "docComment": "",
3152
+ "excerptTokens": [
3153
+ {
3154
+ "kind": "Content",
3155
+ "text": "onChatHeaderMouseDown(e: "
3156
+ },
3157
+ {
3158
+ "kind": "Reference",
3159
+ "text": "MouseEvent",
3160
+ "canonicalReference": "!MouseEvent:interface"
3161
+ },
3162
+ {
3163
+ "kind": "Content",
3164
+ "text": "): "
3165
+ },
3166
+ {
3167
+ "kind": "Content",
3168
+ "text": "void"
3169
+ },
3170
+ {
3171
+ "kind": "Content",
3172
+ "text": ";"
3173
+ }
3174
+ ],
3175
+ "isStatic": false,
3176
+ "returnTypeTokenRange": {
3177
+ "startIndex": 3,
3178
+ "endIndex": 4
3179
+ },
3180
+ "releaseTag": "Beta",
3181
+ "isProtected": false,
3182
+ "overloadIndex": 1,
3183
+ "parameters": [
3184
+ {
3185
+ "parameterName": "e",
3186
+ "parameterTypeTokenRange": {
3187
+ "startIndex": 1,
3188
+ "endIndex": 2
3189
+ },
3190
+ "isOptional": false
3191
+ }
3192
+ ],
3193
+ "isOptional": false,
3194
+ "isAbstract": false,
3195
+ "name": "onChatHeaderMouseDown"
3196
+ },
3197
+ {
3198
+ "kind": "Property",
3199
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#placeholder:member",
3200
+ "docComment": "",
3201
+ "excerptTokens": [
3202
+ {
3203
+ "kind": "Content",
3204
+ "text": "placeholder: "
3205
+ },
3206
+ {
3207
+ "kind": "Content",
3208
+ "text": "string"
3209
+ },
3210
+ {
3211
+ "kind": "Content",
3212
+ "text": ";"
3213
+ }
3214
+ ],
3215
+ "isReadonly": false,
3216
+ "isOptional": false,
3217
+ "releaseTag": "Beta",
3218
+ "name": "placeholder",
3219
+ "propertyTypeTokenRange": {
3220
+ "startIndex": 1,
3221
+ "endIndex": 2
3222
+ },
3223
+ "isStatic": false,
3224
+ "isProtected": false,
3225
+ "isAbstract": false
3226
+ },
3227
+ {
3228
+ "kind": "Property",
3229
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#popoutMode:member",
3230
+ "docComment": "/**\n * Controls the pop-out button shown next to the settings cog. \"expand\" — in bubble, expands to layout panel (fires chat-popout). \"collapse\" — in layout panel, collapses back to bubble (fires chat-popin). Absent — no button (default standalone behaviour, no breaking change).\n */\n",
3231
+ "excerptTokens": [
3232
+ {
3233
+ "kind": "Content",
3234
+ "text": "popoutMode?: "
3235
+ },
3236
+ {
3237
+ "kind": "Reference",
3238
+ "text": "PopoutMode",
3239
+ "canonicalReference": "@genesislcap/ai-assistant!PopoutMode:type"
3240
+ },
3241
+ {
3242
+ "kind": "Content",
3243
+ "text": ";"
3244
+ }
3245
+ ],
3246
+ "isReadonly": false,
3247
+ "isOptional": true,
3248
+ "releaseTag": "Beta",
3249
+ "name": "popoutMode",
3250
+ "propertyTypeTokenRange": {
3251
+ "startIndex": 1,
3252
+ "endIndex": 2
3253
+ },
3254
+ "isStatic": false,
3255
+ "isProtected": false,
3256
+ "isAbstract": false
3257
+ },
3258
+ {
3259
+ "kind": "Method",
3260
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#removeAttachment:member(1)",
3261
+ "docComment": "",
3262
+ "excerptTokens": [
3263
+ {
3264
+ "kind": "Content",
3265
+ "text": "removeAttachment(attachment: "
3266
+ },
3267
+ {
3268
+ "kind": "Reference",
3269
+ "text": "ChatAttachment",
3270
+ "canonicalReference": "@genesislcap/foundation-ai!ChatAttachment:interface"
3271
+ },
3272
+ {
3273
+ "kind": "Content",
3274
+ "text": "): "
3275
+ },
3276
+ {
3277
+ "kind": "Content",
3278
+ "text": "void"
3279
+ },
3280
+ {
3281
+ "kind": "Content",
3282
+ "text": ";"
3283
+ }
3284
+ ],
3285
+ "isStatic": false,
3286
+ "returnTypeTokenRange": {
3287
+ "startIndex": 3,
3288
+ "endIndex": 4
3289
+ },
3290
+ "releaseTag": "Beta",
3291
+ "isProtected": false,
3292
+ "overloadIndex": 1,
3293
+ "parameters": [
3294
+ {
3295
+ "parameterName": "attachment",
3296
+ "parameterTypeTokenRange": {
3297
+ "startIndex": 1,
3298
+ "endIndex": 2
3299
+ },
3300
+ "isOptional": false
3301
+ }
3302
+ ],
3303
+ "isOptional": false,
3304
+ "isAbstract": false,
3305
+ "name": "removeAttachment"
3306
+ },
3307
+ {
3308
+ "kind": "Method",
3309
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#removeAttachmentError:member(1)",
3310
+ "docComment": "",
3311
+ "excerptTokens": [
3312
+ {
3313
+ "kind": "Content",
3314
+ "text": "removeAttachmentError(message: "
3315
+ },
3316
+ {
3317
+ "kind": "Content",
3318
+ "text": "string"
3319
+ },
3320
+ {
3321
+ "kind": "Content",
3322
+ "text": "): "
3323
+ },
3324
+ {
3325
+ "kind": "Content",
3326
+ "text": "void"
3327
+ },
3328
+ {
3329
+ "kind": "Content",
3330
+ "text": ";"
3331
+ }
3332
+ ],
3333
+ "isStatic": false,
3334
+ "returnTypeTokenRange": {
3335
+ "startIndex": 3,
3336
+ "endIndex": 4
3337
+ },
3338
+ "releaseTag": "Beta",
3339
+ "isProtected": false,
3340
+ "overloadIndex": 1,
3341
+ "parameters": [
3342
+ {
3343
+ "parameterName": "message",
3344
+ "parameterTypeTokenRange": {
3345
+ "startIndex": 1,
3346
+ "endIndex": 2
3347
+ },
3348
+ "isOptional": false
3349
+ }
3350
+ ],
3351
+ "isOptional": false,
3352
+ "isAbstract": false,
3353
+ "name": "removeAttachmentError"
3354
+ },
3355
+ {
3356
+ "kind": "Method",
3357
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#setEnabledAnimations:member(1)",
3358
+ "docComment": "",
3359
+ "excerptTokens": [
3360
+ {
3361
+ "kind": "Content",
3362
+ "text": "setEnabledAnimations(animations: "
3363
+ },
3364
+ {
3365
+ "kind": "Reference",
3366
+ "text": "AiAssistantAnimation",
3367
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type"
3368
+ },
3369
+ {
3370
+ "kind": "Content",
3371
+ "text": "[]"
3372
+ },
3373
+ {
3374
+ "kind": "Content",
3375
+ "text": "): "
3376
+ },
3377
+ {
3378
+ "kind": "Content",
3379
+ "text": "void"
3380
+ },
3381
+ {
3382
+ "kind": "Content",
3383
+ "text": ";"
3384
+ }
3385
+ ],
3386
+ "isStatic": false,
3387
+ "returnTypeTokenRange": {
3388
+ "startIndex": 4,
3389
+ "endIndex": 5
3390
+ },
3391
+ "releaseTag": "Beta",
3392
+ "isProtected": false,
3393
+ "overloadIndex": 1,
3394
+ "parameters": [
3395
+ {
3396
+ "parameterName": "animations",
3397
+ "parameterTypeTokenRange": {
3398
+ "startIndex": 1,
3399
+ "endIndex": 3
3400
+ },
3401
+ "isOptional": false
3402
+ }
3403
+ ],
3404
+ "isOptional": false,
3405
+ "isAbstract": false,
3406
+ "name": "setEnabledAnimations"
3407
+ },
3408
+ {
3409
+ "kind": "Property",
3410
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsOpen:member",
3411
+ "docComment": "/**\n * Whether the settings panel is open.\n */\n",
3412
+ "excerptTokens": [
3413
+ {
3414
+ "kind": "Content",
3415
+ "text": "settingsOpen: "
3416
+ },
3417
+ {
3418
+ "kind": "Content",
3419
+ "text": "boolean"
3420
+ },
3421
+ {
3422
+ "kind": "Content",
3423
+ "text": ";"
3424
+ }
3425
+ ],
3426
+ "isReadonly": false,
3427
+ "isOptional": false,
3428
+ "releaseTag": "Beta",
3429
+ "name": "settingsOpen",
3430
+ "propertyTypeTokenRange": {
3431
+ "startIndex": 1,
3432
+ "endIndex": 2
3433
+ },
3434
+ "isStatic": false,
3435
+ "isProtected": false,
3436
+ "isAbstract": false
3437
+ },
3438
+ {
3439
+ "kind": "Property",
3440
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showHalo:member",
3441
+ "docComment": "/**\n * Whether the halo animation should be shown. True when the AI is actively computing (loading state, no pending interaction).\n */\n",
3442
+ "excerptTokens": [
3443
+ {
3444
+ "kind": "Content",
3445
+ "text": "showHalo: "
3446
+ },
3447
+ {
3448
+ "kind": "Content",
3449
+ "text": "boolean"
3450
+ },
3451
+ {
3452
+ "kind": "Content",
3453
+ "text": ";"
3454
+ }
3455
+ ],
3456
+ "isReadonly": false,
3457
+ "isOptional": false,
3458
+ "releaseTag": "Beta",
3459
+ "name": "showHalo",
3460
+ "propertyTypeTokenRange": {
3461
+ "startIndex": 1,
3462
+ "endIndex": 2
3463
+ },
3464
+ "isStatic": false,
3465
+ "isProtected": false,
3466
+ "isAbstract": false
3467
+ },
3468
+ {
3469
+ "kind": "Method",
3470
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showHaloChanged:member(1)",
3471
+ "docComment": "",
3472
+ "excerptTokens": [
3473
+ {
3474
+ "kind": "Content",
3475
+ "text": "showHaloChanged(): "
3476
+ },
3477
+ {
3478
+ "kind": "Content",
3479
+ "text": "void"
3480
+ },
3481
+ {
3482
+ "kind": "Content",
3483
+ "text": ";"
3484
+ }
3485
+ ],
3486
+ "isStatic": false,
3487
+ "returnTypeTokenRange": {
3488
+ "startIndex": 1,
3489
+ "endIndex": 2
3490
+ },
3491
+ "releaseTag": "Beta",
3492
+ "isProtected": false,
3493
+ "overloadIndex": 1,
3494
+ "parameters": [],
3495
+ "isOptional": false,
3496
+ "isAbstract": false,
3497
+ "name": "showHaloChanged"
3498
+ },
3499
+ {
3500
+ "kind": "Property",
3501
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showLoadingIndicator:member",
3502
+ "docComment": "/**\n * Whether the loading spinner is currently visible. Controlled by the loading delay timer.\n */\n",
3503
+ "excerptTokens": [
3504
+ {
3505
+ "kind": "Content",
3506
+ "text": "showLoadingIndicator: "
3507
+ },
3508
+ {
3509
+ "kind": "Content",
3510
+ "text": "boolean"
3511
+ },
3512
+ {
3513
+ "kind": "Content",
3514
+ "text": ";"
3515
+ }
3516
+ ],
3517
+ "isReadonly": false,
3518
+ "isOptional": false,
3519
+ "releaseTag": "Beta",
3520
+ "name": "showLoadingIndicator",
3521
+ "propertyTypeTokenRange": {
3522
+ "startIndex": 1,
3523
+ "endIndex": 2
3524
+ },
3525
+ "isStatic": false,
3526
+ "isProtected": false,
3527
+ "isAbstract": false
3528
+ },
3529
+ {
3530
+ "kind": "Method",
3531
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showLoadingIndicatorChanged:member(1)",
3532
+ "docComment": "",
3533
+ "excerptTokens": [
3534
+ {
3535
+ "kind": "Content",
3536
+ "text": "showLoadingIndicatorChanged(): "
3537
+ },
3538
+ {
3539
+ "kind": "Content",
3540
+ "text": "void"
3541
+ },
3542
+ {
3543
+ "kind": "Content",
3544
+ "text": ";"
3545
+ }
3546
+ ],
3547
+ "isStatic": false,
3548
+ "returnTypeTokenRange": {
3549
+ "startIndex": 1,
3550
+ "endIndex": 2
3551
+ },
3552
+ "releaseTag": "Beta",
3553
+ "isProtected": false,
3554
+ "overloadIndex": 1,
3555
+ "parameters": [],
3556
+ "isOptional": false,
3557
+ "isAbstract": false,
3558
+ "name": "showLoadingIndicatorChanged"
3559
+ },
3560
+ {
3561
+ "kind": "Property",
3562
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showThinkingSteps:member",
3563
+ "docComment": "/**\n * Current user-facing toggle state for thinking step visibility.\n */\n",
3564
+ "excerptTokens": [
3565
+ {
3566
+ "kind": "Content",
3567
+ "text": "showThinkingSteps: "
3568
+ },
3569
+ {
3570
+ "kind": "Content",
3571
+ "text": "boolean"
3572
+ },
3573
+ {
3574
+ "kind": "Content",
3575
+ "text": ";"
3576
+ }
3577
+ ],
3578
+ "isReadonly": false,
3579
+ "isOptional": false,
3580
+ "releaseTag": "Beta",
3581
+ "name": "showThinkingSteps",
3582
+ "propertyTypeTokenRange": {
3583
+ "startIndex": 1,
3584
+ "endIndex": 2
3585
+ },
3586
+ "isStatic": false,
3587
+ "isProtected": false,
3588
+ "isAbstract": false
3589
+ },
3590
+ {
3591
+ "kind": "Property",
3592
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showToolCalls:member",
3593
+ "docComment": "/**\n * Current user-facing toggle state for tool call visibility.\n */\n",
3594
+ "excerptTokens": [
3595
+ {
3596
+ "kind": "Content",
3597
+ "text": "showToolCalls: "
3598
+ },
3599
+ {
3600
+ "kind": "Content",
3601
+ "text": "boolean"
3602
+ },
3603
+ {
3604
+ "kind": "Content",
3605
+ "text": ";"
3606
+ }
3607
+ ],
3608
+ "isReadonly": false,
3609
+ "isOptional": false,
3610
+ "releaseTag": "Beta",
3611
+ "name": "showToolCalls",
3612
+ "propertyTypeTokenRange": {
3613
+ "startIndex": 1,
3614
+ "endIndex": 2
3615
+ },
3616
+ "isStatic": false,
3617
+ "isProtected": false,
3618
+ "isAbstract": false
3619
+ },
3620
+ {
3621
+ "kind": "Property",
3622
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#state:member",
3623
+ "docComment": "",
3624
+ "excerptTokens": [
3625
+ {
3626
+ "kind": "Content",
3627
+ "text": "state: "
3628
+ },
3629
+ {
3630
+ "kind": "Reference",
3631
+ "text": "AiAssistantState",
3632
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantState:type"
3633
+ },
3634
+ {
3635
+ "kind": "Content",
3636
+ "text": ";"
3637
+ }
3638
+ ],
3639
+ "isReadonly": false,
3640
+ "isOptional": false,
3641
+ "releaseTag": "Beta",
3642
+ "name": "state",
3643
+ "propertyTypeTokenRange": {
3644
+ "startIndex": 1,
3645
+ "endIndex": 2
3646
+ },
3647
+ "isStatic": false,
3648
+ "isProtected": false,
3649
+ "isAbstract": false
3650
+ },
3651
+ {
3652
+ "kind": "Method",
3653
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#stateChanged:member(1)",
3654
+ "docComment": "",
3655
+ "excerptTokens": [
3656
+ {
3657
+ "kind": "Content",
3658
+ "text": "stateChanged(): "
3659
+ },
3660
+ {
3661
+ "kind": "Content",
3662
+ "text": "void"
3663
+ },
3664
+ {
3665
+ "kind": "Content",
3666
+ "text": ";"
3667
+ }
3668
+ ],
3669
+ "isStatic": false,
3670
+ "returnTypeTokenRange": {
3671
+ "startIndex": 1,
3672
+ "endIndex": 2
3673
+ },
3674
+ "releaseTag": "Beta",
3675
+ "isProtected": false,
3676
+ "overloadIndex": 1,
3677
+ "parameters": [],
3678
+ "isOptional": false,
3679
+ "isAbstract": false,
3680
+ "name": "stateChanged"
3681
+ },
3682
+ {
3683
+ "kind": "Property",
3684
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#systemPrompt:member",
3685
+ "docComment": "",
3686
+ "excerptTokens": [
3687
+ {
3688
+ "kind": "Content",
3689
+ "text": "systemPrompt?: "
3690
+ },
3691
+ {
3692
+ "kind": "Content",
3693
+ "text": "string"
3694
+ },
3695
+ {
3696
+ "kind": "Content",
3697
+ "text": ";"
3698
+ }
3699
+ ],
3700
+ "isReadonly": false,
3701
+ "isOptional": true,
3702
+ "releaseTag": "Beta",
3703
+ "name": "systemPrompt",
3704
+ "propertyTypeTokenRange": {
3705
+ "startIndex": 1,
3706
+ "endIndex": 2
3707
+ },
3708
+ "isStatic": false,
3709
+ "isProtected": false,
3710
+ "isAbstract": false
3711
+ },
3712
+ {
3713
+ "kind": "Method",
3714
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleSettings:member(1)",
3715
+ "docComment": "",
3716
+ "excerptTokens": [
3717
+ {
3718
+ "kind": "Content",
3719
+ "text": "toggleSettings(): "
3720
+ },
3721
+ {
3722
+ "kind": "Content",
3723
+ "text": "void"
3724
+ },
3725
+ {
3726
+ "kind": "Content",
3727
+ "text": ";"
3728
+ }
3729
+ ],
3730
+ "isStatic": false,
3731
+ "returnTypeTokenRange": {
3732
+ "startIndex": 1,
3733
+ "endIndex": 2
3734
+ },
3735
+ "releaseTag": "Beta",
3736
+ "isProtected": false,
3737
+ "overloadIndex": 1,
3738
+ "parameters": [],
3739
+ "isOptional": false,
3740
+ "isAbstract": false,
3741
+ "name": "toggleSettings"
3742
+ },
3743
+ {
3744
+ "kind": "Method",
3745
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleShowThinkingSteps:member(1)",
3746
+ "docComment": "",
3747
+ "excerptTokens": [
3748
+ {
3749
+ "kind": "Content",
3750
+ "text": "toggleShowThinkingSteps(): "
3751
+ },
3752
+ {
3753
+ "kind": "Content",
3754
+ "text": "void"
3755
+ },
3756
+ {
3757
+ "kind": "Content",
3758
+ "text": ";"
3759
+ }
3760
+ ],
3761
+ "isStatic": false,
3762
+ "returnTypeTokenRange": {
3763
+ "startIndex": 1,
3764
+ "endIndex": 2
3765
+ },
3766
+ "releaseTag": "Beta",
3767
+ "isProtected": false,
3768
+ "overloadIndex": 1,
3769
+ "parameters": [],
3770
+ "isOptional": false,
3771
+ "isAbstract": false,
3772
+ "name": "toggleShowThinkingSteps"
3773
+ },
3774
+ {
3775
+ "kind": "Method",
3776
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleShowToolCalls:member(1)",
3777
+ "docComment": "",
3778
+ "excerptTokens": [
3779
+ {
3780
+ "kind": "Content",
3781
+ "text": "toggleShowToolCalls(): "
3782
+ },
3783
+ {
3784
+ "kind": "Content",
3785
+ "text": "void"
3786
+ },
3787
+ {
3788
+ "kind": "Content",
3789
+ "text": ";"
3790
+ }
3791
+ ],
3792
+ "isStatic": false,
3793
+ "returnTypeTokenRange": {
3794
+ "startIndex": 1,
3795
+ "endIndex": 2
3796
+ },
3797
+ "releaseTag": "Beta",
3798
+ "isProtected": false,
3799
+ "overloadIndex": 1,
3800
+ "parameters": [],
3801
+ "isOptional": false,
3802
+ "isAbstract": false,
3803
+ "name": "toggleShowToolCalls"
3804
+ },
3805
+ {
3806
+ "kind": "Property",
3807
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toolDefinitions:member",
3808
+ "docComment": "",
3809
+ "excerptTokens": [
3810
+ {
3811
+ "kind": "Content",
3812
+ "text": "toolDefinitions?: "
3813
+ },
3814
+ {
3815
+ "kind": "Reference",
3816
+ "text": "ChatToolDefinition",
3817
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolDefinition:interface"
3818
+ },
3819
+ {
3820
+ "kind": "Content",
3821
+ "text": "[]"
3822
+ },
3823
+ {
3824
+ "kind": "Content",
3825
+ "text": ";"
3826
+ }
3827
+ ],
3828
+ "isReadonly": false,
3829
+ "isOptional": true,
3830
+ "releaseTag": "Beta",
3831
+ "name": "toolDefinitions",
3832
+ "propertyTypeTokenRange": {
3833
+ "startIndex": 1,
3834
+ "endIndex": 3
3835
+ },
3836
+ "isStatic": false,
3837
+ "isProtected": false,
3838
+ "isAbstract": false
3839
+ },
3840
+ {
3841
+ "kind": "Property",
3842
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toolHandlers:member",
3843
+ "docComment": "",
3844
+ "excerptTokens": [
3845
+ {
3846
+ "kind": "Content",
3847
+ "text": "toolHandlers?: "
3848
+ },
3849
+ {
3850
+ "kind": "Reference",
3851
+ "text": "ChatToolHandlers",
3852
+ "canonicalReference": "@genesislcap/foundation-ai!ChatToolHandlers:type"
3853
+ },
3854
+ {
3855
+ "kind": "Content",
3856
+ "text": ";"
3857
+ }
3858
+ ],
3859
+ "isReadonly": false,
3860
+ "isOptional": true,
3861
+ "releaseTag": "Beta",
3862
+ "name": "toolHandlers",
3863
+ "propertyTypeTokenRange": {
3864
+ "startIndex": 1,
3865
+ "endIndex": 2
3866
+ },
3867
+ "isStatic": false,
3868
+ "isProtected": false,
3869
+ "isAbstract": false
3870
+ },
3871
+ {
3872
+ "kind": "Method",
3873
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#triggerFileInput:member(1)",
3874
+ "docComment": "",
3875
+ "excerptTokens": [
3876
+ {
3877
+ "kind": "Content",
3878
+ "text": "triggerFileInput(): "
3879
+ },
3880
+ {
3881
+ "kind": "Content",
3882
+ "text": "void"
3883
+ },
3884
+ {
3885
+ "kind": "Content",
3886
+ "text": ";"
3887
+ }
3888
+ ],
3889
+ "isStatic": false,
3890
+ "returnTypeTokenRange": {
3891
+ "startIndex": 1,
3892
+ "endIndex": 2
3893
+ },
3894
+ "releaseTag": "Beta",
3895
+ "isProtected": false,
3896
+ "overloadIndex": 1,
3897
+ "parameters": [],
3898
+ "isOptional": false,
3899
+ "isAbstract": false,
3900
+ "name": "triggerFileInput"
3901
+ },
3902
+ {
3903
+ "kind": "Property",
3904
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#visibleMessages:member",
3905
+ "docComment": "/**\n * Messages filtered by the current toggle state. Tool-related messages (those with toolCalls or toolResult) are hidden when `showToolCalls` is false.\n */\n",
3906
+ "excerptTokens": [
3907
+ {
3908
+ "kind": "Content",
3909
+ "text": "get visibleMessages(): "
3910
+ },
3911
+ {
3912
+ "kind": "Reference",
3913
+ "text": "ChatMessage",
3914
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
3915
+ },
3916
+ {
3917
+ "kind": "Content",
3918
+ "text": "[]"
3919
+ },
3920
+ {
3921
+ "kind": "Content",
3922
+ "text": ";"
3923
+ }
3924
+ ],
3925
+ "isReadonly": true,
3926
+ "isOptional": false,
3927
+ "releaseTag": "Beta",
3928
+ "name": "visibleMessages",
3929
+ "propertyTypeTokenRange": {
3930
+ "startIndex": 1,
3931
+ "endIndex": 3
3932
+ },
3933
+ "isStatic": false,
3934
+ "isProtected": false,
3935
+ "isAbstract": false
3936
+ }
3937
+ ],
3938
+ "extendsTokenRange": {
3939
+ "startIndex": 1,
3940
+ "endIndex": 2
3941
+ },
3942
+ "implementsTokenRanges": []
3943
+ },
3944
+ {
3945
+ "kind": "Function",
3946
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistantTemplate:function(1)",
3947
+ "docComment": "",
3948
+ "excerptTokens": [
3949
+ {
3950
+ "kind": "Content",
3951
+ "text": "FoundationAiAssistantTemplate: (designSystemPrefix: "
3952
+ },
3953
+ {
3954
+ "kind": "Content",
3955
+ "text": "string"
3956
+ },
3957
+ {
3958
+ "kind": "Content",
3959
+ "text": ") => "
3960
+ },
3961
+ {
3962
+ "kind": "Reference",
3963
+ "text": "ViewTemplate",
3964
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
3965
+ },
3966
+ {
3967
+ "kind": "Content",
3968
+ "text": "<"
3969
+ },
3970
+ {
3971
+ "kind": "Reference",
3972
+ "text": "FoundationAiAssistant",
3973
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant:class"
3974
+ },
3975
+ {
3976
+ "kind": "Content",
3977
+ "text": ">"
3978
+ }
3979
+ ],
3980
+ "fileUrlPath": "src/main/main.template.ts",
3981
+ "returnTypeTokenRange": {
3982
+ "startIndex": 3,
3983
+ "endIndex": 7
3984
+ },
3985
+ "releaseTag": "Public",
3986
+ "overloadIndex": 1,
3987
+ "parameters": [
3988
+ {
3989
+ "parameterName": "designSystemPrefix",
3990
+ "parameterTypeTokenRange": {
3991
+ "startIndex": 1,
3992
+ "endIndex": 2
3993
+ },
3994
+ "isOptional": false
3995
+ }
3996
+ ],
3997
+ "name": "FoundationAiAssistantTemplate"
3998
+ },
3999
+ {
4000
+ "kind": "TypeAlias",
4001
+ "canonicalReference": "@genesislcap/ai-assistant!PopoutMode:type",
4002
+ "docComment": "/**\n * Controls the pop-out button shown in the assistant header. - `\"expand\"` — assistant is embedded in the bubble dialog; button expands it to a layout panel. - `\"collapse\"` — assistant is in a layout panel; button collapses it back to the bubble.\n *\n * @beta\n */\n",
4003
+ "excerptTokens": [
4004
+ {
4005
+ "kind": "Content",
4006
+ "text": "export type PopoutMode = "
4007
+ },
4008
+ {
4009
+ "kind": "Content",
4010
+ "text": "'expand' | 'collapse'"
4011
+ },
4012
+ {
4013
+ "kind": "Content",
4014
+ "text": ";"
4015
+ }
4016
+ ],
4017
+ "fileUrlPath": "src/main/main.types.ts",
4018
+ "releaseTag": "Beta",
4019
+ "name": "PopoutMode",
4020
+ "typeTokenRange": {
4021
+ "startIndex": 1,
4022
+ "endIndex": 2
4023
+ }
4024
+ }
4025
+ ]
4026
+ }
4027
+ ]
4028
+ }