@genesislcap/ai-assistant 14.409.0-FUI-2495.2 → 14.409.0-FUI-2495.4

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 (36) hide show
  1. package/dist/ai-assistant.api.json +627 -7
  2. package/dist/ai-assistant.d.ts +51 -0
  3. package/dist/dts/channel/ai-activity-channel.d.ts +1 -0
  4. package/dist/dts/channel/ai-activity-channel.d.ts.map +1 -1
  5. package/dist/dts/components/ai-driver/ai-driver.d.ts +11 -1
  6. package/dist/dts/components/ai-driver/ai-driver.d.ts.map +1 -1
  7. package/dist/dts/components/chat-driver/chat-driver.d.ts +12 -1
  8. package/dist/dts/components/chat-driver/chat-driver.d.ts.map +1 -1
  9. package/dist/dts/components/orchestrating-driver/orchestrating-driver.d.ts +2 -1
  10. package/dist/dts/components/orchestrating-driver/orchestrating-driver.d.ts.map +1 -1
  11. package/dist/dts/main/main.d.ts +11 -1
  12. package/dist/dts/main/main.d.ts.map +1 -1
  13. package/dist/dts/main/main.styles.d.ts.map +1 -1
  14. package/dist/dts/main/main.template.d.ts.map +1 -1
  15. package/dist/dts/main/main.types.d.ts +16 -0
  16. package/dist/dts/main/main.types.d.ts.map +1 -1
  17. package/dist/dts/suggestions/chat-suggestions.d.ts +7 -0
  18. package/dist/dts/suggestions/chat-suggestions.d.ts.map +1 -0
  19. package/dist/esm/components/chat-driver/chat-driver.js +156 -32
  20. package/dist/esm/components/orchestrating-driver/orchestrating-driver.js +24 -9
  21. package/dist/esm/main/main.js +85 -2
  22. package/dist/esm/main/main.styles.js +17 -0
  23. package/dist/esm/main/main.template.js +11 -0
  24. package/dist/esm/suggestions/chat-suggestions.js +147 -0
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/docs/multi-agent-architecture.md +68 -0
  27. package/package.json +15 -15
  28. package/src/channel/ai-activity-channel.ts +1 -0
  29. package/src/components/ai-driver/ai-driver.ts +23 -1
  30. package/src/components/chat-driver/chat-driver.ts +180 -42
  31. package/src/components/orchestrating-driver/orchestrating-driver.ts +30 -11
  32. package/src/main/main.styles.ts +17 -0
  33. package/src/main/main.template.ts +15 -0
  34. package/src/main/main.ts +90 -2
  35. package/src/main/main.types.ts +11 -0
  36. package/src/suggestions/chat-suggestions.ts +158 -0
@@ -1049,6 +1049,33 @@
1049
1049
  "startIndex": 1,
1050
1050
  "endIndex": 2
1051
1051
  }
1052
+ },
1053
+ {
1054
+ "kind": "PropertySignature",
1055
+ "canonicalReference": "@genesislcap/ai-assistant!AiAssistantSerializedState#suggestions:member",
1056
+ "docComment": "",
1057
+ "excerptTokens": [
1058
+ {
1059
+ "kind": "Content",
1060
+ "text": "suggestions?: "
1061
+ },
1062
+ {
1063
+ "kind": "Content",
1064
+ "text": "string[]"
1065
+ },
1066
+ {
1067
+ "kind": "Content",
1068
+ "text": ";"
1069
+ }
1070
+ ],
1071
+ "isReadonly": false,
1072
+ "isOptional": true,
1073
+ "releaseTag": "Beta",
1074
+ "name": "suggestions",
1075
+ "propertyTypeTokenRange": {
1076
+ "startIndex": 1,
1077
+ "endIndex": 2
1078
+ }
1052
1079
  }
1053
1080
  ],
1054
1081
  "extendsTokenRanges": []
@@ -1427,6 +1454,114 @@
1427
1454
  "parameters": [],
1428
1455
  "name": "getRawHistory"
1429
1456
  },
1457
+ {
1458
+ "kind": "MethodSignature",
1459
+ "canonicalReference": "@genesislcap/ai-assistant!AiDriver#getSuggestions:member(1)",
1460
+ "docComment": "/**\n * Get query suggestions from the AI.\n */\n",
1461
+ "excerptTokens": [
1462
+ {
1463
+ "kind": "Content",
1464
+ "text": "getSuggestions(history: "
1465
+ },
1466
+ {
1467
+ "kind": "Reference",
1468
+ "text": "ChatMessage",
1469
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
1470
+ },
1471
+ {
1472
+ "kind": "Content",
1473
+ "text": "[]"
1474
+ },
1475
+ {
1476
+ "kind": "Content",
1477
+ "text": ", prompt: "
1478
+ },
1479
+ {
1480
+ "kind": "Content",
1481
+ "text": "string"
1482
+ },
1483
+ {
1484
+ "kind": "Content",
1485
+ "text": ", count: "
1486
+ },
1487
+ {
1488
+ "kind": "Content",
1489
+ "text": "number"
1490
+ },
1491
+ {
1492
+ "kind": "Content",
1493
+ "text": ", allAgentInfo?: "
1494
+ },
1495
+ {
1496
+ "kind": "Reference",
1497
+ "text": "AllAgentSummary",
1498
+ "canonicalReference": "@genesislcap/ai-assistant!~AllAgentSummary:interface"
1499
+ },
1500
+ {
1501
+ "kind": "Content",
1502
+ "text": "[]"
1503
+ },
1504
+ {
1505
+ "kind": "Content",
1506
+ "text": "): "
1507
+ },
1508
+ {
1509
+ "kind": "Reference",
1510
+ "text": "Promise",
1511
+ "canonicalReference": "!Promise:interface"
1512
+ },
1513
+ {
1514
+ "kind": "Content",
1515
+ "text": "<string[]>"
1516
+ },
1517
+ {
1518
+ "kind": "Content",
1519
+ "text": ";"
1520
+ }
1521
+ ],
1522
+ "isOptional": false,
1523
+ "returnTypeTokenRange": {
1524
+ "startIndex": 11,
1525
+ "endIndex": 13
1526
+ },
1527
+ "releaseTag": "Beta",
1528
+ "overloadIndex": 1,
1529
+ "parameters": [
1530
+ {
1531
+ "parameterName": "history",
1532
+ "parameterTypeTokenRange": {
1533
+ "startIndex": 1,
1534
+ "endIndex": 3
1535
+ },
1536
+ "isOptional": false
1537
+ },
1538
+ {
1539
+ "parameterName": "prompt",
1540
+ "parameterTypeTokenRange": {
1541
+ "startIndex": 4,
1542
+ "endIndex": 5
1543
+ },
1544
+ "isOptional": false
1545
+ },
1546
+ {
1547
+ "parameterName": "count",
1548
+ "parameterTypeTokenRange": {
1549
+ "startIndex": 6,
1550
+ "endIndex": 7
1551
+ },
1552
+ "isOptional": false
1553
+ },
1554
+ {
1555
+ "parameterName": "allAgentInfo",
1556
+ "parameterTypeTokenRange": {
1557
+ "startIndex": 8,
1558
+ "endIndex": 10
1559
+ },
1560
+ "isOptional": true
1561
+ }
1562
+ ],
1563
+ "name": "getSuggestions"
1564
+ },
1430
1565
  {
1431
1566
  "kind": "MethodSignature",
1432
1567
  "canonicalReference": "@genesislcap/ai-assistant!AiDriver#loadHistory:member(1)",
@@ -2008,6 +2143,117 @@
2008
2143
  "isAbstract": false,
2009
2144
  "name": "getRawHistory"
2010
2145
  },
2146
+ {
2147
+ "kind": "Method",
2148
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#getSuggestions:member(1)",
2149
+ "docComment": "",
2150
+ "excerptTokens": [
2151
+ {
2152
+ "kind": "Content",
2153
+ "text": "getSuggestions(history: "
2154
+ },
2155
+ {
2156
+ "kind": "Reference",
2157
+ "text": "ChatMessage",
2158
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
2159
+ },
2160
+ {
2161
+ "kind": "Content",
2162
+ "text": "[]"
2163
+ },
2164
+ {
2165
+ "kind": "Content",
2166
+ "text": ", prompt: "
2167
+ },
2168
+ {
2169
+ "kind": "Content",
2170
+ "text": "string"
2171
+ },
2172
+ {
2173
+ "kind": "Content",
2174
+ "text": ", count: "
2175
+ },
2176
+ {
2177
+ "kind": "Content",
2178
+ "text": "number"
2179
+ },
2180
+ {
2181
+ "kind": "Content",
2182
+ "text": ", allAgentInfo?: "
2183
+ },
2184
+ {
2185
+ "kind": "Reference",
2186
+ "text": "AllAgentSummary",
2187
+ "canonicalReference": "@genesislcap/ai-assistant!~AllAgentSummary:interface"
2188
+ },
2189
+ {
2190
+ "kind": "Content",
2191
+ "text": "[]"
2192
+ },
2193
+ {
2194
+ "kind": "Content",
2195
+ "text": "): "
2196
+ },
2197
+ {
2198
+ "kind": "Reference",
2199
+ "text": "Promise",
2200
+ "canonicalReference": "!Promise:interface"
2201
+ },
2202
+ {
2203
+ "kind": "Content",
2204
+ "text": "<string[]>"
2205
+ },
2206
+ {
2207
+ "kind": "Content",
2208
+ "text": ";"
2209
+ }
2210
+ ],
2211
+ "isStatic": false,
2212
+ "returnTypeTokenRange": {
2213
+ "startIndex": 11,
2214
+ "endIndex": 13
2215
+ },
2216
+ "releaseTag": "Beta",
2217
+ "isProtected": false,
2218
+ "overloadIndex": 1,
2219
+ "parameters": [
2220
+ {
2221
+ "parameterName": "history",
2222
+ "parameterTypeTokenRange": {
2223
+ "startIndex": 1,
2224
+ "endIndex": 3
2225
+ },
2226
+ "isOptional": false
2227
+ },
2228
+ {
2229
+ "parameterName": "prompt",
2230
+ "parameterTypeTokenRange": {
2231
+ "startIndex": 4,
2232
+ "endIndex": 5
2233
+ },
2234
+ "isOptional": false
2235
+ },
2236
+ {
2237
+ "parameterName": "count",
2238
+ "parameterTypeTokenRange": {
2239
+ "startIndex": 6,
2240
+ "endIndex": 7
2241
+ },
2242
+ "isOptional": false
2243
+ },
2244
+ {
2245
+ "parameterName": "allAgentInfo",
2246
+ "parameterTypeTokenRange": {
2247
+ "startIndex": 8,
2248
+ "endIndex": 10
2249
+ },
2250
+ "isOptional": true
2251
+ }
2252
+ ],
2253
+ "isOptional": false,
2254
+ "isAbstract": false,
2255
+ "name": "getSuggestions"
2256
+ },
2011
2257
  {
2012
2258
  "kind": "Method",
2013
2259
  "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#isBusy:member(1)",
@@ -2320,6 +2566,72 @@
2320
2566
  "isOptional": false,
2321
2567
  "isAbstract": false,
2322
2568
  "name": "sendMessage"
2569
+ },
2570
+ {
2571
+ "kind": "Method",
2572
+ "canonicalReference": "@genesislcap/ai-assistant!ChatDriver#setProviderHistoryTransform:member(1)",
2573
+ "docComment": "/**\n * Optional transform applied to conversation history immediately before each LLM request. Cleared when `undefined`. Does not alter stored history.\n */\n",
2574
+ "excerptTokens": [
2575
+ {
2576
+ "kind": "Content",
2577
+ "text": "setProviderHistoryTransform(transform?: "
2578
+ },
2579
+ {
2580
+ "kind": "Content",
2581
+ "text": "(history: "
2582
+ },
2583
+ {
2584
+ "kind": "Reference",
2585
+ "text": "ChatMessage",
2586
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
2587
+ },
2588
+ {
2589
+ "kind": "Content",
2590
+ "text": "[]) => "
2591
+ },
2592
+ {
2593
+ "kind": "Reference",
2594
+ "text": "ChatMessage",
2595
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
2596
+ },
2597
+ {
2598
+ "kind": "Content",
2599
+ "text": "[]"
2600
+ },
2601
+ {
2602
+ "kind": "Content",
2603
+ "text": "): "
2604
+ },
2605
+ {
2606
+ "kind": "Content",
2607
+ "text": "void"
2608
+ },
2609
+ {
2610
+ "kind": "Content",
2611
+ "text": ";"
2612
+ }
2613
+ ],
2614
+ "isStatic": false,
2615
+ "returnTypeTokenRange": {
2616
+ "startIndex": 7,
2617
+ "endIndex": 8
2618
+ },
2619
+ "releaseTag": "Beta",
2620
+ "isProtected": false,
2621
+ "overloadIndex": 1,
2622
+ "parameters": [
2623
+ {
2624
+ "parameterName": "transform",
2625
+ "parameterTypeTokenRange": {
2626
+ "startIndex": 1,
2627
+ "endIndex": 6
2628
+ },
2629
+ "isOptional": true
2630
+ }
2631
+ ],
2632
+ "isOptional": false,
2633
+ "isAbstract": false,
2634
+ "name": "setProviderHistoryTransform"
2323
2635
  }
2324
2636
  ],
2325
2637
  "extendsTokenRange": {
@@ -2723,17 +3035,48 @@
2723
3035
  "text": ";"
2724
3036
  }
2725
3037
  ],
2726
- "isReadonly": false,
2727
- "isOptional": false,
2728
- "releaseTag": "Beta",
2729
- "name": "chatConfig",
2730
- "propertyTypeTokenRange": {
3038
+ "isReadonly": false,
3039
+ "isOptional": false,
3040
+ "releaseTag": "Beta",
3041
+ "name": "chatConfig",
3042
+ "propertyTypeTokenRange": {
3043
+ "startIndex": 1,
3044
+ "endIndex": 2
3045
+ },
3046
+ "isStatic": false,
3047
+ "isProtected": false,
3048
+ "isAbstract": false
3049
+ },
3050
+ {
3051
+ "kind": "Method",
3052
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#chatConfigChanged:member(1)",
3053
+ "docComment": "",
3054
+ "excerptTokens": [
3055
+ {
3056
+ "kind": "Content",
3057
+ "text": "chatConfigChanged(): "
3058
+ },
3059
+ {
3060
+ "kind": "Content",
3061
+ "text": "void"
3062
+ },
3063
+ {
3064
+ "kind": "Content",
3065
+ "text": ";"
3066
+ }
3067
+ ],
3068
+ "isStatic": false,
3069
+ "returnTypeTokenRange": {
2731
3070
  "startIndex": 1,
2732
3071
  "endIndex": 2
2733
3072
  },
2734
- "isStatic": false,
3073
+ "releaseTag": "Beta",
2735
3074
  "isProtected": false,
2736
- "isAbstract": false
3075
+ "overloadIndex": 1,
3076
+ "parameters": [],
3077
+ "isOptional": false,
3078
+ "isAbstract": false,
3079
+ "name": "chatConfigChanged"
2737
3080
  },
2738
3081
  {
2739
3082
  "kind": "Method",
@@ -3141,6 +3484,54 @@
3141
3484
  "isAbstract": false,
3142
3485
  "name": "handleSendClick"
3143
3486
  },
3487
+ {
3488
+ "kind": "Method",
3489
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handleSuggestionClick:member(1)",
3490
+ "docComment": "",
3491
+ "excerptTokens": [
3492
+ {
3493
+ "kind": "Content",
3494
+ "text": "handleSuggestionClick(suggestion: "
3495
+ },
3496
+ {
3497
+ "kind": "Content",
3498
+ "text": "string"
3499
+ },
3500
+ {
3501
+ "kind": "Content",
3502
+ "text": "): "
3503
+ },
3504
+ {
3505
+ "kind": "Content",
3506
+ "text": "void"
3507
+ },
3508
+ {
3509
+ "kind": "Content",
3510
+ "text": ";"
3511
+ }
3512
+ ],
3513
+ "isStatic": false,
3514
+ "returnTypeTokenRange": {
3515
+ "startIndex": 3,
3516
+ "endIndex": 4
3517
+ },
3518
+ "releaseTag": "Beta",
3519
+ "isProtected": false,
3520
+ "overloadIndex": 1,
3521
+ "parameters": [
3522
+ {
3523
+ "parameterName": "suggestion",
3524
+ "parameterTypeTokenRange": {
3525
+ "startIndex": 1,
3526
+ "endIndex": 2
3527
+ },
3528
+ "isOptional": false
3529
+ }
3530
+ ],
3531
+ "isOptional": false,
3532
+ "isAbstract": false,
3533
+ "name": "handleSuggestionClick"
3534
+ },
3144
3535
  {
3145
3536
  "kind": "Property",
3146
3537
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#hasActivePendingInteraction:member",
@@ -3708,6 +4099,67 @@
3708
4099
  "isAbstract": false,
3709
4100
  "name": "showHaloChanged"
3710
4101
  },
4102
+ {
4103
+ "kind": "Property",
4104
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showingSplash:member",
4105
+ "docComment": "/**\n * Whether the splash overlay is currently showing (no messages and showSplash is enabled). Reflected as a boolean attribute on the host.\n */\n",
4106
+ "excerptTokens": [
4107
+ {
4108
+ "kind": "Content",
4109
+ "text": "showingSplash: "
4110
+ },
4111
+ {
4112
+ "kind": "Content",
4113
+ "text": "boolean"
4114
+ },
4115
+ {
4116
+ "kind": "Content",
4117
+ "text": ";"
4118
+ }
4119
+ ],
4120
+ "isReadonly": false,
4121
+ "isOptional": false,
4122
+ "releaseTag": "Beta",
4123
+ "name": "showingSplash",
4124
+ "propertyTypeTokenRange": {
4125
+ "startIndex": 1,
4126
+ "endIndex": 2
4127
+ },
4128
+ "isStatic": false,
4129
+ "isProtected": false,
4130
+ "isAbstract": false
4131
+ },
4132
+ {
4133
+ "kind": "Method",
4134
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showingSplashChanged:member(1)",
4135
+ "docComment": "",
4136
+ "excerptTokens": [
4137
+ {
4138
+ "kind": "Content",
4139
+ "text": "showingSplashChanged(): "
4140
+ },
4141
+ {
4142
+ "kind": "Content",
4143
+ "text": "void"
4144
+ },
4145
+ {
4146
+ "kind": "Content",
4147
+ "text": ";"
4148
+ }
4149
+ ],
4150
+ "isStatic": false,
4151
+ "returnTypeTokenRange": {
4152
+ "startIndex": 1,
4153
+ "endIndex": 2
4154
+ },
4155
+ "releaseTag": "Beta",
4156
+ "isProtected": false,
4157
+ "overloadIndex": 1,
4158
+ "parameters": [],
4159
+ "isOptional": false,
4160
+ "isAbstract": false,
4161
+ "name": "showingSplashChanged"
4162
+ },
3711
4163
  {
3712
4164
  "kind": "Property",
3713
4165
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showLoadingIndicator:member",
@@ -3891,6 +4343,37 @@
3891
4343
  "isAbstract": false,
3892
4344
  "name": "stateChanged"
3893
4345
  },
4346
+ {
4347
+ "kind": "Property",
4348
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#suggestionsState:member",
4349
+ "docComment": "",
4350
+ "excerptTokens": [
4351
+ {
4352
+ "kind": "Content",
4353
+ "text": "suggestionsState: "
4354
+ },
4355
+ {
4356
+ "kind": "Reference",
4357
+ "text": "SuggestionsState",
4358
+ "canonicalReference": "@genesislcap/ai-assistant!SuggestionsState:type"
4359
+ },
4360
+ {
4361
+ "kind": "Content",
4362
+ "text": ";"
4363
+ }
4364
+ ],
4365
+ "isReadonly": false,
4366
+ "isOptional": false,
4367
+ "releaseTag": "Beta",
4368
+ "name": "suggestionsState",
4369
+ "propertyTypeTokenRange": {
4370
+ "startIndex": 1,
4371
+ "endIndex": 2
4372
+ },
4373
+ "isStatic": false,
4374
+ "isProtected": false,
4375
+ "isAbstract": false
4376
+ },
3894
4377
  {
3895
4378
  "kind": "Method",
3896
4379
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleSettings:member(1)",
@@ -4658,6 +5141,117 @@
4658
5141
  "isAbstract": false,
4659
5142
  "name": "getRawHistory"
4660
5143
  },
5144
+ {
5145
+ "kind": "Method",
5146
+ "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#getSuggestions:member(1)",
5147
+ "docComment": "",
5148
+ "excerptTokens": [
5149
+ {
5150
+ "kind": "Content",
5151
+ "text": "getSuggestions(history: "
5152
+ },
5153
+ {
5154
+ "kind": "Reference",
5155
+ "text": "ChatMessage",
5156
+ "canonicalReference": "@genesislcap/foundation-ai!ChatMessage:interface"
5157
+ },
5158
+ {
5159
+ "kind": "Content",
5160
+ "text": "[]"
5161
+ },
5162
+ {
5163
+ "kind": "Content",
5164
+ "text": ", prompt: "
5165
+ },
5166
+ {
5167
+ "kind": "Content",
5168
+ "text": "string"
5169
+ },
5170
+ {
5171
+ "kind": "Content",
5172
+ "text": ", count: "
5173
+ },
5174
+ {
5175
+ "kind": "Content",
5176
+ "text": "number"
5177
+ },
5178
+ {
5179
+ "kind": "Content",
5180
+ "text": ", allAgentInfo?: "
5181
+ },
5182
+ {
5183
+ "kind": "Reference",
5184
+ "text": "AllAgentSummary",
5185
+ "canonicalReference": "@genesislcap/ai-assistant!~AllAgentSummary:interface"
5186
+ },
5187
+ {
5188
+ "kind": "Content",
5189
+ "text": "[]"
5190
+ },
5191
+ {
5192
+ "kind": "Content",
5193
+ "text": "): "
5194
+ },
5195
+ {
5196
+ "kind": "Reference",
5197
+ "text": "Promise",
5198
+ "canonicalReference": "!Promise:interface"
5199
+ },
5200
+ {
5201
+ "kind": "Content",
5202
+ "text": "<string[]>"
5203
+ },
5204
+ {
5205
+ "kind": "Content",
5206
+ "text": ";"
5207
+ }
5208
+ ],
5209
+ "isStatic": false,
5210
+ "returnTypeTokenRange": {
5211
+ "startIndex": 11,
5212
+ "endIndex": 13
5213
+ },
5214
+ "releaseTag": "Beta",
5215
+ "isProtected": false,
5216
+ "overloadIndex": 1,
5217
+ "parameters": [
5218
+ {
5219
+ "parameterName": "history",
5220
+ "parameterTypeTokenRange": {
5221
+ "startIndex": 1,
5222
+ "endIndex": 3
5223
+ },
5224
+ "isOptional": false
5225
+ },
5226
+ {
5227
+ "parameterName": "prompt",
5228
+ "parameterTypeTokenRange": {
5229
+ "startIndex": 4,
5230
+ "endIndex": 5
5231
+ },
5232
+ "isOptional": false
5233
+ },
5234
+ {
5235
+ "parameterName": "count",
5236
+ "parameterTypeTokenRange": {
5237
+ "startIndex": 6,
5238
+ "endIndex": 7
5239
+ },
5240
+ "isOptional": false
5241
+ },
5242
+ {
5243
+ "parameterName": "allAgentInfo",
5244
+ "parameterTypeTokenRange": {
5245
+ "startIndex": 8,
5246
+ "endIndex": 10
5247
+ },
5248
+ "isOptional": true
5249
+ }
5250
+ ],
5251
+ "isOptional": false,
5252
+ "isAbstract": false,
5253
+ "name": "getSuggestions"
5254
+ },
4661
5255
  {
4662
5256
  "kind": "Method",
4663
5257
  "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#loadHistory:member(1)",
@@ -5032,6 +5626,32 @@
5032
5626
  "startIndex": 1,
5033
5627
  "endIndex": 2
5034
5628
  }
5629
+ },
5630
+ {
5631
+ "kind": "TypeAlias",
5632
+ "canonicalReference": "@genesislcap/ai-assistant!SuggestionsState:type",
5633
+ "docComment": "/**\n * State of the chat suggestions feature.\n *\n * @beta\n */\n",
5634
+ "excerptTokens": [
5635
+ {
5636
+ "kind": "Content",
5637
+ "text": "export type SuggestionsState = "
5638
+ },
5639
+ {
5640
+ "kind": "Content",
5641
+ "text": "{\n status: 'idle';\n} | {\n status: 'loading';\n} | {\n status: 'loaded';\n suggestions: string[];\n} | {\n status: 'error';\n message: string;\n}"
5642
+ },
5643
+ {
5644
+ "kind": "Content",
5645
+ "text": ";"
5646
+ }
5647
+ ],
5648
+ "fileUrlPath": "src/main/main.types.ts",
5649
+ "releaseTag": "Beta",
5650
+ "name": "SuggestionsState",
5651
+ "typeTokenRange": {
5652
+ "startIndex": 1,
5653
+ "endIndex": 2
5654
+ }
5035
5655
  }
5036
5656
  ]
5037
5657
  }