Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7478c77
Merge pull request #390 from thoughtspot/main
ShashiSubramanya Jan 7, 2026
93c89a3
link fixes
ShashiSubramanya Jan 7, 2026
296aed3
SCAL-289827
ShashiSubramanya Jan 9, 2026
b135512
SCAL-290499 Update URL handling to preserve subsection hashes in iframe
shivam-kumar-ts Jan 13, 2026
61d599a
edits
ShashiSubramanya Jan 19, 2026
cf29dd9
rls example fixes
ShashiSubramanya Jan 20, 2026
62300e4
v1, v2, and v3 images for clarity
ShashiSubramanya Jan 20, 2026
c429a14
script changes for link handling
ShashiSubramanya Jan 12, 2026
35c0d58
removed extra space
ShashiSubramanya Jan 19, 2026
2f351fc
SCAL-281811 documentation fix
ShashiSubramanya Jan 22, 2026
0afff7b
SCAL-291802
ShashiSubramanya Jan 22, 2026
135733b
copyright update
ShashiSubramanya Jan 22, 2026
637cf34
Merge pull request #402 from thoughtspot/main
ShashiSubramanya Feb 1, 2026
7a28921
Merge pull request #404 from thoughtspot/main
ShashiSubramanya Feb 3, 2026
ec4d544
link target property
ShashiSubramanya Feb 3, 2026
3292d71
edits
ShashiSubramanya Feb 5, 2026
529d53e
Merge pull request #408 from thoughtspot/26.2.0.cl
ShashiSubramanya Feb 11, 2026
4962e70
version menu update
ShashiSubramanya Feb 11, 2026
2d89ef5
Merge branch 'release' into main
ShashiSubramanya Feb 11, 2026
4393af2
minor edits to table format
ShashiSubramanya Feb 12, 2026
9c04b46
auto mode flag update
ShashiSubramanya Feb 13, 2026
135ff28
changelog update
ShashiSubramanya Feb 13, 2026
897851f
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
1570662
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
785cd05
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
f02a112
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
3fee8bb
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
b058089
Update abac_rls-variables.adoc
bryanthowell-ts Feb 17, 2026
603a9f6
minor edits and typo fixes
ShashiSubramanya Feb 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
335 changes: 201 additions & 134 deletions modules/ROOT/pages/abac_rls-variables.adoc

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion modules/ROOT/pages/api-changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This changelog lists only the changes introduced in the Visual Embed SDK. For in
You can now embed the Spotter 3 experience in your application and use features such as Auto mode for automatic data model selection, Chat history, and a new chat prompt interface.

* To enable the new chat prompt interface, set `updatedSpotterChatPrompt` to `true`.
* To use Auto mode, set the `worksheetId` to `_spotter_data_source_discovery_id`.
* To use Auto mode, set the `worksheetId` to `auto_mode`.
* To enable Chat history, set `enablePastConversationsSidebar` to `true`.

For more information, see xref:embed-spotter.adoc[Embedding Spotter] and xref:embed-ai-analytics.adoc#_feature_status_and_availability_in_embed_mode[Features available with Spotter 3 experience].
Expand All @@ -28,6 +28,11 @@ Events::
* `HostEvent.AddToCoaching` to trigger the *Add to coaching* action in a Spotter conversation session.
* `HostEvent.StartNewSpotterConversation` to trigger the action to start a new chat session with Spotter.

[NOTE]
====
On Spotter embed deployments running version 26.2.0.cl or later, the *Add to Coaching* feature is enabled by default. To disable or hide the **Add to Coaching** button, use the xref:Action.adoc#_inconversationtraining[InConversationTraining] action ID.
====

|[tag greenBackground]#NEW FEATURE# a| **Liveboard experience enhancements** +

Styling and grouping::
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/embed-ai-analytics.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Automatic data source discovery and model selection by Spotter.

**Embed SDK component**: Use `SpotterEmbed`. +

**Default state in embed**: Disabled by default. To enable this feature, set the `worksheetId` attribute to `_spotter_data_source_discovery_id` in the SDK. When the Auto mode is enabled, the *Preview data* option in the conversation panel is hidden.
**Default state in embed**: Disabled by default. To enable this feature, set the `worksheetId` attribute to `auto_mode` in the SDK. When the Auto mode is enabled, the *Preview data* option in the conversation panel is hidden.

|link:https://docs.thoughtspot.com/cloud/latest/spotter-conversation-history[Chat history, window=_blank] +

Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/embed-spotter.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const spotterEmbed = new SpotterEmbed(document.getElementById('ts-embed'), {
width: '100%',
height: '100%',
},
worksheetId: '<%=datasourceGUID%>', // ID of the data source object. To use the Auto mode, set the ID to '_spotter_data_source_discovery_id',
worksheetId: '<%=datasourceGUID%>', // ID of the data source object. To use the Auto mode, set the ID to 'auto_mode',
//... other attributes
});
----
Expand Down Expand Up @@ -457,7 +457,7 @@ if (container) {
height: '100%', // Set the height of the embedded frame
width: '100%', // Set the width of the embedded frame
},
worksheetId: 'your-worksheet-id', // ID of the data source object to query data from. For automatic model discovery and selection (Auto mode), specify '_spotter_data_source_discovery_id'
worksheetId: 'your-worksheet-id', // ID of the data source object to query data from. For automatic model discovery and selection (Auto mode), specify 'auto_mode'
updatedSpotterChatPrompt: true, // Enable new chat interface
enablePastConversationsSidebar: true, // Enable chat history
//... other configuration attributes
Expand Down
5 changes: 3 additions & 2 deletions modules/ROOT/pages/spotter-apis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ The following example shows the response text contents for the `answer` message
The session ID and generation number serve as the data context for the Answer. You can use this information to create a new conversation session using `/api/rest/2.0/ai/agent/conversation/create`, or download the answer via the `/api/rest/2.0/report/answer` API endpoint.

[#process_results]
== Process results generated from Spotter APIs
== Processing results generated from Spotter APIs
To export or download the Answer data generated by the Spotter APIs, use the xref:data-report-v2-api.adoc#exportSpotterData[Answer report] API.

[NOTE]
Expand All @@ -1009,7 +1009,7 @@ The `POST /api/rest/2.0/ai/data-source-suggestions` API provides relevant data s

[width="100%" cols="2,4"]
[options='header']
|=====
|====
|Parameter| Description
|`metadata_context` a| Required. Specify one of the following attributes to set the metadata context:

Expand All @@ -1029,6 +1029,7 @@ __Optional__ | __Integer__. Sets a limit on the number of sub-questions to retur
__Optional__| __Boolean__. When set to `true`, disables cache and forces fresh computation.
|`ai_context` +
__Optional__. a| Additional context to guide the response. Define the following attributes as needed:
|====

==== Example request

Expand Down
30 changes: 30 additions & 0 deletions src/configs/doc-configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,36 @@ module.exports = {
subLabel: 'Cloud (Latest)',
iframeUrl: 'https://developer-docs-26-2-0-cl.vercel.app/docs/',
},
{
label: '10.15.0.cl',
link: '10.15.0.cl',
subLabel: 'Cloud',
iframeUrl: 'https://developer-docs-10-15-0-cl.vercel.app/docs/',
},
{
label: '10.14.0.cl',
link: '10.14.0.cl',
subLabel: 'Cloud',
iframeUrl: 'https://developer-docs-10-14-0-cl.vercel.app/docs/',
},
{
label: '10.13.0.cl',
link: '10.13.0.cl',
subLabel: 'Cloud',
iframeUrl: 'https://developer-docs-10-13-0-cl.vercel.app/docs/',
},
{
label: '10.10.0.sw',
link: '10.10.0.sw',
subLabel: 'Software (Latest)',
iframeUrl: 'https://visual-embed-sdk-10-10.vercel.app/docs/',
},
{
label: '10.1.0.sw',
link: '10.1.0.sw',
subLabel: 'Software',
iframeUrl: 'https://visual-embed-sdk-10-1.vercel.app/docs/',
},
],
CUSTOM_PAGE_ID: {
API_PLAYGROUND: 'restV2-playground',
Expand Down
Loading