@genesislcap/ai-assistant 14.479.0 → 14.480.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/ai-assistant.api.json +546 -2
  2. package/dist/ai-assistant.d.ts +73 -1
  3. package/dist/dts/components/ai-driver/ai-driver.d.ts +8 -0
  4. package/dist/dts/components/ai-driver/ai-driver.d.ts.map +1 -1
  5. package/dist/dts/components/chat-driver/chat-driver.d.ts +32 -0
  6. package/dist/dts/components/chat-driver/chat-driver.d.ts.map +1 -1
  7. package/dist/dts/components/chat-driver/chat-driver.test.d.ts.map +1 -1
  8. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.d.ts +7 -0
  9. package/dist/dts/components/chat-interaction-wrapper/chat-interaction-wrapper.d.ts.map +1 -1
  10. package/dist/dts/components/flowing-waves-indicator.d.ts +1 -1
  11. package/dist/dts/components/flowing-waves-indicator.d.ts.map +1 -1
  12. package/dist/dts/components/halo-overlay.d.ts +1 -0
  13. package/dist/dts/components/halo-overlay.d.ts.map +1 -1
  14. package/dist/dts/components/orchestrating-driver/orchestrating-driver.d.ts +4 -0
  15. package/dist/dts/components/orchestrating-driver/orchestrating-driver.d.ts.map +1 -1
  16. package/dist/dts/components/settings-modal/settings-modal.styles.d.ts.map +1 -1
  17. package/dist/dts/components/settings-modal/settings-modal.template.d.ts.map +1 -1
  18. package/dist/dts/components/waves-indicator.d.ts +1 -1
  19. package/dist/dts/components/waves-indicator.d.ts.map +1 -1
  20. package/dist/dts/main/main.d.ts +29 -1
  21. package/dist/dts/main/main.d.ts.map +1 -1
  22. package/dist/dts/main/main.styles.d.ts.map +1 -1
  23. package/dist/dts/main/main.template.d.ts.map +1 -1
  24. package/dist/dts/state/ai-assistant-slice.d.ts +2 -0
  25. package/dist/dts/state/ai-assistant-slice.d.ts.map +1 -1
  26. package/dist/dts/state/session-store.d.ts +1 -0
  27. package/dist/dts/state/session-store.d.ts.map +1 -1
  28. package/dist/dts/utils/message-partition.d.ts +1 -0
  29. package/dist/dts/utils/message-partition.d.ts.map +1 -1
  30. package/dist/esm/components/chat-driver/chat-driver.js +88 -8
  31. package/dist/esm/components/chat-driver/chat-driver.test.js +104 -0
  32. package/dist/esm/components/chat-interaction-wrapper/chat-interaction-wrapper.js +48 -6
  33. package/dist/esm/components/chat-interaction-wrapper/chat-interaction-wrapper.test.js +62 -0
  34. package/dist/esm/components/flowing-waves-indicator.js +22 -11
  35. package/dist/esm/components/halo-overlay.js +30 -6
  36. package/dist/esm/components/orchestrating-driver/orchestrating-driver.js +14 -0
  37. package/dist/esm/components/settings-modal/settings-modal.styles.js +7 -0
  38. package/dist/esm/components/settings-modal/settings-modal.template.js +18 -8
  39. package/dist/esm/components/waves-indicator.js +22 -8
  40. package/dist/esm/main/main.js +73 -6
  41. package/dist/esm/main/main.styles.js +6 -0
  42. package/dist/esm/main/main.template.js +21 -2
  43. package/dist/esm/state/ai-assistant-slice.js +4 -0
  44. package/dist/esm/utils/message-partition.js +10 -1
  45. package/dist/esm/utils/message-partition.test.js +2 -0
  46. package/package.json +17 -17
  47. package/src/components/ai-driver/ai-driver.ts +17 -0
  48. package/src/components/chat-driver/chat-driver.test.ts +143 -0
  49. package/src/components/chat-driver/chat-driver.ts +105 -4
  50. package/src/components/chat-interaction-wrapper/chat-interaction-wrapper.test.ts +81 -0
  51. package/src/components/chat-interaction-wrapper/chat-interaction-wrapper.ts +51 -5
  52. package/src/components/flowing-waves-indicator.ts +26 -6
  53. package/src/components/halo-overlay.ts +31 -6
  54. package/src/components/orchestrating-driver/orchestrating-driver.ts +18 -0
  55. package/src/components/settings-modal/settings-modal.styles.ts +7 -0
  56. package/src/components/settings-modal/settings-modal.template.ts +36 -16
  57. package/src/components/waves-indicator.ts +25 -5
  58. package/src/main/main.styles.ts +6 -0
  59. package/src/main/main.template.ts +25 -2
  60. package/src/main/main.ts +65 -1
  61. package/src/state/ai-assistant-slice.ts +5 -0
  62. package/src/utils/message-partition.test.ts +2 -0
  63. package/src/utils/message-partition.ts +11 -1
@@ -2038,6 +2038,67 @@
2038
2038
  "parameters": [],
2039
2039
  "name": "cancel"
2040
2040
  },
2041
+ {
2042
+ "kind": "MethodSignature",
2043
+ "canonicalReference": "@genesislcap/ai-assistant!AiDriver#claimSideEffect:member(1)",
2044
+ "docComment": "/**\n * First-writer-wins latch: the first host to claim an interaction id runs its side effect.\n */\n",
2045
+ "excerptTokens": [
2046
+ {
2047
+ "kind": "Content",
2048
+ "text": "claimSideEffect?(interactionId: "
2049
+ },
2050
+ {
2051
+ "kind": "Content",
2052
+ "text": "string"
2053
+ },
2054
+ {
2055
+ "kind": "Content",
2056
+ "text": ", hostId: "
2057
+ },
2058
+ {
2059
+ "kind": "Content",
2060
+ "text": "string"
2061
+ },
2062
+ {
2063
+ "kind": "Content",
2064
+ "text": "): "
2065
+ },
2066
+ {
2067
+ "kind": "Content",
2068
+ "text": "boolean"
2069
+ },
2070
+ {
2071
+ "kind": "Content",
2072
+ "text": ";"
2073
+ }
2074
+ ],
2075
+ "isOptional": true,
2076
+ "returnTypeTokenRange": {
2077
+ "startIndex": 5,
2078
+ "endIndex": 6
2079
+ },
2080
+ "releaseTag": "Beta",
2081
+ "overloadIndex": 1,
2082
+ "parameters": [
2083
+ {
2084
+ "parameterName": "interactionId",
2085
+ "parameterTypeTokenRange": {
2086
+ "startIndex": 1,
2087
+ "endIndex": 2
2088
+ },
2089
+ "isOptional": false
2090
+ },
2091
+ {
2092
+ "parameterName": "hostId",
2093
+ "parameterTypeTokenRange": {
2094
+ "startIndex": 3,
2095
+ "endIndex": 4
2096
+ },
2097
+ "isOptional": false
2098
+ }
2099
+ ],
2100
+ "name": "claimSideEffect"
2101
+ },
2041
2102
  {
2042
2103
  "kind": "MethodSignature",
2043
2104
  "canonicalReference": "@genesislcap/ai-assistant!AiDriver#continueFromHistory:member(1)",
@@ -2432,6 +2493,51 @@
2432
2493
  ],
2433
2494
  "name": "loadHistory"
2434
2495
  },
2496
+ {
2497
+ "kind": "MethodSignature",
2498
+ "canonicalReference": "@genesislcap/ai-assistant!AiDriver#registerHost:member(1)",
2499
+ "docComment": "/**\n * Register an assistant view (host) wired to this driver.\n */\n",
2500
+ "excerptTokens": [
2501
+ {
2502
+ "kind": "Content",
2503
+ "text": "registerHost?(hostId: "
2504
+ },
2505
+ {
2506
+ "kind": "Content",
2507
+ "text": "string"
2508
+ },
2509
+ {
2510
+ "kind": "Content",
2511
+ "text": "): "
2512
+ },
2513
+ {
2514
+ "kind": "Content",
2515
+ "text": "void"
2516
+ },
2517
+ {
2518
+ "kind": "Content",
2519
+ "text": ";"
2520
+ }
2521
+ ],
2522
+ "isOptional": true,
2523
+ "returnTypeTokenRange": {
2524
+ "startIndex": 3,
2525
+ "endIndex": 4
2526
+ },
2527
+ "releaseTag": "Beta",
2528
+ "overloadIndex": 1,
2529
+ "parameters": [
2530
+ {
2531
+ "parameterName": "hostId",
2532
+ "parameterTypeTokenRange": {
2533
+ "startIndex": 1,
2534
+ "endIndex": 2
2535
+ },
2536
+ "isOptional": false
2537
+ }
2538
+ ],
2539
+ "name": "registerHost"
2540
+ },
2435
2541
  {
2436
2542
  "kind": "MethodSignature",
2437
2543
  "canonicalReference": "@genesislcap/ai-assistant!AiDriver#resolveInteraction:member(1)",
@@ -2572,6 +2678,96 @@
2572
2678
  }
2573
2679
  ],
2574
2680
  "name": "sendMessage"
2681
+ },
2682
+ {
2683
+ "kind": "MethodSignature",
2684
+ "canonicalReference": "@genesislcap/ai-assistant!AiDriver#setActiveHost:member(1)",
2685
+ "docComment": "/**\n * Record the host whose subtree the user most recently interacted in (owner election signal).\n */\n",
2686
+ "excerptTokens": [
2687
+ {
2688
+ "kind": "Content",
2689
+ "text": "setActiveHost?(hostId: "
2690
+ },
2691
+ {
2692
+ "kind": "Content",
2693
+ "text": "string"
2694
+ },
2695
+ {
2696
+ "kind": "Content",
2697
+ "text": "): "
2698
+ },
2699
+ {
2700
+ "kind": "Content",
2701
+ "text": "void"
2702
+ },
2703
+ {
2704
+ "kind": "Content",
2705
+ "text": ";"
2706
+ }
2707
+ ],
2708
+ "isOptional": true,
2709
+ "returnTypeTokenRange": {
2710
+ "startIndex": 3,
2711
+ "endIndex": 4
2712
+ },
2713
+ "releaseTag": "Beta",
2714
+ "overloadIndex": 1,
2715
+ "parameters": [
2716
+ {
2717
+ "parameterName": "hostId",
2718
+ "parameterTypeTokenRange": {
2719
+ "startIndex": 1,
2720
+ "endIndex": 2
2721
+ },
2722
+ "isOptional": false
2723
+ }
2724
+ ],
2725
+ "name": "setActiveHost"
2726
+ },
2727
+ {
2728
+ "kind": "MethodSignature",
2729
+ "canonicalReference": "@genesislcap/ai-assistant!AiDriver#unregisterHost:member(1)",
2730
+ "docComment": "/**\n * Deregister a host on unwire/disconnect.\n */\n",
2731
+ "excerptTokens": [
2732
+ {
2733
+ "kind": "Content",
2734
+ "text": "unregisterHost?(hostId: "
2735
+ },
2736
+ {
2737
+ "kind": "Content",
2738
+ "text": "string"
2739
+ },
2740
+ {
2741
+ "kind": "Content",
2742
+ "text": "): "
2743
+ },
2744
+ {
2745
+ "kind": "Content",
2746
+ "text": "void"
2747
+ },
2748
+ {
2749
+ "kind": "Content",
2750
+ "text": ";"
2751
+ }
2752
+ ],
2753
+ "isOptional": true,
2754
+ "returnTypeTokenRange": {
2755
+ "startIndex": 3,
2756
+ "endIndex": 4
2757
+ },
2758
+ "releaseTag": "Beta",
2759
+ "overloadIndex": 1,
2760
+ "parameters": [
2761
+ {
2762
+ "parameterName": "hostId",
2763
+ "parameterTypeTokenRange": {
2764
+ "startIndex": 1,
2765
+ "endIndex": 2
2766
+ },
2767
+ "isOptional": false
2768
+ }
2769
+ ],
2770
+ "name": "unregisterHost"
2575
2771
  }
2576
2772
  ],
2577
2773
  "extendsTokenRanges": [
@@ -6005,6 +6201,85 @@
6005
6201
  "isProtected": false,
6006
6202
  "isAbstract": false
6007
6203
  },
6204
+ {
6205
+ "kind": "Method",
6206
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#claimInteractionOwnership:member(1)",
6207
+ "docComment": "/**\n * GENC-1410 (Error 3): mark THIS view as the interaction owner on the shared driver, so it (not a sibling view sharing the same driver) is elected to render side-effecting widgets. The bubble and docked panel normally claim this automatically on the pop-in / dock lifecycle, but that lifecycle only runs once `popout-mode` is active. A host that establishes a view outside that lifecycle — e.g. a page that restores a docked assistant from a persisted layout before the pop-out affordance is enabled — calls this to seize ownership deterministically rather than leaving it to the last-interaction / first-registered fallback. Idempotent; safe to call on every layout (re)establish. No-op if the driver was never wired.\n */\n",
6208
+ "excerptTokens": [
6209
+ {
6210
+ "kind": "Content",
6211
+ "text": "claimInteractionOwnership(): "
6212
+ },
6213
+ {
6214
+ "kind": "Content",
6215
+ "text": "void"
6216
+ },
6217
+ {
6218
+ "kind": "Content",
6219
+ "text": ";"
6220
+ }
6221
+ ],
6222
+ "isStatic": false,
6223
+ "returnTypeTokenRange": {
6224
+ "startIndex": 1,
6225
+ "endIndex": 2
6226
+ },
6227
+ "releaseTag": "Beta",
6228
+ "isProtected": false,
6229
+ "overloadIndex": 1,
6230
+ "parameters": [],
6231
+ "isOptional": false,
6232
+ "isAbstract": false,
6233
+ "name": "claimInteractionOwnership"
6234
+ },
6235
+ {
6236
+ "kind": "Method",
6237
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#claimSideEffect:member(1)",
6238
+ "docComment": "/**\n * GENC-1410 (Error 3): claim the right to run a side-effecting interaction's server work for THIS view, via the shared driver's first-writer-wins latch. Returns `true` when this view may run it (first/owning claimant, or a re-render of the same view), `false` when another view already holds it. Fail-open when the driver has no latch. Called by `ai-chat-interaction-wrapper`.\n */\n",
6239
+ "excerptTokens": [
6240
+ {
6241
+ "kind": "Content",
6242
+ "text": "claimSideEffect(interactionId: "
6243
+ },
6244
+ {
6245
+ "kind": "Content",
6246
+ "text": "string"
6247
+ },
6248
+ {
6249
+ "kind": "Content",
6250
+ "text": "): "
6251
+ },
6252
+ {
6253
+ "kind": "Content",
6254
+ "text": "boolean"
6255
+ },
6256
+ {
6257
+ "kind": "Content",
6258
+ "text": ";"
6259
+ }
6260
+ ],
6261
+ "isStatic": false,
6262
+ "returnTypeTokenRange": {
6263
+ "startIndex": 3,
6264
+ "endIndex": 4
6265
+ },
6266
+ "releaseTag": "Beta",
6267
+ "isProtected": false,
6268
+ "overloadIndex": 1,
6269
+ "parameters": [
6270
+ {
6271
+ "parameterName": "interactionId",
6272
+ "parameterTypeTokenRange": {
6273
+ "startIndex": 1,
6274
+ "endIndex": 2
6275
+ },
6276
+ "isOptional": false
6277
+ }
6278
+ ],
6279
+ "isOptional": false,
6280
+ "isAbstract": false,
6281
+ "name": "claimSideEffect"
6282
+ },
6008
6283
  {
6009
6284
  "kind": "Method",
6010
6285
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#clearCostSessionHistory:member(1)",
@@ -7035,7 +7310,7 @@
7035
7310
  {
7036
7311
  "kind": "Method",
7037
7312
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#handlePopout:member(1)",
7038
- "docComment": "/**\n * Called when the user clicks the popout button.\n */\n",
7313
+ "docComment": "",
7039
7314
  "excerptTokens": [
7040
7315
  {
7041
7316
  "kind": "Content",
@@ -7176,7 +7451,7 @@
7176
7451
  {
7177
7452
  "kind": "Property",
7178
7453
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#hasActivePendingInteraction:member",
7179
- "docComment": "/**\n * True when there is a pending (unresolved) interaction — disables the popout button.\n */\n",
7454
+ "docComment": "/**\n * True when there is a pending (unresolved) interaction.\n */\n",
7180
7455
  "excerptTokens": [
7181
7456
  {
7182
7457
  "kind": "Content",
@@ -9443,6 +9718,36 @@
9443
9718
  "isAbstract": false,
9444
9719
  "name": "showLoadingIndicatorChanged"
9445
9720
  },
9721
+ {
9722
+ "kind": "Property",
9723
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showNarration:member",
9724
+ "docComment": "/**\n * Current user-facing toggle state for narration (interstitial prose) visibility.\n */\n",
9725
+ "excerptTokens": [
9726
+ {
9727
+ "kind": "Content",
9728
+ "text": "get showNarration(): "
9729
+ },
9730
+ {
9731
+ "kind": "Content",
9732
+ "text": "boolean"
9733
+ },
9734
+ {
9735
+ "kind": "Content",
9736
+ "text": ";\n\nset showNarration(value: boolean);"
9737
+ }
9738
+ ],
9739
+ "isReadonly": false,
9740
+ "isOptional": false,
9741
+ "releaseTag": "Beta",
9742
+ "name": "showNarration",
9743
+ "propertyTypeTokenRange": {
9744
+ "startIndex": 1,
9745
+ "endIndex": 2
9746
+ },
9747
+ "isStatic": false,
9748
+ "isProtected": false,
9749
+ "isAbstract": false
9750
+ },
9446
9751
  {
9447
9752
  "kind": "Property",
9448
9753
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#showThinkingSteps:member",
@@ -9716,6 +10021,37 @@
9716
10021
  "isAbstract": false,
9717
10022
  "name": "toggleShowAgentSwitchIndicator"
9718
10023
  },
10024
+ {
10025
+ "kind": "Method",
10026
+ "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleShowNarration:member(1)",
10027
+ "docComment": "",
10028
+ "excerptTokens": [
10029
+ {
10030
+ "kind": "Content",
10031
+ "text": "toggleShowNarration(): "
10032
+ },
10033
+ {
10034
+ "kind": "Content",
10035
+ "text": "void"
10036
+ },
10037
+ {
10038
+ "kind": "Content",
10039
+ "text": ";"
10040
+ }
10041
+ ],
10042
+ "isStatic": false,
10043
+ "returnTypeTokenRange": {
10044
+ "startIndex": 1,
10045
+ "endIndex": 2
10046
+ },
10047
+ "releaseTag": "Beta",
10048
+ "isProtected": false,
10049
+ "overloadIndex": 1,
10050
+ "parameters": [],
10051
+ "isOptional": false,
10052
+ "isAbstract": false,
10053
+ "name": "toggleShowNarration"
10054
+ },
9719
10055
  {
9720
10056
  "kind": "Method",
9721
10057
  "canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleShowThinkingSteps:member(1)",
@@ -10598,6 +10934,70 @@
10598
10934
  "isAbstract": false,
10599
10935
  "name": "cancel"
10600
10936
  },
10937
+ {
10938
+ "kind": "Method",
10939
+ "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#claimSideEffect:member(1)",
10940
+ "docComment": "",
10941
+ "excerptTokens": [
10942
+ {
10943
+ "kind": "Content",
10944
+ "text": "claimSideEffect(interactionId: "
10945
+ },
10946
+ {
10947
+ "kind": "Content",
10948
+ "text": "string"
10949
+ },
10950
+ {
10951
+ "kind": "Content",
10952
+ "text": ", hostId: "
10953
+ },
10954
+ {
10955
+ "kind": "Content",
10956
+ "text": "string"
10957
+ },
10958
+ {
10959
+ "kind": "Content",
10960
+ "text": "): "
10961
+ },
10962
+ {
10963
+ "kind": "Content",
10964
+ "text": "boolean"
10965
+ },
10966
+ {
10967
+ "kind": "Content",
10968
+ "text": ";"
10969
+ }
10970
+ ],
10971
+ "isStatic": false,
10972
+ "returnTypeTokenRange": {
10973
+ "startIndex": 5,
10974
+ "endIndex": 6
10975
+ },
10976
+ "releaseTag": "Beta",
10977
+ "isProtected": false,
10978
+ "overloadIndex": 1,
10979
+ "parameters": [
10980
+ {
10981
+ "parameterName": "interactionId",
10982
+ "parameterTypeTokenRange": {
10983
+ "startIndex": 1,
10984
+ "endIndex": 2
10985
+ },
10986
+ "isOptional": false
10987
+ },
10988
+ {
10989
+ "parameterName": "hostId",
10990
+ "parameterTypeTokenRange": {
10991
+ "startIndex": 3,
10992
+ "endIndex": 4
10993
+ },
10994
+ "isOptional": false
10995
+ }
10996
+ ],
10997
+ "isOptional": false,
10998
+ "isAbstract": false,
10999
+ "name": "claimSideEffect"
11000
+ },
10601
11001
  {
10602
11002
  "kind": "Method",
10603
11003
  "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#continueFromHistory:member(1)",
@@ -11012,6 +11412,54 @@
11012
11412
  "isAbstract": false,
11013
11413
  "name": "loadHistory"
11014
11414
  },
11415
+ {
11416
+ "kind": "Method",
11417
+ "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#registerHost:member(1)",
11418
+ "docComment": "",
11419
+ "excerptTokens": [
11420
+ {
11421
+ "kind": "Content",
11422
+ "text": "registerHost(hostId: "
11423
+ },
11424
+ {
11425
+ "kind": "Content",
11426
+ "text": "string"
11427
+ },
11428
+ {
11429
+ "kind": "Content",
11430
+ "text": "): "
11431
+ },
11432
+ {
11433
+ "kind": "Content",
11434
+ "text": "void"
11435
+ },
11436
+ {
11437
+ "kind": "Content",
11438
+ "text": ";"
11439
+ }
11440
+ ],
11441
+ "isStatic": false,
11442
+ "returnTypeTokenRange": {
11443
+ "startIndex": 3,
11444
+ "endIndex": 4
11445
+ },
11446
+ "releaseTag": "Beta",
11447
+ "isProtected": false,
11448
+ "overloadIndex": 1,
11449
+ "parameters": [
11450
+ {
11451
+ "parameterName": "hostId",
11452
+ "parameterTypeTokenRange": {
11453
+ "startIndex": 1,
11454
+ "endIndex": 2
11455
+ },
11456
+ "isOptional": false
11457
+ }
11458
+ ],
11459
+ "isOptional": false,
11460
+ "isAbstract": false,
11461
+ "name": "registerHost"
11462
+ },
11015
11463
  {
11016
11464
  "kind": "Method",
11017
11465
  "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#resolveInteraction:member(1)",
@@ -11159,6 +11607,54 @@
11159
11607
  "isAbstract": false,
11160
11608
  "name": "sendMessage"
11161
11609
  },
11610
+ {
11611
+ "kind": "Method",
11612
+ "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#setActiveHost:member(1)",
11613
+ "docComment": "",
11614
+ "excerptTokens": [
11615
+ {
11616
+ "kind": "Content",
11617
+ "text": "setActiveHost(hostId: "
11618
+ },
11619
+ {
11620
+ "kind": "Content",
11621
+ "text": "string"
11622
+ },
11623
+ {
11624
+ "kind": "Content",
11625
+ "text": "): "
11626
+ },
11627
+ {
11628
+ "kind": "Content",
11629
+ "text": "void"
11630
+ },
11631
+ {
11632
+ "kind": "Content",
11633
+ "text": ";"
11634
+ }
11635
+ ],
11636
+ "isStatic": false,
11637
+ "returnTypeTokenRange": {
11638
+ "startIndex": 3,
11639
+ "endIndex": 4
11640
+ },
11641
+ "releaseTag": "Beta",
11642
+ "isProtected": false,
11643
+ "overloadIndex": 1,
11644
+ "parameters": [
11645
+ {
11646
+ "parameterName": "hostId",
11647
+ "parameterTypeTokenRange": {
11648
+ "startIndex": 1,
11649
+ "endIndex": 2
11650
+ },
11651
+ "isOptional": false
11652
+ }
11653
+ ],
11654
+ "isOptional": false,
11655
+ "isAbstract": false,
11656
+ "name": "setActiveHost"
11657
+ },
11162
11658
  {
11163
11659
  "kind": "Method",
11164
11660
  "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#setFlowOwner:member(1)",
@@ -11254,6 +11750,54 @@
11254
11750
  "isOptional": false,
11255
11751
  "isAbstract": false,
11256
11752
  "name": "setPinnedAgent"
11753
+ },
11754
+ {
11755
+ "kind": "Method",
11756
+ "canonicalReference": "@genesislcap/ai-assistant!OrchestratingDriver#unregisterHost:member(1)",
11757
+ "docComment": "",
11758
+ "excerptTokens": [
11759
+ {
11760
+ "kind": "Content",
11761
+ "text": "unregisterHost(hostId: "
11762
+ },
11763
+ {
11764
+ "kind": "Content",
11765
+ "text": "string"
11766
+ },
11767
+ {
11768
+ "kind": "Content",
11769
+ "text": "): "
11770
+ },
11771
+ {
11772
+ "kind": "Content",
11773
+ "text": "void"
11774
+ },
11775
+ {
11776
+ "kind": "Content",
11777
+ "text": ";"
11778
+ }
11779
+ ],
11780
+ "isStatic": false,
11781
+ "returnTypeTokenRange": {
11782
+ "startIndex": 3,
11783
+ "endIndex": 4
11784
+ },
11785
+ "releaseTag": "Beta",
11786
+ "isProtected": false,
11787
+ "overloadIndex": 1,
11788
+ "parameters": [
11789
+ {
11790
+ "parameterName": "hostId",
11791
+ "parameterTypeTokenRange": {
11792
+ "startIndex": 1,
11793
+ "endIndex": 2
11794
+ },
11795
+ "isOptional": false
11796
+ }
11797
+ ],
11798
+ "isOptional": false,
11799
+ "isAbstract": false,
11800
+ "name": "unregisterHost"
11257
11801
  }
11258
11802
  ],
11259
11803
  "extendsTokenRange": {