@genesislcap/ai-assistant 14.467.2 → 14.468.0-GENC-1354.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.
- package/dist/ai-assistant.api.json +1173 -157
- package/dist/ai-assistant.d.ts +123 -4
- package/dist/dts/components/chat-driver/chat-driver.d.ts +38 -0
- package/dist/dts/components/chat-driver/chat-driver.d.ts.map +1 -1
- package/dist/dts/components/settings-modal/index.d.ts +4 -0
- package/dist/dts/components/settings-modal/index.d.ts.map +1 -0
- package/dist/dts/components/settings-modal/provider-tier.d.ts +16 -0
- package/dist/dts/components/settings-modal/provider-tier.d.ts.map +1 -0
- package/dist/dts/components/settings-modal/settings-modal.styles.d.ts +3 -0
- package/dist/dts/components/settings-modal/settings-modal.styles.d.ts.map +1 -0
- package/dist/dts/components/settings-modal/settings-modal.template.d.ts +10 -0
- package/dist/dts/components/settings-modal/settings-modal.template.d.ts.map +1 -0
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts +60 -3
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/main/main.styles.d.ts.map +1 -1
- package/dist/dts/main/main.template.d.ts.map +1 -1
- package/dist/dts/provider/ai-provider-switcher.d.ts +21 -0
- package/dist/dts/provider/ai-provider-switcher.d.ts.map +1 -0
- package/dist/dts/state/ai-assistant-slice.d.ts +3 -0
- package/dist/dts/state/ai-assistant-slice.d.ts.map +1 -1
- package/dist/dts/state/debug-event-log.d.ts +1 -1
- package/dist/dts/state/debug-event-log.d.ts.map +1 -1
- package/dist/dts/state/session-store.d.ts +1 -0
- package/dist/dts/state/session-store.d.ts.map +1 -1
- package/dist/dts/utils/condense-history.d.ts +115 -0
- package/dist/dts/utils/condense-history.d.ts.map +1 -0
- package/dist/dts/utils/condense-history.test.d.ts +2 -0
- package/dist/dts/utils/condense-history.test.d.ts.map +1 -0
- package/dist/dts/utils/sum-tokens.d.ts +18 -0
- package/dist/dts/utils/sum-tokens.d.ts.map +1 -0
- package/dist/dts/utils/sum-tokens.test.d.ts +2 -0
- package/dist/dts/utils/sum-tokens.test.d.ts.map +1 -0
- package/dist/esm/components/chat-driver/chat-driver.js +108 -7
- package/dist/esm/components/chat-driver/chat-driver.test.js +196 -1
- package/dist/esm/components/settings-modal/index.js +3 -0
- package/dist/esm/components/settings-modal/provider-tier.js +25 -0
- package/dist/esm/components/settings-modal/settings-modal.styles.js +535 -0
- package/dist/esm/components/settings-modal/settings-modal.template.js +373 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/main/main.js +249 -17
- package/dist/esm/main/main.styles.js +16 -263
- package/dist/esm/main/main.template.js +12 -152
- package/dist/esm/provider/ai-provider-switcher.js +22 -0
- package/dist/esm/state/ai-assistant-slice.js +4 -0
- package/dist/esm/state/debug-event-log.js +3 -2
- package/dist/esm/utils/condense-history.js +218 -0
- package/dist/esm/utils/condense-history.test.js +297 -0
- package/dist/esm/utils/sum-tokens.js +44 -0
- package/dist/esm/utils/sum-tokens.test.js +44 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -16
- package/src/components/chat-driver/chat-driver.test.ts +233 -1
- package/src/components/chat-driver/chat-driver.ts +120 -6
- package/src/components/settings-modal/index.ts +10 -0
- package/src/components/settings-modal/provider-tier.ts +42 -0
- package/src/components/settings-modal/settings-modal.styles.ts +536 -0
- package/src/components/settings-modal/settings-modal.template.ts +534 -0
- package/src/index.ts +1 -0
- package/src/main/main.styles.ts +17 -263
- package/src/main/main.template.ts +12 -189
- package/src/main/main.ts +225 -23
- package/src/provider/ai-provider-switcher.ts +38 -0
- package/src/state/ai-assistant-slice.ts +6 -0
- package/src/state/debug-event-log.ts +4 -2
- package/src/utils/condense-history.test.ts +373 -0
- package/src/utils/condense-history.ts +306 -0
- package/src/utils/sum-tokens.test.ts +75 -0
- package/src/utils/sum-tokens.ts +47 -0
|
@@ -2581,6 +2581,209 @@
|
|
|
2581
2581
|
}
|
|
2582
2582
|
]
|
|
2583
2583
|
},
|
|
2584
|
+
{
|
|
2585
|
+
"kind": "Interface",
|
|
2586
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher:interface",
|
|
2587
|
+
"docComment": "/**\n * Optional app-registered switcher for the cloud vendor backing tier-shaped registry slots (`low` / `high` / …). When absent or empty, the settings modal hides the vendor picker.\n *\n * @beta\n */\n",
|
|
2588
|
+
"excerptTokens": [
|
|
2589
|
+
{
|
|
2590
|
+
"kind": "Content",
|
|
2591
|
+
"text": "export interface AIProviderSwitcher "
|
|
2592
|
+
}
|
|
2593
|
+
],
|
|
2594
|
+
"fileUrlPath": "src/provider/ai-provider-switcher.ts",
|
|
2595
|
+
"releaseTag": "Beta",
|
|
2596
|
+
"name": "AIProviderSwitcher",
|
|
2597
|
+
"preserveMemberOrder": false,
|
|
2598
|
+
"members": [
|
|
2599
|
+
{
|
|
2600
|
+
"kind": "MethodSignature",
|
|
2601
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher#subscribe:member(1)",
|
|
2602
|
+
"docComment": "",
|
|
2603
|
+
"excerptTokens": [
|
|
2604
|
+
{
|
|
2605
|
+
"kind": "Content",
|
|
2606
|
+
"text": "subscribe(listener: "
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
"kind": "Content",
|
|
2610
|
+
"text": "(vendor: string) => void"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
"kind": "Content",
|
|
2614
|
+
"text": "): "
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
"kind": "Content",
|
|
2618
|
+
"text": "() => void"
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
"kind": "Content",
|
|
2622
|
+
"text": ";"
|
|
2623
|
+
}
|
|
2624
|
+
],
|
|
2625
|
+
"isOptional": false,
|
|
2626
|
+
"returnTypeTokenRange": {
|
|
2627
|
+
"startIndex": 3,
|
|
2628
|
+
"endIndex": 4
|
|
2629
|
+
},
|
|
2630
|
+
"releaseTag": "Beta",
|
|
2631
|
+
"overloadIndex": 1,
|
|
2632
|
+
"parameters": [
|
|
2633
|
+
{
|
|
2634
|
+
"parameterName": "listener",
|
|
2635
|
+
"parameterTypeTokenRange": {
|
|
2636
|
+
"startIndex": 1,
|
|
2637
|
+
"endIndex": 2
|
|
2638
|
+
},
|
|
2639
|
+
"isOptional": false
|
|
2640
|
+
}
|
|
2641
|
+
],
|
|
2642
|
+
"name": "subscribe"
|
|
2643
|
+
},
|
|
2644
|
+
{
|
|
2645
|
+
"kind": "MethodSignature",
|
|
2646
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher#switchTo:member(1)",
|
|
2647
|
+
"docComment": "",
|
|
2648
|
+
"excerptTokens": [
|
|
2649
|
+
{
|
|
2650
|
+
"kind": "Content",
|
|
2651
|
+
"text": "switchTo(vendor: "
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
"kind": "Content",
|
|
2655
|
+
"text": "string"
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"kind": "Content",
|
|
2659
|
+
"text": "): "
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
"kind": "Content",
|
|
2663
|
+
"text": "void"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"kind": "Content",
|
|
2667
|
+
"text": ";"
|
|
2668
|
+
}
|
|
2669
|
+
],
|
|
2670
|
+
"isOptional": false,
|
|
2671
|
+
"returnTypeTokenRange": {
|
|
2672
|
+
"startIndex": 3,
|
|
2673
|
+
"endIndex": 4
|
|
2674
|
+
},
|
|
2675
|
+
"releaseTag": "Beta",
|
|
2676
|
+
"overloadIndex": 1,
|
|
2677
|
+
"parameters": [
|
|
2678
|
+
{
|
|
2679
|
+
"parameterName": "vendor",
|
|
2680
|
+
"parameterTypeTokenRange": {
|
|
2681
|
+
"startIndex": 1,
|
|
2682
|
+
"endIndex": 2
|
|
2683
|
+
},
|
|
2684
|
+
"isOptional": false
|
|
2685
|
+
}
|
|
2686
|
+
],
|
|
2687
|
+
"name": "switchTo"
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
"kind": "PropertySignature",
|
|
2691
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher#vendor:member",
|
|
2692
|
+
"docComment": "",
|
|
2693
|
+
"excerptTokens": [
|
|
2694
|
+
{
|
|
2695
|
+
"kind": "Content",
|
|
2696
|
+
"text": "readonly vendor: "
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
"kind": "Content",
|
|
2700
|
+
"text": "string"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"kind": "Content",
|
|
2704
|
+
"text": ";"
|
|
2705
|
+
}
|
|
2706
|
+
],
|
|
2707
|
+
"isReadonly": true,
|
|
2708
|
+
"isOptional": false,
|
|
2709
|
+
"releaseTag": "Beta",
|
|
2710
|
+
"name": "vendor",
|
|
2711
|
+
"propertyTypeTokenRange": {
|
|
2712
|
+
"startIndex": 1,
|
|
2713
|
+
"endIndex": 2
|
|
2714
|
+
}
|
|
2715
|
+
},
|
|
2716
|
+
{
|
|
2717
|
+
"kind": "PropertySignature",
|
|
2718
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher#vendors:member",
|
|
2719
|
+
"docComment": "",
|
|
2720
|
+
"excerptTokens": [
|
|
2721
|
+
{
|
|
2722
|
+
"kind": "Content",
|
|
2723
|
+
"text": "readonly vendors: "
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
"kind": "Content",
|
|
2727
|
+
"text": "readonly string[]"
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"kind": "Content",
|
|
2731
|
+
"text": ";"
|
|
2732
|
+
}
|
|
2733
|
+
],
|
|
2734
|
+
"isReadonly": true,
|
|
2735
|
+
"isOptional": false,
|
|
2736
|
+
"releaseTag": "Beta",
|
|
2737
|
+
"name": "vendors",
|
|
2738
|
+
"propertyTypeTokenRange": {
|
|
2739
|
+
"startIndex": 1,
|
|
2740
|
+
"endIndex": 2
|
|
2741
|
+
}
|
|
2742
|
+
}
|
|
2743
|
+
],
|
|
2744
|
+
"extendsTokenRanges": []
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"kind": "Variable",
|
|
2748
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher:var",
|
|
2749
|
+
"docComment": "/**\n * The DI token for the {@link (AIProviderSwitcher:interface)}. Resolves a noop until the app registers one.\n *\n * @beta\n */\n",
|
|
2750
|
+
"excerptTokens": [
|
|
2751
|
+
{
|
|
2752
|
+
"kind": "Content",
|
|
2753
|
+
"text": "AIProviderSwitcher: "
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"kind": "Content",
|
|
2757
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"kind": "Reference",
|
|
2761
|
+
"text": "InterfaceSymbol",
|
|
2762
|
+
"canonicalReference": "@microsoft/fast-foundation!InterfaceSymbol:type"
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"kind": "Content",
|
|
2766
|
+
"text": "<"
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"kind": "Reference",
|
|
2770
|
+
"text": "AIProviderSwitcher",
|
|
2771
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher:interface"
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"kind": "Content",
|
|
2775
|
+
"text": ">"
|
|
2776
|
+
}
|
|
2777
|
+
],
|
|
2778
|
+
"fileUrlPath": "src/provider/ai-provider-switcher.ts",
|
|
2779
|
+
"isReadonly": true,
|
|
2780
|
+
"releaseTag": "Beta",
|
|
2781
|
+
"name": "AIProviderSwitcher",
|
|
2782
|
+
"variableTypeTokenRange": {
|
|
2783
|
+
"startIndex": 1,
|
|
2784
|
+
"endIndex": 6
|
|
2785
|
+
}
|
|
2786
|
+
},
|
|
2584
2787
|
{
|
|
2585
2788
|
"kind": "Variable",
|
|
2586
2789
|
"canonicalReference": "@genesislcap/ai-assistant!ANIMATION_DEFS:var",
|
|
@@ -4300,7 +4503,7 @@
|
|
|
4300
4503
|
{
|
|
4301
4504
|
"kind": "Class",
|
|
4302
4505
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant:class",
|
|
4303
|
-
"docComment": "/**\n * Foundation AI Assistant component.\n *\n * @remarks\n *\n * Register one or more AI providers via `registerAIProviders` from `@genesislcap/foundation-ai`; this element resolves the `AIProviderRegistry` through the DI container. Pass agent configuration via the `agents` property — each agent can override which registered provider it uses via `provider:`. The component creates a `ChatDriver` (single agent) or `OrchestratingDriver` (multiple agents) to manage the conversation loop.\n *\n * Popout/collapse coordination uses `agenticActivityBus` topics `chat-popout` and `chat-popin` — not DOM `CustomEvent`s on this element.\n *\n * @fires chat-header-mousedown - Fired when the user presses the chat header in `popout-mode=\"expand\"` (for drag-to-popout hosts). Bubbles and composed; `detail`: `{ clientX, clientY }`.\n *\n * @beta\n */\n",
|
|
4506
|
+
"docComment": "/**\n * Foundation AI Assistant component.\n *\n * @remarks\n *\n * Register one or more AI providers via `registerAIProviders` from `@genesislcap/foundation-ai`; this element resolves the `AIProviderRegistry` through the DI container. Pass agent configuration via the `agents` property — each agent can override which registered provider it uses via `provider:`. The component creates a `ChatDriver` (single agent) or `OrchestratingDriver` (multiple agents) to manage the conversation loop.\n *\n * Popout/collapse coordination uses `agenticActivityBus` topics `chat-popout` and `chat-popin` — not DOM `CustomEvent`s on this element.\n *\n * **Settings modal styling (host apps):** override `--ai-settings-modal-dialog-radius`, `--ai-settings-modal-control-radius`, and `--ai-settings-modal-badge-radius` on this element. Advanced layout hooks: `::part(settings-modal)`, `::part(settings-dialog)`, `::part(settings-content)`, `::part(settings-top)`, `::part(settings-footer)`.\n *\n * @fires chat-header-mousedown - Fired when the user presses the chat header in `popout-mode=\"expand\"` (for drag-to-popout hosts). Bubbles and composed; `detail`: `{ clientX, clientY }`.\n *\n * @beta\n */\n",
|
|
4304
4507
|
"excerptTokens": [
|
|
4305
4508
|
{
|
|
4306
4509
|
"kind": "Content",
|
|
@@ -4657,6 +4860,36 @@
|
|
|
4657
4860
|
"isProtected": false,
|
|
4658
4861
|
"isAbstract": false
|
|
4659
4862
|
},
|
|
4863
|
+
{
|
|
4864
|
+
"kind": "Property",
|
|
4865
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#aiProviderVendor:member",
|
|
4866
|
+
"docComment": "/**\n * Active cloud vendor when the host registered an {@link (AIProviderSwitcher:interface)}.\n */\n",
|
|
4867
|
+
"excerptTokens": [
|
|
4868
|
+
{
|
|
4869
|
+
"kind": "Content",
|
|
4870
|
+
"text": "aiProviderVendor: "
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
"kind": "Content",
|
|
4874
|
+
"text": "string"
|
|
4875
|
+
},
|
|
4876
|
+
{
|
|
4877
|
+
"kind": "Content",
|
|
4878
|
+
"text": ";"
|
|
4879
|
+
}
|
|
4880
|
+
],
|
|
4881
|
+
"isReadonly": false,
|
|
4882
|
+
"isOptional": false,
|
|
4883
|
+
"releaseTag": "Beta",
|
|
4884
|
+
"name": "aiProviderVendor",
|
|
4885
|
+
"propertyTypeTokenRange": {
|
|
4886
|
+
"startIndex": 1,
|
|
4887
|
+
"endIndex": 2
|
|
4888
|
+
},
|
|
4889
|
+
"isStatic": false,
|
|
4890
|
+
"isProtected": false,
|
|
4891
|
+
"isAbstract": false
|
|
4892
|
+
},
|
|
4660
4893
|
{
|
|
4661
4894
|
"kind": "Property",
|
|
4662
4895
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#assistantIcon:member",
|
|
@@ -4906,6 +5139,37 @@
|
|
|
4906
5139
|
"isProtected": false,
|
|
4907
5140
|
"isAbstract": false
|
|
4908
5141
|
},
|
|
5142
|
+
{
|
|
5143
|
+
"kind": "Method",
|
|
5144
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#closeSettingsModal:member(1)",
|
|
5145
|
+
"docComment": "",
|
|
5146
|
+
"excerptTokens": [
|
|
5147
|
+
{
|
|
5148
|
+
"kind": "Content",
|
|
5149
|
+
"text": "closeSettingsModal(): "
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"kind": "Content",
|
|
5153
|
+
"text": "void"
|
|
5154
|
+
},
|
|
5155
|
+
{
|
|
5156
|
+
"kind": "Content",
|
|
5157
|
+
"text": ";"
|
|
5158
|
+
}
|
|
5159
|
+
],
|
|
5160
|
+
"isStatic": false,
|
|
5161
|
+
"returnTypeTokenRange": {
|
|
5162
|
+
"startIndex": 1,
|
|
5163
|
+
"endIndex": 2
|
|
5164
|
+
},
|
|
5165
|
+
"releaseTag": "Beta",
|
|
5166
|
+
"isProtected": false,
|
|
5167
|
+
"overloadIndex": 1,
|
|
5168
|
+
"parameters": [],
|
|
5169
|
+
"isOptional": false,
|
|
5170
|
+
"isAbstract": false,
|
|
5171
|
+
"name": "closeSettingsModal"
|
|
5172
|
+
},
|
|
4909
5173
|
{
|
|
4910
5174
|
"kind": "Property",
|
|
4911
5175
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#composerHeightPx:member",
|
|
@@ -5574,7 +5838,7 @@
|
|
|
5574
5838
|
},
|
|
5575
5839
|
{
|
|
5576
5840
|
"kind": "Content",
|
|
5577
|
-
"text": "[];\n activeFoldStack: string[];\n context: {\n model: string;\n contextTokens: number;\n contextLimit: number;\n contextUsagePercent: number;\n sessionCostUsd: number;\n };\n activeDebugSnapshot: unknown;\n debug: unknown;\n };\n }"
|
|
5841
|
+
"text": "[];\n activeFoldStack: string[];\n context: {\n model: string;\n contextTokens: number;\n contextLimit: number;\n contextUsagePercent: number;\n sessionCostUsd: number;\n sessionTokensConsumed: number;\n };\n activeDebugSnapshot: unknown;\n debug: unknown;\n };\n }"
|
|
5578
5842
|
},
|
|
5579
5843
|
{
|
|
5580
5844
|
"kind": "Content",
|
|
@@ -6398,47 +6662,109 @@
|
|
|
6398
6662
|
"name": "onComposerResizeStart"
|
|
6399
6663
|
},
|
|
6400
6664
|
{
|
|
6401
|
-
"kind": "
|
|
6402
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6403
|
-
"docComment": "
|
|
6665
|
+
"kind": "Method",
|
|
6666
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#onSettingsModalClosed:member(1)",
|
|
6667
|
+
"docComment": "",
|
|
6404
6668
|
"excerptTokens": [
|
|
6405
6669
|
{
|
|
6406
6670
|
"kind": "Content",
|
|
6407
|
-
"text": "
|
|
6671
|
+
"text": "onSettingsModalClosed(): "
|
|
6408
6672
|
},
|
|
6409
6673
|
{
|
|
6410
6674
|
"kind": "Content",
|
|
6411
|
-
"text": "
|
|
6675
|
+
"text": "void"
|
|
6412
6676
|
},
|
|
6413
6677
|
{
|
|
6414
6678
|
"kind": "Content",
|
|
6415
6679
|
"text": ";"
|
|
6416
6680
|
}
|
|
6417
6681
|
],
|
|
6418
|
-
"
|
|
6419
|
-
"
|
|
6420
|
-
"releaseTag": "Beta",
|
|
6421
|
-
"name": "pinLocked",
|
|
6422
|
-
"propertyTypeTokenRange": {
|
|
6682
|
+
"isStatic": false,
|
|
6683
|
+
"returnTypeTokenRange": {
|
|
6423
6684
|
"startIndex": 1,
|
|
6424
6685
|
"endIndex": 2
|
|
6425
6686
|
},
|
|
6426
|
-
"
|
|
6687
|
+
"releaseTag": "Beta",
|
|
6427
6688
|
"isProtected": false,
|
|
6428
|
-
"
|
|
6689
|
+
"overloadIndex": 1,
|
|
6690
|
+
"parameters": [],
|
|
6691
|
+
"isOptional": false,
|
|
6692
|
+
"isAbstract": false,
|
|
6693
|
+
"name": "onSettingsModalClosed"
|
|
6429
6694
|
},
|
|
6430
6695
|
{
|
|
6431
|
-
"kind": "
|
|
6432
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6433
|
-
"docComment": "
|
|
6696
|
+
"kind": "Method",
|
|
6697
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#openSettingsModal:member(1)",
|
|
6698
|
+
"docComment": "",
|
|
6434
6699
|
"excerptTokens": [
|
|
6435
6700
|
{
|
|
6436
6701
|
"kind": "Content",
|
|
6437
|
-
"text": "
|
|
6702
|
+
"text": "openSettingsModal(): "
|
|
6438
6703
|
},
|
|
6439
6704
|
{
|
|
6440
6705
|
"kind": "Content",
|
|
6441
|
-
"text": "
|
|
6706
|
+
"text": "void"
|
|
6707
|
+
},
|
|
6708
|
+
{
|
|
6709
|
+
"kind": "Content",
|
|
6710
|
+
"text": ";"
|
|
6711
|
+
}
|
|
6712
|
+
],
|
|
6713
|
+
"isStatic": false,
|
|
6714
|
+
"returnTypeTokenRange": {
|
|
6715
|
+
"startIndex": 1,
|
|
6716
|
+
"endIndex": 2
|
|
6717
|
+
},
|
|
6718
|
+
"releaseTag": "Beta",
|
|
6719
|
+
"isProtected": false,
|
|
6720
|
+
"overloadIndex": 1,
|
|
6721
|
+
"parameters": [],
|
|
6722
|
+
"isOptional": false,
|
|
6723
|
+
"isAbstract": false,
|
|
6724
|
+
"name": "openSettingsModal"
|
|
6725
|
+
},
|
|
6726
|
+
{
|
|
6727
|
+
"kind": "Property",
|
|
6728
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#pinLocked:member",
|
|
6729
|
+
"docComment": "/**\n * The pin is locked when a stateful flow is mid-stream — i.e. some agent's `onActivate` has fired and it owns live state, and it hasn't yet called `releaseAgent`. Derives directly from `flowOwnerAgentName`, the single source of truth the orchestrator writes on activation and clears on release. Until the user sends their first message, a freshly pinned stateful agent is not yet active and the picker should remain free; the user might change their mind and unpin without anything to clean up.\n */\n",
|
|
6730
|
+
"excerptTokens": [
|
|
6731
|
+
{
|
|
6732
|
+
"kind": "Content",
|
|
6733
|
+
"text": "get pinLocked(): "
|
|
6734
|
+
},
|
|
6735
|
+
{
|
|
6736
|
+
"kind": "Content",
|
|
6737
|
+
"text": "boolean"
|
|
6738
|
+
},
|
|
6739
|
+
{
|
|
6740
|
+
"kind": "Content",
|
|
6741
|
+
"text": ";"
|
|
6742
|
+
}
|
|
6743
|
+
],
|
|
6744
|
+
"isReadonly": true,
|
|
6745
|
+
"isOptional": false,
|
|
6746
|
+
"releaseTag": "Beta",
|
|
6747
|
+
"name": "pinLocked",
|
|
6748
|
+
"propertyTypeTokenRange": {
|
|
6749
|
+
"startIndex": 1,
|
|
6750
|
+
"endIndex": 2
|
|
6751
|
+
},
|
|
6752
|
+
"isStatic": false,
|
|
6753
|
+
"isProtected": false,
|
|
6754
|
+
"isAbstract": false
|
|
6755
|
+
},
|
|
6756
|
+
{
|
|
6757
|
+
"kind": "Property",
|
|
6758
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#pinnedAgentColour:member",
|
|
6759
|
+
"docComment": "/**\n * Tint applied to the pin icon when an agent is pinned. Picked from the brand palette by agent position (modulo the palette length), so each agent gets a consistent colour across renders. `undefined` when nothing is pinned, the agent isn't in the current array, or the host has opted out via `chatConfig.picker.disablePinColours`.\n */\n",
|
|
6760
|
+
"excerptTokens": [
|
|
6761
|
+
{
|
|
6762
|
+
"kind": "Content",
|
|
6763
|
+
"text": "get pinnedAgentColour(): "
|
|
6764
|
+
},
|
|
6765
|
+
{
|
|
6766
|
+
"kind": "Content",
|
|
6767
|
+
"text": "string | undefined"
|
|
6442
6768
|
},
|
|
6443
6769
|
{
|
|
6444
6770
|
"kind": "Content",
|
|
@@ -6653,6 +6979,37 @@
|
|
|
6653
6979
|
"isProtected": false,
|
|
6654
6980
|
"isAbstract": false
|
|
6655
6981
|
},
|
|
6982
|
+
{
|
|
6983
|
+
"kind": "Property",
|
|
6984
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#providerSwitcher:member",
|
|
6985
|
+
"docComment": "",
|
|
6986
|
+
"excerptTokens": [
|
|
6987
|
+
{
|
|
6988
|
+
"kind": "Content",
|
|
6989
|
+
"text": "providerSwitcher: "
|
|
6990
|
+
},
|
|
6991
|
+
{
|
|
6992
|
+
"kind": "Reference",
|
|
6993
|
+
"text": "AIProviderSwitcher",
|
|
6994
|
+
"canonicalReference": "@genesislcap/ai-assistant!AIProviderSwitcher:interface"
|
|
6995
|
+
},
|
|
6996
|
+
{
|
|
6997
|
+
"kind": "Content",
|
|
6998
|
+
"text": ";"
|
|
6999
|
+
}
|
|
7000
|
+
],
|
|
7001
|
+
"isReadonly": false,
|
|
7002
|
+
"isOptional": false,
|
|
7003
|
+
"releaseTag": "Beta",
|
|
7004
|
+
"name": "providerSwitcher",
|
|
7005
|
+
"propertyTypeTokenRange": {
|
|
7006
|
+
"startIndex": 1,
|
|
7007
|
+
"endIndex": 2
|
|
7008
|
+
},
|
|
7009
|
+
"isStatic": false,
|
|
7010
|
+
"isProtected": false,
|
|
7011
|
+
"isAbstract": false
|
|
7012
|
+
},
|
|
6656
7013
|
{
|
|
6657
7014
|
"kind": "Method",
|
|
6658
7015
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#removeAttachment:member(1)",
|
|
@@ -6703,75 +7060,697 @@
|
|
|
6703
7060
|
"name": "removeAttachment"
|
|
6704
7061
|
},
|
|
6705
7062
|
{
|
|
6706
|
-
"kind": "Method",
|
|
6707
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#removeAttachmentError:member(1)",
|
|
6708
|
-
"docComment": "",
|
|
7063
|
+
"kind": "Method",
|
|
7064
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#removeAttachmentError:member(1)",
|
|
7065
|
+
"docComment": "",
|
|
7066
|
+
"excerptTokens": [
|
|
7067
|
+
{
|
|
7068
|
+
"kind": "Content",
|
|
7069
|
+
"text": "removeAttachmentError(message: "
|
|
7070
|
+
},
|
|
7071
|
+
{
|
|
7072
|
+
"kind": "Content",
|
|
7073
|
+
"text": "string"
|
|
7074
|
+
},
|
|
7075
|
+
{
|
|
7076
|
+
"kind": "Content",
|
|
7077
|
+
"text": "): "
|
|
7078
|
+
},
|
|
7079
|
+
{
|
|
7080
|
+
"kind": "Content",
|
|
7081
|
+
"text": "void"
|
|
7082
|
+
},
|
|
7083
|
+
{
|
|
7084
|
+
"kind": "Content",
|
|
7085
|
+
"text": ";"
|
|
7086
|
+
}
|
|
7087
|
+
],
|
|
7088
|
+
"isStatic": false,
|
|
7089
|
+
"returnTypeTokenRange": {
|
|
7090
|
+
"startIndex": 3,
|
|
7091
|
+
"endIndex": 4
|
|
7092
|
+
},
|
|
7093
|
+
"releaseTag": "Beta",
|
|
7094
|
+
"isProtected": false,
|
|
7095
|
+
"overloadIndex": 1,
|
|
7096
|
+
"parameters": [
|
|
7097
|
+
{
|
|
7098
|
+
"parameterName": "message",
|
|
7099
|
+
"parameterTypeTokenRange": {
|
|
7100
|
+
"startIndex": 1,
|
|
7101
|
+
"endIndex": 2
|
|
7102
|
+
},
|
|
7103
|
+
"isOptional": false
|
|
7104
|
+
}
|
|
7105
|
+
],
|
|
7106
|
+
"isOptional": false,
|
|
7107
|
+
"isAbstract": false,
|
|
7108
|
+
"name": "removeAttachmentError"
|
|
7109
|
+
},
|
|
7110
|
+
{
|
|
7111
|
+
"kind": "Method",
|
|
7112
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#saveSettingsModal:member(1)",
|
|
7113
|
+
"docComment": "/**\n * Persist and close — toggles already apply live; close completes the flow.\n */\n",
|
|
7114
|
+
"excerptTokens": [
|
|
7115
|
+
{
|
|
7116
|
+
"kind": "Content",
|
|
7117
|
+
"text": "saveSettingsModal(): "
|
|
7118
|
+
},
|
|
7119
|
+
{
|
|
7120
|
+
"kind": "Content",
|
|
7121
|
+
"text": "void"
|
|
7122
|
+
},
|
|
7123
|
+
{
|
|
7124
|
+
"kind": "Content",
|
|
7125
|
+
"text": ";"
|
|
7126
|
+
}
|
|
7127
|
+
],
|
|
7128
|
+
"isStatic": false,
|
|
7129
|
+
"returnTypeTokenRange": {
|
|
7130
|
+
"startIndex": 1,
|
|
7131
|
+
"endIndex": 2
|
|
7132
|
+
},
|
|
7133
|
+
"releaseTag": "Beta",
|
|
7134
|
+
"isProtected": false,
|
|
7135
|
+
"overloadIndex": 1,
|
|
7136
|
+
"parameters": [],
|
|
7137
|
+
"isOptional": false,
|
|
7138
|
+
"isAbstract": false,
|
|
7139
|
+
"name": "saveSettingsModal"
|
|
7140
|
+
},
|
|
7141
|
+
{
|
|
7142
|
+
"kind": "Method",
|
|
7143
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#selectAiProviderVendor:member(1)",
|
|
7144
|
+
"docComment": "/**\n * Switch the cloud vendor backing tier-shaped registry slots (when not disabled).\n */\n",
|
|
7145
|
+
"excerptTokens": [
|
|
7146
|
+
{
|
|
7147
|
+
"kind": "Content",
|
|
7148
|
+
"text": "selectAiProviderVendor(vendor: "
|
|
7149
|
+
},
|
|
7150
|
+
{
|
|
7151
|
+
"kind": "Content",
|
|
7152
|
+
"text": "string"
|
|
7153
|
+
},
|
|
7154
|
+
{
|
|
7155
|
+
"kind": "Content",
|
|
7156
|
+
"text": "): "
|
|
7157
|
+
},
|
|
7158
|
+
{
|
|
7159
|
+
"kind": "Content",
|
|
7160
|
+
"text": "void"
|
|
7161
|
+
},
|
|
7162
|
+
{
|
|
7163
|
+
"kind": "Content",
|
|
7164
|
+
"text": ";"
|
|
7165
|
+
}
|
|
7166
|
+
],
|
|
7167
|
+
"isStatic": false,
|
|
7168
|
+
"returnTypeTokenRange": {
|
|
7169
|
+
"startIndex": 3,
|
|
7170
|
+
"endIndex": 4
|
|
7171
|
+
},
|
|
7172
|
+
"releaseTag": "Beta",
|
|
7173
|
+
"isProtected": false,
|
|
7174
|
+
"overloadIndex": 1,
|
|
7175
|
+
"parameters": [
|
|
7176
|
+
{
|
|
7177
|
+
"parameterName": "vendor",
|
|
7178
|
+
"parameterTypeTokenRange": {
|
|
7179
|
+
"startIndex": 1,
|
|
7180
|
+
"endIndex": 2
|
|
7181
|
+
},
|
|
7182
|
+
"isOptional": false
|
|
7183
|
+
}
|
|
7184
|
+
],
|
|
7185
|
+
"isOptional": false,
|
|
7186
|
+
"isAbstract": false,
|
|
7187
|
+
"name": "selectAiProviderVendor"
|
|
7188
|
+
},
|
|
7189
|
+
{
|
|
7190
|
+
"kind": "Property",
|
|
7191
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#sessionCostUsd:member",
|
|
7192
|
+
"docComment": "/**\n * Aggregated USD cost across every chat turn in this session.\n */\n",
|
|
7193
|
+
"excerptTokens": [
|
|
7194
|
+
{
|
|
7195
|
+
"kind": "Content",
|
|
7196
|
+
"text": "get sessionCostUsd(): "
|
|
7197
|
+
},
|
|
7198
|
+
{
|
|
7199
|
+
"kind": "Content",
|
|
7200
|
+
"text": "number"
|
|
7201
|
+
},
|
|
7202
|
+
{
|
|
7203
|
+
"kind": "Content",
|
|
7204
|
+
"text": ";\n\nset sessionCostUsd(value: number);"
|
|
7205
|
+
}
|
|
7206
|
+
],
|
|
7207
|
+
"isReadonly": false,
|
|
7208
|
+
"isOptional": false,
|
|
7209
|
+
"releaseTag": "Beta",
|
|
7210
|
+
"name": "sessionCostUsd",
|
|
7211
|
+
"propertyTypeTokenRange": {
|
|
7212
|
+
"startIndex": 1,
|
|
7213
|
+
"endIndex": 2
|
|
7214
|
+
},
|
|
7215
|
+
"isStatic": false,
|
|
7216
|
+
"isProtected": false,
|
|
7217
|
+
"isAbstract": false
|
|
7218
|
+
},
|
|
7219
|
+
{
|
|
7220
|
+
"kind": "Property",
|
|
7221
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#sessionTokensConsumed:member",
|
|
7222
|
+
"docComment": "/**\n * Cumulative input + output tokens across every chat turn in this session.\n */\n",
|
|
7223
|
+
"excerptTokens": [
|
|
7224
|
+
{
|
|
7225
|
+
"kind": "Content",
|
|
7226
|
+
"text": "get sessionTokensConsumed(): "
|
|
7227
|
+
},
|
|
7228
|
+
{
|
|
7229
|
+
"kind": "Content",
|
|
7230
|
+
"text": "number"
|
|
7231
|
+
},
|
|
7232
|
+
{
|
|
7233
|
+
"kind": "Content",
|
|
7234
|
+
"text": ";\n\nset sessionTokensConsumed(value: number);"
|
|
7235
|
+
}
|
|
7236
|
+
],
|
|
7237
|
+
"isReadonly": false,
|
|
7238
|
+
"isOptional": false,
|
|
7239
|
+
"releaseTag": "Beta",
|
|
7240
|
+
"name": "sessionTokensConsumed",
|
|
7241
|
+
"propertyTypeTokenRange": {
|
|
7242
|
+
"startIndex": 1,
|
|
7243
|
+
"endIndex": 2
|
|
7244
|
+
},
|
|
7245
|
+
"isStatic": false,
|
|
7246
|
+
"isProtected": false,
|
|
7247
|
+
"isAbstract": false
|
|
7248
|
+
},
|
|
7249
|
+
{
|
|
7250
|
+
"kind": "Method",
|
|
7251
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#setAgent:member(1)",
|
|
7252
|
+
"docComment": "/**\n * Programmatically pin an agent by name. Returns `true` if the pin was applied, `false` if the agent isn't in the configured agents array or the call was suppressed by `force: false`.\n *\n * With `force: false`, the call is a no-op when a `picker.defaultAgent` is configured and the user has already moved away from it (either by picking another agent or by switching to Auto). This lets hosts seed an opinion without overriding an explicit user choice.\n *\n * @public\n */\n",
|
|
7253
|
+
"excerptTokens": [
|
|
7254
|
+
{
|
|
7255
|
+
"kind": "Content",
|
|
7256
|
+
"text": "setAgent(agentName: "
|
|
7257
|
+
},
|
|
7258
|
+
{
|
|
7259
|
+
"kind": "Content",
|
|
7260
|
+
"text": "string"
|
|
7261
|
+
},
|
|
7262
|
+
{
|
|
7263
|
+
"kind": "Content",
|
|
7264
|
+
"text": ", options?: "
|
|
7265
|
+
},
|
|
7266
|
+
{
|
|
7267
|
+
"kind": "Content",
|
|
7268
|
+
"text": "{\n force?: boolean;\n }"
|
|
7269
|
+
},
|
|
7270
|
+
{
|
|
7271
|
+
"kind": "Content",
|
|
7272
|
+
"text": "): "
|
|
7273
|
+
},
|
|
7274
|
+
{
|
|
7275
|
+
"kind": "Content",
|
|
7276
|
+
"text": "boolean"
|
|
7277
|
+
},
|
|
7278
|
+
{
|
|
7279
|
+
"kind": "Content",
|
|
7280
|
+
"text": ";"
|
|
7281
|
+
}
|
|
7282
|
+
],
|
|
7283
|
+
"isStatic": false,
|
|
7284
|
+
"returnTypeTokenRange": {
|
|
7285
|
+
"startIndex": 5,
|
|
7286
|
+
"endIndex": 6
|
|
7287
|
+
},
|
|
7288
|
+
"releaseTag": "Public",
|
|
7289
|
+
"isProtected": false,
|
|
7290
|
+
"overloadIndex": 1,
|
|
7291
|
+
"parameters": [
|
|
7292
|
+
{
|
|
7293
|
+
"parameterName": "agentName",
|
|
7294
|
+
"parameterTypeTokenRange": {
|
|
7295
|
+
"startIndex": 1,
|
|
7296
|
+
"endIndex": 2
|
|
7297
|
+
},
|
|
7298
|
+
"isOptional": false
|
|
7299
|
+
},
|
|
7300
|
+
{
|
|
7301
|
+
"parameterName": "options",
|
|
7302
|
+
"parameterTypeTokenRange": {
|
|
7303
|
+
"startIndex": 3,
|
|
7304
|
+
"endIndex": 4
|
|
7305
|
+
},
|
|
7306
|
+
"isOptional": true
|
|
7307
|
+
}
|
|
7308
|
+
],
|
|
7309
|
+
"isOptional": false,
|
|
7310
|
+
"isAbstract": false,
|
|
7311
|
+
"name": "setAgent"
|
|
7312
|
+
},
|
|
7313
|
+
{
|
|
7314
|
+
"kind": "Method",
|
|
7315
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#setEnabledAnimations:member(1)",
|
|
7316
|
+
"docComment": "",
|
|
7317
|
+
"excerptTokens": [
|
|
7318
|
+
{
|
|
7319
|
+
"kind": "Content",
|
|
7320
|
+
"text": "setEnabledAnimations(animations: "
|
|
7321
|
+
},
|
|
7322
|
+
{
|
|
7323
|
+
"kind": "Reference",
|
|
7324
|
+
"text": "AiAssistantAnimation",
|
|
7325
|
+
"canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type"
|
|
7326
|
+
},
|
|
7327
|
+
{
|
|
7328
|
+
"kind": "Content",
|
|
7329
|
+
"text": "[]"
|
|
7330
|
+
},
|
|
7331
|
+
{
|
|
7332
|
+
"kind": "Content",
|
|
7333
|
+
"text": "): "
|
|
7334
|
+
},
|
|
7335
|
+
{
|
|
7336
|
+
"kind": "Content",
|
|
7337
|
+
"text": "void"
|
|
7338
|
+
},
|
|
7339
|
+
{
|
|
7340
|
+
"kind": "Content",
|
|
7341
|
+
"text": ";"
|
|
7342
|
+
}
|
|
7343
|
+
],
|
|
7344
|
+
"isStatic": false,
|
|
7345
|
+
"returnTypeTokenRange": {
|
|
7346
|
+
"startIndex": 4,
|
|
7347
|
+
"endIndex": 5
|
|
7348
|
+
},
|
|
7349
|
+
"releaseTag": "Beta",
|
|
7350
|
+
"isProtected": false,
|
|
7351
|
+
"overloadIndex": 1,
|
|
7352
|
+
"parameters": [
|
|
7353
|
+
{
|
|
7354
|
+
"parameterName": "animations",
|
|
7355
|
+
"parameterTypeTokenRange": {
|
|
7356
|
+
"startIndex": 1,
|
|
7357
|
+
"endIndex": 3
|
|
7358
|
+
},
|
|
7359
|
+
"isOptional": false
|
|
7360
|
+
}
|
|
7361
|
+
],
|
|
7362
|
+
"isOptional": false,
|
|
7363
|
+
"isAbstract": false,
|
|
7364
|
+
"name": "setEnabledAnimations"
|
|
7365
|
+
},
|
|
7366
|
+
{
|
|
7367
|
+
"kind": "Method",
|
|
7368
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#setSettingsModalTab:member(1)",
|
|
7369
|
+
"docComment": "",
|
|
7370
|
+
"excerptTokens": [
|
|
7371
|
+
{
|
|
7372
|
+
"kind": "Content",
|
|
7373
|
+
"text": "setSettingsModalTab(tab: "
|
|
7374
|
+
},
|
|
7375
|
+
{
|
|
7376
|
+
"kind": "Reference",
|
|
7377
|
+
"text": "SettingsModalTab",
|
|
7378
|
+
"canonicalReference": "@genesislcap/ai-assistant!~SettingsModalTab:type"
|
|
7379
|
+
},
|
|
7380
|
+
{
|
|
7381
|
+
"kind": "Content",
|
|
7382
|
+
"text": "): "
|
|
7383
|
+
},
|
|
7384
|
+
{
|
|
7385
|
+
"kind": "Content",
|
|
7386
|
+
"text": "void"
|
|
7387
|
+
},
|
|
7388
|
+
{
|
|
7389
|
+
"kind": "Content",
|
|
7390
|
+
"text": ";"
|
|
7391
|
+
}
|
|
7392
|
+
],
|
|
7393
|
+
"isStatic": false,
|
|
7394
|
+
"returnTypeTokenRange": {
|
|
7395
|
+
"startIndex": 3,
|
|
7396
|
+
"endIndex": 4
|
|
7397
|
+
},
|
|
7398
|
+
"releaseTag": "Beta",
|
|
7399
|
+
"isProtected": false,
|
|
7400
|
+
"overloadIndex": 1,
|
|
7401
|
+
"parameters": [
|
|
7402
|
+
{
|
|
7403
|
+
"parameterName": "tab",
|
|
7404
|
+
"parameterTypeTokenRange": {
|
|
7405
|
+
"startIndex": 1,
|
|
7406
|
+
"endIndex": 2
|
|
7407
|
+
},
|
|
7408
|
+
"isOptional": false
|
|
7409
|
+
}
|
|
7410
|
+
],
|
|
7411
|
+
"isOptional": false,
|
|
7412
|
+
"isAbstract": false,
|
|
7413
|
+
"name": "setSettingsModalTab"
|
|
7414
|
+
},
|
|
7415
|
+
{
|
|
7416
|
+
"kind": "Property",
|
|
7417
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsAppSectionVisible:member",
|
|
7418
|
+
"docComment": "/**\n * Whether the settings modal UI Builder section should render.\n */\n",
|
|
7419
|
+
"excerptTokens": [
|
|
7420
|
+
{
|
|
7421
|
+
"kind": "Content",
|
|
7422
|
+
"text": "get settingsAppSectionVisible(): "
|
|
7423
|
+
},
|
|
7424
|
+
{
|
|
7425
|
+
"kind": "Content",
|
|
7426
|
+
"text": "boolean"
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"kind": "Content",
|
|
7430
|
+
"text": ";"
|
|
7431
|
+
}
|
|
7432
|
+
],
|
|
7433
|
+
"isReadonly": true,
|
|
7434
|
+
"isOptional": false,
|
|
7435
|
+
"releaseTag": "Beta",
|
|
7436
|
+
"name": "settingsAppSectionVisible",
|
|
7437
|
+
"propertyTypeTokenRange": {
|
|
7438
|
+
"startIndex": 1,
|
|
7439
|
+
"endIndex": 2
|
|
7440
|
+
},
|
|
7441
|
+
"isStatic": false,
|
|
7442
|
+
"isProtected": false,
|
|
7443
|
+
"isAbstract": false
|
|
7444
|
+
},
|
|
7445
|
+
{
|
|
7446
|
+
"kind": "Property",
|
|
7447
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsAppSlotted:member",
|
|
7448
|
+
"docComment": "",
|
|
7449
|
+
"excerptTokens": [
|
|
7450
|
+
{
|
|
7451
|
+
"kind": "Content",
|
|
7452
|
+
"text": "settingsAppSlotted: "
|
|
7453
|
+
},
|
|
7454
|
+
{
|
|
7455
|
+
"kind": "Reference",
|
|
7456
|
+
"text": "HTMLElement",
|
|
7457
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
7458
|
+
},
|
|
7459
|
+
{
|
|
7460
|
+
"kind": "Content",
|
|
7461
|
+
"text": "[]"
|
|
7462
|
+
},
|
|
7463
|
+
{
|
|
7464
|
+
"kind": "Content",
|
|
7465
|
+
"text": ";"
|
|
7466
|
+
}
|
|
7467
|
+
],
|
|
7468
|
+
"isReadonly": false,
|
|
7469
|
+
"isOptional": false,
|
|
7470
|
+
"releaseTag": "Beta",
|
|
7471
|
+
"name": "settingsAppSlotted",
|
|
7472
|
+
"propertyTypeTokenRange": {
|
|
7473
|
+
"startIndex": 1,
|
|
7474
|
+
"endIndex": 3
|
|
7475
|
+
},
|
|
7476
|
+
"isStatic": false,
|
|
7477
|
+
"isProtected": false,
|
|
7478
|
+
"isAbstract": false
|
|
7479
|
+
},
|
|
7480
|
+
{
|
|
7481
|
+
"kind": "Property",
|
|
7482
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCogVisible:member",
|
|
7483
|
+
"docComment": "/**\n * Whether the chat header (and settings cog) should render.\n */\n",
|
|
7484
|
+
"excerptTokens": [
|
|
7485
|
+
{
|
|
7486
|
+
"kind": "Content",
|
|
7487
|
+
"text": "get settingsCogVisible(): "
|
|
7488
|
+
},
|
|
7489
|
+
{
|
|
7490
|
+
"kind": "Content",
|
|
7491
|
+
"text": "boolean"
|
|
7492
|
+
},
|
|
7493
|
+
{
|
|
7494
|
+
"kind": "Content",
|
|
7495
|
+
"text": ";"
|
|
7496
|
+
}
|
|
7497
|
+
],
|
|
7498
|
+
"isReadonly": true,
|
|
7499
|
+
"isOptional": false,
|
|
7500
|
+
"releaseTag": "Beta",
|
|
7501
|
+
"name": "settingsCogVisible",
|
|
7502
|
+
"propertyTypeTokenRange": {
|
|
7503
|
+
"startIndex": 1,
|
|
7504
|
+
"endIndex": 2
|
|
7505
|
+
},
|
|
7506
|
+
"isStatic": false,
|
|
7507
|
+
"isProtected": false,
|
|
7508
|
+
"isAbstract": false
|
|
7509
|
+
},
|
|
7510
|
+
{
|
|
7511
|
+
"kind": "Property",
|
|
7512
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostCurrentSectionVisible:member",
|
|
7513
|
+
"docComment": "",
|
|
7514
|
+
"excerptTokens": [
|
|
7515
|
+
{
|
|
7516
|
+
"kind": "Content",
|
|
7517
|
+
"text": "get settingsCostCurrentSectionVisible(): "
|
|
7518
|
+
},
|
|
7519
|
+
{
|
|
7520
|
+
"kind": "Content",
|
|
7521
|
+
"text": "boolean"
|
|
7522
|
+
},
|
|
7523
|
+
{
|
|
7524
|
+
"kind": "Content",
|
|
7525
|
+
"text": ";"
|
|
7526
|
+
}
|
|
7527
|
+
],
|
|
7528
|
+
"isReadonly": true,
|
|
7529
|
+
"isOptional": false,
|
|
7530
|
+
"releaseTag": "Beta",
|
|
7531
|
+
"name": "settingsCostCurrentSectionVisible",
|
|
7532
|
+
"propertyTypeTokenRange": {
|
|
7533
|
+
"startIndex": 1,
|
|
7534
|
+
"endIndex": 2
|
|
7535
|
+
},
|
|
7536
|
+
"isStatic": false,
|
|
7537
|
+
"isProtected": false,
|
|
7538
|
+
"isAbstract": false
|
|
7539
|
+
},
|
|
7540
|
+
{
|
|
7541
|
+
"kind": "Property",
|
|
7542
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostCurrentSlotted:member",
|
|
7543
|
+
"docComment": "",
|
|
7544
|
+
"excerptTokens": [
|
|
7545
|
+
{
|
|
7546
|
+
"kind": "Content",
|
|
7547
|
+
"text": "settingsCostCurrentSlotted: "
|
|
7548
|
+
},
|
|
7549
|
+
{
|
|
7550
|
+
"kind": "Reference",
|
|
7551
|
+
"text": "HTMLElement",
|
|
7552
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
7553
|
+
},
|
|
7554
|
+
{
|
|
7555
|
+
"kind": "Content",
|
|
7556
|
+
"text": "[]"
|
|
7557
|
+
},
|
|
7558
|
+
{
|
|
7559
|
+
"kind": "Content",
|
|
7560
|
+
"text": ";"
|
|
7561
|
+
}
|
|
7562
|
+
],
|
|
7563
|
+
"isReadonly": false,
|
|
7564
|
+
"isOptional": false,
|
|
7565
|
+
"releaseTag": "Beta",
|
|
7566
|
+
"name": "settingsCostCurrentSlotted",
|
|
7567
|
+
"propertyTypeTokenRange": {
|
|
7568
|
+
"startIndex": 1,
|
|
7569
|
+
"endIndex": 3
|
|
7570
|
+
},
|
|
7571
|
+
"isStatic": false,
|
|
7572
|
+
"isProtected": false,
|
|
7573
|
+
"isAbstract": false
|
|
7574
|
+
},
|
|
7575
|
+
{
|
|
7576
|
+
"kind": "Property",
|
|
7577
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostHistorySectionVisible:member",
|
|
7578
|
+
"docComment": "",
|
|
7579
|
+
"excerptTokens": [
|
|
7580
|
+
{
|
|
7581
|
+
"kind": "Content",
|
|
7582
|
+
"text": "get settingsCostHistorySectionVisible(): "
|
|
7583
|
+
},
|
|
7584
|
+
{
|
|
7585
|
+
"kind": "Content",
|
|
7586
|
+
"text": "boolean"
|
|
7587
|
+
},
|
|
7588
|
+
{
|
|
7589
|
+
"kind": "Content",
|
|
7590
|
+
"text": ";"
|
|
7591
|
+
}
|
|
7592
|
+
],
|
|
7593
|
+
"isReadonly": true,
|
|
7594
|
+
"isOptional": false,
|
|
7595
|
+
"releaseTag": "Beta",
|
|
7596
|
+
"name": "settingsCostHistorySectionVisible",
|
|
7597
|
+
"propertyTypeTokenRange": {
|
|
7598
|
+
"startIndex": 1,
|
|
7599
|
+
"endIndex": 2
|
|
7600
|
+
},
|
|
7601
|
+
"isStatic": false,
|
|
7602
|
+
"isProtected": false,
|
|
7603
|
+
"isAbstract": false
|
|
7604
|
+
},
|
|
7605
|
+
{
|
|
7606
|
+
"kind": "Property",
|
|
7607
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostHistorySlotted:member",
|
|
7608
|
+
"docComment": "",
|
|
7609
|
+
"excerptTokens": [
|
|
7610
|
+
{
|
|
7611
|
+
"kind": "Content",
|
|
7612
|
+
"text": "settingsCostHistorySlotted: "
|
|
7613
|
+
},
|
|
7614
|
+
{
|
|
7615
|
+
"kind": "Reference",
|
|
7616
|
+
"text": "HTMLElement",
|
|
7617
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
7618
|
+
},
|
|
7619
|
+
{
|
|
7620
|
+
"kind": "Content",
|
|
7621
|
+
"text": "[]"
|
|
7622
|
+
},
|
|
7623
|
+
{
|
|
7624
|
+
"kind": "Content",
|
|
7625
|
+
"text": ";"
|
|
7626
|
+
}
|
|
7627
|
+
],
|
|
7628
|
+
"isReadonly": false,
|
|
7629
|
+
"isOptional": false,
|
|
7630
|
+
"releaseTag": "Beta",
|
|
7631
|
+
"name": "settingsCostHistorySlotted",
|
|
7632
|
+
"propertyTypeTokenRange": {
|
|
7633
|
+
"startIndex": 1,
|
|
7634
|
+
"endIndex": 3
|
|
7635
|
+
},
|
|
7636
|
+
"isStatic": false,
|
|
7637
|
+
"isProtected": false,
|
|
7638
|
+
"isAbstract": false
|
|
7639
|
+
},
|
|
7640
|
+
{
|
|
7641
|
+
"kind": "Property",
|
|
7642
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostSummaryVisible:member",
|
|
7643
|
+
"docComment": "/**\n * Whether the built-in Cost tab summary block has anything to show.\n */\n",
|
|
7644
|
+
"excerptTokens": [
|
|
7645
|
+
{
|
|
7646
|
+
"kind": "Content",
|
|
7647
|
+
"text": "get settingsCostSummaryVisible(): "
|
|
7648
|
+
},
|
|
7649
|
+
{
|
|
7650
|
+
"kind": "Content",
|
|
7651
|
+
"text": "boolean"
|
|
7652
|
+
},
|
|
7653
|
+
{
|
|
7654
|
+
"kind": "Content",
|
|
7655
|
+
"text": ";"
|
|
7656
|
+
}
|
|
7657
|
+
],
|
|
7658
|
+
"isReadonly": true,
|
|
7659
|
+
"isOptional": false,
|
|
7660
|
+
"releaseTag": "Beta",
|
|
7661
|
+
"name": "settingsCostSummaryVisible",
|
|
7662
|
+
"propertyTypeTokenRange": {
|
|
7663
|
+
"startIndex": 1,
|
|
7664
|
+
"endIndex": 2
|
|
7665
|
+
},
|
|
7666
|
+
"isStatic": false,
|
|
7667
|
+
"isProtected": false,
|
|
7668
|
+
"isAbstract": false
|
|
7669
|
+
},
|
|
7670
|
+
{
|
|
7671
|
+
"kind": "Property",
|
|
7672
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsCostTabVisible:member",
|
|
7673
|
+
"docComment": "/**\n * Whether the Cost tab should appear in the settings modal.\n */\n",
|
|
7674
|
+
"excerptTokens": [
|
|
7675
|
+
{
|
|
7676
|
+
"kind": "Content",
|
|
7677
|
+
"text": "get settingsCostTabVisible(): "
|
|
7678
|
+
},
|
|
7679
|
+
{
|
|
7680
|
+
"kind": "Content",
|
|
7681
|
+
"text": "boolean"
|
|
7682
|
+
},
|
|
7683
|
+
{
|
|
7684
|
+
"kind": "Content",
|
|
7685
|
+
"text": ";"
|
|
7686
|
+
}
|
|
7687
|
+
],
|
|
7688
|
+
"isReadonly": true,
|
|
7689
|
+
"isOptional": false,
|
|
7690
|
+
"releaseTag": "Beta",
|
|
7691
|
+
"name": "settingsCostTabVisible",
|
|
7692
|
+
"propertyTypeTokenRange": {
|
|
7693
|
+
"startIndex": 1,
|
|
7694
|
+
"endIndex": 2
|
|
7695
|
+
},
|
|
7696
|
+
"isStatic": false,
|
|
7697
|
+
"isProtected": false,
|
|
7698
|
+
"isAbstract": false
|
|
7699
|
+
},
|
|
7700
|
+
{
|
|
7701
|
+
"kind": "Property",
|
|
7702
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsModal:member",
|
|
7703
|
+
"docComment": "/**\n * Bound to the design-system modal via the template ref.\n */\n",
|
|
6709
7704
|
"excerptTokens": [
|
|
6710
7705
|
{
|
|
6711
7706
|
"kind": "Content",
|
|
6712
|
-
"text": "
|
|
6713
|
-
},
|
|
6714
|
-
{
|
|
6715
|
-
"kind": "Content",
|
|
6716
|
-
"text": "string"
|
|
6717
|
-
},
|
|
6718
|
-
{
|
|
6719
|
-
"kind": "Content",
|
|
6720
|
-
"text": "): "
|
|
7707
|
+
"text": "settingsModal?: "
|
|
6721
7708
|
},
|
|
6722
7709
|
{
|
|
6723
|
-
"kind": "
|
|
6724
|
-
"text": "
|
|
7710
|
+
"kind": "Reference",
|
|
7711
|
+
"text": "Modal",
|
|
7712
|
+
"canonicalReference": "@genesislcap/rapid-design-system!Modal:class"
|
|
6725
7713
|
},
|
|
6726
7714
|
{
|
|
6727
7715
|
"kind": "Content",
|
|
6728
7716
|
"text": ";"
|
|
6729
7717
|
}
|
|
6730
7718
|
],
|
|
6731
|
-
"
|
|
6732
|
-
"
|
|
6733
|
-
"startIndex": 3,
|
|
6734
|
-
"endIndex": 4
|
|
6735
|
-
},
|
|
7719
|
+
"isReadonly": false,
|
|
7720
|
+
"isOptional": true,
|
|
6736
7721
|
"releaseTag": "Beta",
|
|
7722
|
+
"name": "settingsModal",
|
|
7723
|
+
"propertyTypeTokenRange": {
|
|
7724
|
+
"startIndex": 1,
|
|
7725
|
+
"endIndex": 2
|
|
7726
|
+
},
|
|
7727
|
+
"isStatic": false,
|
|
6737
7728
|
"isProtected": false,
|
|
6738
|
-
"
|
|
6739
|
-
"parameters": [
|
|
6740
|
-
{
|
|
6741
|
-
"parameterName": "message",
|
|
6742
|
-
"parameterTypeTokenRange": {
|
|
6743
|
-
"startIndex": 1,
|
|
6744
|
-
"endIndex": 2
|
|
6745
|
-
},
|
|
6746
|
-
"isOptional": false
|
|
6747
|
-
}
|
|
6748
|
-
],
|
|
6749
|
-
"isOptional": false,
|
|
6750
|
-
"isAbstract": false,
|
|
6751
|
-
"name": "removeAttachmentError"
|
|
7729
|
+
"isAbstract": false
|
|
6752
7730
|
},
|
|
6753
7731
|
{
|
|
6754
7732
|
"kind": "Property",
|
|
6755
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6756
|
-
"docComment": "/**\n *
|
|
7733
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsModalTab:member",
|
|
7734
|
+
"docComment": "/**\n * Active tab inside the settings modal.\n */\n",
|
|
6757
7735
|
"excerptTokens": [
|
|
6758
7736
|
{
|
|
6759
7737
|
"kind": "Content",
|
|
6760
|
-
"text": "
|
|
7738
|
+
"text": "settingsModalTab: "
|
|
6761
7739
|
},
|
|
6762
7740
|
{
|
|
6763
|
-
"kind": "
|
|
6764
|
-
"text": "
|
|
7741
|
+
"kind": "Reference",
|
|
7742
|
+
"text": "SettingsModalTab",
|
|
7743
|
+
"canonicalReference": "@genesislcap/ai-assistant!~SettingsModalTab:type"
|
|
6765
7744
|
},
|
|
6766
7745
|
{
|
|
6767
7746
|
"kind": "Content",
|
|
6768
|
-
"text": "
|
|
7747
|
+
"text": ";"
|
|
6769
7748
|
}
|
|
6770
7749
|
],
|
|
6771
7750
|
"isReadonly": false,
|
|
6772
7751
|
"isOptional": false,
|
|
6773
7752
|
"releaseTag": "Beta",
|
|
6774
|
-
"name": "
|
|
7753
|
+
"name": "settingsModalTab",
|
|
6775
7754
|
"propertyTypeTokenRange": {
|
|
6776
7755
|
"startIndex": 1,
|
|
6777
7756
|
"endIndex": 2
|
|
@@ -6781,130 +7760,168 @@
|
|
|
6781
7760
|
"isAbstract": false
|
|
6782
7761
|
},
|
|
6783
7762
|
{
|
|
6784
|
-
"kind": "
|
|
6785
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6786
|
-
"docComment": "/**\n *
|
|
7763
|
+
"kind": "Property",
|
|
7764
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsModelSectionVisible:member",
|
|
7765
|
+
"docComment": "/**\n * Whether the settings modal AI Model section has app or platform model content.\n */\n",
|
|
6787
7766
|
"excerptTokens": [
|
|
6788
7767
|
{
|
|
6789
7768
|
"kind": "Content",
|
|
6790
|
-
"text": "
|
|
7769
|
+
"text": "get settingsModelSectionVisible(): "
|
|
6791
7770
|
},
|
|
6792
7771
|
{
|
|
6793
7772
|
"kind": "Content",
|
|
6794
|
-
"text": "
|
|
7773
|
+
"text": "boolean"
|
|
6795
7774
|
},
|
|
6796
7775
|
{
|
|
6797
7776
|
"kind": "Content",
|
|
6798
|
-
"text": "
|
|
6799
|
-
}
|
|
7777
|
+
"text": ";"
|
|
7778
|
+
}
|
|
7779
|
+
],
|
|
7780
|
+
"isReadonly": true,
|
|
7781
|
+
"isOptional": false,
|
|
7782
|
+
"releaseTag": "Beta",
|
|
7783
|
+
"name": "settingsModelSectionVisible",
|
|
7784
|
+
"propertyTypeTokenRange": {
|
|
7785
|
+
"startIndex": 1,
|
|
7786
|
+
"endIndex": 2
|
|
7787
|
+
},
|
|
7788
|
+
"isStatic": false,
|
|
7789
|
+
"isProtected": false,
|
|
7790
|
+
"isAbstract": false
|
|
7791
|
+
},
|
|
7792
|
+
{
|
|
7793
|
+
"kind": "Property",
|
|
7794
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsModelSlotted:member",
|
|
7795
|
+
"docComment": "/**\n * Light-DOM nodes assigned to settings modal slots (via `slotted()` bindings).\n */\n",
|
|
7796
|
+
"excerptTokens": [
|
|
6800
7797
|
{
|
|
6801
7798
|
"kind": "Content",
|
|
6802
|
-
"text": "
|
|
7799
|
+
"text": "settingsModelSlotted: "
|
|
6803
7800
|
},
|
|
6804
7801
|
{
|
|
6805
|
-
"kind": "
|
|
6806
|
-
"text": "
|
|
7802
|
+
"kind": "Reference",
|
|
7803
|
+
"text": "HTMLElement",
|
|
7804
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
6807
7805
|
},
|
|
6808
7806
|
{
|
|
6809
7807
|
"kind": "Content",
|
|
6810
|
-
"text": "
|
|
7808
|
+
"text": "[]"
|
|
6811
7809
|
},
|
|
6812
7810
|
{
|
|
6813
7811
|
"kind": "Content",
|
|
6814
7812
|
"text": ";"
|
|
6815
7813
|
}
|
|
6816
7814
|
],
|
|
6817
|
-
"
|
|
6818
|
-
"
|
|
6819
|
-
|
|
6820
|
-
|
|
7815
|
+
"isReadonly": false,
|
|
7816
|
+
"isOptional": false,
|
|
7817
|
+
"releaseTag": "Beta",
|
|
7818
|
+
"name": "settingsModelSlotted",
|
|
7819
|
+
"propertyTypeTokenRange": {
|
|
7820
|
+
"startIndex": 1,
|
|
7821
|
+
"endIndex": 3
|
|
6821
7822
|
},
|
|
6822
|
-
"
|
|
7823
|
+
"isStatic": false,
|
|
6823
7824
|
"isProtected": false,
|
|
6824
|
-
"
|
|
6825
|
-
|
|
7825
|
+
"isAbstract": false
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"kind": "Property",
|
|
7829
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsOpen:member",
|
|
7830
|
+
"docComment": "/**\n * Whether the settings modal is open.\n */\n",
|
|
7831
|
+
"excerptTokens": [
|
|
6826
7832
|
{
|
|
6827
|
-
"
|
|
6828
|
-
"
|
|
6829
|
-
"startIndex": 1,
|
|
6830
|
-
"endIndex": 2
|
|
6831
|
-
},
|
|
6832
|
-
"isOptional": false
|
|
7833
|
+
"kind": "Content",
|
|
7834
|
+
"text": "settingsOpen: "
|
|
6833
7835
|
},
|
|
6834
7836
|
{
|
|
6835
|
-
"
|
|
6836
|
-
"
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
"
|
|
7837
|
+
"kind": "Content",
|
|
7838
|
+
"text": "boolean"
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
"kind": "Content",
|
|
7842
|
+
"text": ";"
|
|
6841
7843
|
}
|
|
6842
7844
|
],
|
|
7845
|
+
"isReadonly": false,
|
|
6843
7846
|
"isOptional": false,
|
|
6844
|
-
"
|
|
6845
|
-
"name": "
|
|
7847
|
+
"releaseTag": "Beta",
|
|
7848
|
+
"name": "settingsOpen",
|
|
7849
|
+
"propertyTypeTokenRange": {
|
|
7850
|
+
"startIndex": 1,
|
|
7851
|
+
"endIndex": 2
|
|
7852
|
+
},
|
|
7853
|
+
"isStatic": false,
|
|
7854
|
+
"isProtected": false,
|
|
7855
|
+
"isAbstract": false
|
|
6846
7856
|
},
|
|
6847
7857
|
{
|
|
6848
|
-
"kind": "
|
|
6849
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6850
|
-
"docComment": "",
|
|
7858
|
+
"kind": "Property",
|
|
7859
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsPlatformModelInfoVisible:member",
|
|
7860
|
+
"docComment": "/**\n * Built-in context window / provider rows shown under the model slot.\n */\n",
|
|
6851
7861
|
"excerptTokens": [
|
|
6852
7862
|
{
|
|
6853
7863
|
"kind": "Content",
|
|
6854
|
-
"text": "
|
|
7864
|
+
"text": "get settingsPlatformModelInfoVisible(): "
|
|
6855
7865
|
},
|
|
6856
7866
|
{
|
|
6857
|
-
"kind": "
|
|
6858
|
-
"text": "
|
|
6859
|
-
"canonicalReference": "@genesislcap/ai-assistant!AiAssistantAnimation:type"
|
|
7867
|
+
"kind": "Content",
|
|
7868
|
+
"text": "boolean"
|
|
6860
7869
|
},
|
|
6861
7870
|
{
|
|
6862
7871
|
"kind": "Content",
|
|
6863
|
-
"text": "
|
|
6864
|
-
}
|
|
7872
|
+
"text": ";"
|
|
7873
|
+
}
|
|
7874
|
+
],
|
|
7875
|
+
"isReadonly": true,
|
|
7876
|
+
"isOptional": false,
|
|
7877
|
+
"releaseTag": "Beta",
|
|
7878
|
+
"name": "settingsPlatformModelInfoVisible",
|
|
7879
|
+
"propertyTypeTokenRange": {
|
|
7880
|
+
"startIndex": 1,
|
|
7881
|
+
"endIndex": 2
|
|
7882
|
+
},
|
|
7883
|
+
"isStatic": false,
|
|
7884
|
+
"isProtected": false,
|
|
7885
|
+
"isAbstract": false
|
|
7886
|
+
},
|
|
7887
|
+
{
|
|
7888
|
+
"kind": "Property",
|
|
7889
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsSessionTokensVisible:member",
|
|
7890
|
+
"docComment": "/**\n * Whether session token usage should render on the Cost tab.\n */\n",
|
|
7891
|
+
"excerptTokens": [
|
|
6865
7892
|
{
|
|
6866
7893
|
"kind": "Content",
|
|
6867
|
-
"text": "): "
|
|
7894
|
+
"text": "get settingsSessionTokensVisible(): "
|
|
6868
7895
|
},
|
|
6869
7896
|
{
|
|
6870
7897
|
"kind": "Content",
|
|
6871
|
-
"text": "
|
|
7898
|
+
"text": "boolean"
|
|
6872
7899
|
},
|
|
6873
7900
|
{
|
|
6874
7901
|
"kind": "Content",
|
|
6875
7902
|
"text": ";"
|
|
6876
7903
|
}
|
|
6877
7904
|
],
|
|
6878
|
-
"
|
|
6879
|
-
"
|
|
6880
|
-
"startIndex": 4,
|
|
6881
|
-
"endIndex": 5
|
|
6882
|
-
},
|
|
7905
|
+
"isReadonly": true,
|
|
7906
|
+
"isOptional": false,
|
|
6883
7907
|
"releaseTag": "Beta",
|
|
7908
|
+
"name": "settingsSessionTokensVisible",
|
|
7909
|
+
"propertyTypeTokenRange": {
|
|
7910
|
+
"startIndex": 1,
|
|
7911
|
+
"endIndex": 2
|
|
7912
|
+
},
|
|
7913
|
+
"isStatic": false,
|
|
6884
7914
|
"isProtected": false,
|
|
6885
|
-
"
|
|
6886
|
-
"parameters": [
|
|
6887
|
-
{
|
|
6888
|
-
"parameterName": "animations",
|
|
6889
|
-
"parameterTypeTokenRange": {
|
|
6890
|
-
"startIndex": 1,
|
|
6891
|
-
"endIndex": 3
|
|
6892
|
-
},
|
|
6893
|
-
"isOptional": false
|
|
6894
|
-
}
|
|
6895
|
-
],
|
|
6896
|
-
"isOptional": false,
|
|
6897
|
-
"isAbstract": false,
|
|
6898
|
-
"name": "setEnabledAnimations"
|
|
7915
|
+
"isAbstract": false
|
|
6899
7916
|
},
|
|
6900
7917
|
{
|
|
6901
7918
|
"kind": "Property",
|
|
6902
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#
|
|
6903
|
-
"docComment": "/**\n *
|
|
7919
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#settingsVendorSwitcherVisible:member",
|
|
7920
|
+
"docComment": "/**\n * Built-in vendor cards when the host registered a multi-vendor {@link (AIProviderSwitcher:interface)}.\n */\n",
|
|
6904
7921
|
"excerptTokens": [
|
|
6905
7922
|
{
|
|
6906
7923
|
"kind": "Content",
|
|
6907
|
-
"text": "
|
|
7924
|
+
"text": "get settingsVendorSwitcherVisible(): "
|
|
6908
7925
|
},
|
|
6909
7926
|
{
|
|
6910
7927
|
"kind": "Content",
|
|
@@ -6915,10 +7932,10 @@
|
|
|
6915
7932
|
"text": ";"
|
|
6916
7933
|
}
|
|
6917
7934
|
],
|
|
6918
|
-
"isReadonly":
|
|
7935
|
+
"isReadonly": true,
|
|
6919
7936
|
"isOptional": false,
|
|
6920
7937
|
"releaseTag": "Beta",
|
|
6921
|
-
"name": "
|
|
7938
|
+
"name": "settingsVendorSwitcherVisible",
|
|
6922
7939
|
"propertyTypeTokenRange": {
|
|
6923
7940
|
"startIndex": 1,
|
|
6924
7941
|
"endIndex": 2
|
|
@@ -7382,37 +8399,6 @@
|
|
|
7382
8399
|
"isAbstract": false,
|
|
7383
8400
|
"name": "toggleAgentPicker"
|
|
7384
8401
|
},
|
|
7385
|
-
{
|
|
7386
|
-
"kind": "Method",
|
|
7387
|
-
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleSettings:member(1)",
|
|
7388
|
-
"docComment": "",
|
|
7389
|
-
"excerptTokens": [
|
|
7390
|
-
{
|
|
7391
|
-
"kind": "Content",
|
|
7392
|
-
"text": "toggleSettings(): "
|
|
7393
|
-
},
|
|
7394
|
-
{
|
|
7395
|
-
"kind": "Content",
|
|
7396
|
-
"text": "void"
|
|
7397
|
-
},
|
|
7398
|
-
{
|
|
7399
|
-
"kind": "Content",
|
|
7400
|
-
"text": ";"
|
|
7401
|
-
}
|
|
7402
|
-
],
|
|
7403
|
-
"isStatic": false,
|
|
7404
|
-
"returnTypeTokenRange": {
|
|
7405
|
-
"startIndex": 1,
|
|
7406
|
-
"endIndex": 2
|
|
7407
|
-
},
|
|
7408
|
-
"releaseTag": "Beta",
|
|
7409
|
-
"isProtected": false,
|
|
7410
|
-
"overloadIndex": 1,
|
|
7411
|
-
"parameters": [],
|
|
7412
|
-
"isOptional": false,
|
|
7413
|
-
"isAbstract": false,
|
|
7414
|
-
"name": "toggleSettings"
|
|
7415
|
-
},
|
|
7416
8402
|
{
|
|
7417
8403
|
"kind": "Method",
|
|
7418
8404
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#toggleShowAgentSwitchIndicator:member(1)",
|
|
@@ -7628,6 +8614,36 @@
|
|
|
7628
8614
|
"isProtected": false,
|
|
7629
8615
|
"isAbstract": false
|
|
7630
8616
|
},
|
|
8617
|
+
{
|
|
8618
|
+
"kind": "Property",
|
|
8619
|
+
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#vendorSwitchDisabled:member",
|
|
8620
|
+
"docComment": "/**\n * Whether vendor switching is blocked while the assistant is busy (except during widget steps).\n */\n",
|
|
8621
|
+
"excerptTokens": [
|
|
8622
|
+
{
|
|
8623
|
+
"kind": "Content",
|
|
8624
|
+
"text": "vendorSwitchDisabled: "
|
|
8625
|
+
},
|
|
8626
|
+
{
|
|
8627
|
+
"kind": "Content",
|
|
8628
|
+
"text": "boolean"
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
"kind": "Content",
|
|
8632
|
+
"text": ";"
|
|
8633
|
+
}
|
|
8634
|
+
],
|
|
8635
|
+
"isReadonly": false,
|
|
8636
|
+
"isOptional": false,
|
|
8637
|
+
"releaseTag": "Beta",
|
|
8638
|
+
"name": "vendorSwitchDisabled",
|
|
8639
|
+
"propertyTypeTokenRange": {
|
|
8640
|
+
"startIndex": 1,
|
|
8641
|
+
"endIndex": 2
|
|
8642
|
+
},
|
|
8643
|
+
"isStatic": false,
|
|
8644
|
+
"isProtected": false,
|
|
8645
|
+
"isAbstract": false
|
|
8646
|
+
},
|
|
7631
8647
|
{
|
|
7632
8648
|
"kind": "Property",
|
|
7633
8649
|
"canonicalReference": "@genesislcap/ai-assistant!FoundationAiAssistant#visibleMessages:member",
|