<?xml version="1.0" encoding="utf-8" ?>
	<rss version="2.0" xml:base="https://www.thoughtspot.com/" xmlns:ts="https://thoughtspot.com" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
		<channel>
			<title>ThoughtSpot</title>
			<link>https://www.thoughtspot.com/</link>
			<description></description>
			<language>en</language>
			<atom:link href="https://www.thoughtspot.com/rss.xml" rel="self" type="application/rss+xml" />	
	
				<item>
					<title><![CDATA[SQL-Shaped Intent: The Engineering Behind AgentQL]]></title>	  
					<link>https://www.thoughtspot.com/blog/agentql-sql-shaped-intent</link>
					<description><![CDATA[<p>Our CEO recently <a href="https://www.linkedin.com/feed/update/urn:li:activity:7483164237205250048/">wrote</a> reaffirming an architectural decision ThoughtSpot made when LLMs first emerged: <strong>we do not use LLMs to directly generate SQL</strong>. </p><p>My team has spent the better part of a year building <strong>AgentQL</strong>: a capability that doubles down on our decision. </p><p>So let me explain what we actually built, why it doesn&apos;t just honor that architectural decision but depends on it, and the engineering choices underneath.</p><h2>The Problem We Were Handed: The Expressibility Gap</h2><p><a href="https://www.thoughtspot.com/product/agents/spotter">Spotter answers most questions through search tokens</a>: a structured, readable representation of intent that a business user can inspect and correct without knowing any query language. Tokens are the right default, and they remain the primary path.</p><p>But we kept hitting a wall we came to call the expressibility gap. We saw queries like “Show me customers whose spend this fiscal year declined versus last, ranked by the size of the drop.&quot; and &quot;Compare each region&apos;s contribution margin against the company average.” Multi-step comparisons, level-of-detail calculations, cohort logic. </p><p>Our query engine could answer every one of these and has been able to for years. The token grammar just couldn&apos;t <em>state</em> them. And every time we extended the grammar and retrained Spotter to emit it, new analytical features would land, and the gap would reopen.</p><p><strong>We needed a richer language for expressing intent, which is how we came to build AgentQL. We did not need–and refused to build–a second execution path.</strong></p><h2>The Design Decision: SQL-Shaped Intent</h2><p>We chose SQL syntax for the intent language for two practical engineering reasons:</p><ul><li><p>It’s the most precise, most widely understood notation for analytical questions ever created. </p></li><li><p>It’s the language LLMs are most heavily trained on. Any bespoke DSL we invented would have been worse on both counts.</p></li></ul><p>But we took SQL&apos;s <em>syntax</em> and rejected SQL&apos;s <em>execution model</em>. That is the entire design. It&apos;s also the first principle behind AgentQL: <strong>intent and execution are separate layers.</strong> </p><p>An AgentQL statement is written against the ThoughtSpot Model: the business names your analysts curated. Not physical tables or warehouse columns. </p><p>And it is never, under any circumstance, executed against your database. There is no code path by which it could be. We know, because we built the code paths.</p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;"><strong>What actually happens:</strong><span><strong> T</strong>he AgentQL statement is parsed into a query specification, the same internal representation every ThoughtSpot query becomes. </span><b></b></p>
<p style="margin: 0 0 12px; color: #ffffff !important;"><span>That spec is handed to our deterministic query-generation engine, the same one that produces every query in ThoughtSpot, whether it starts from a Liveboard, a search, or a Spotter conversation. That engine writes the SQL that runs. The LLM's output is input to a compiler, not a query to a database.</span></p>
<p style="margin: 0 0 12px; color: #ffffff !important;"><span>We call this SQL-shaped intent. </span></p>
</div></div><p>The distinction from text-to-SQL is not subtle:</p><div class="wysiwyg_wysiwyg__WvjUC"><div dir="ltr" align="center">
<table><colgroup><col width="233"><col width="233"><col width="233"></colgroup>
<thead>
<tr>
<th scope="col"></th>
<th scope="col">
<p dir="ltr"><strong>Text-to-SQL</strong></p>
</th>
<th scope="col">
<p dir="ltr"><strong>ThoughtSpot AgentQL</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p dir="ltr"><span>What the LLM writes</span></p>
</td>
<td>
<p dir="ltr"><span>The query that runs</span></p>
</td>
<td>
<p dir="ltr"><span>A description of what's wanted</span></p>
</td>
</tr>
<tr>
<td>
<p dir="ltr"><span>What it references</span></p>
</td>
<td>
<p dir="ltr"><span>Physical tables and columns</span></p>
</td>
<td>
<p dir="ltr"><span>The Model's business names</span></p>
</td>
</tr>
<tr>
<td>
<p dir="ltr"><span>What executes</span></p>
</td>
<td>
<p dir="ltr"><span>The LLM's output, verbatim</span></p>
</td>
<td>
<p dir="ltr"><span>Deterministic SQL compiled by our proprietary engine</span></p>
</td>
</tr>
<tr>
<td>
<p dir="ltr"><span>Who enforces security, joins, metrics, calendars</span></p>
</td>
<td>
<p dir="ltr"><span>The LLM (hopefully, per query)</span></p>
</td>
<td>
<p dir="ltr"><span>The engine (always, by construction)</span></p>
</td>
</tr>
</tbody>
</table>
</div></div><p>A concrete example. &quot;Total sales and total returns by product category&quot; might be expressed as:</p><div class="wysiwyg_wysiwyg__WvjUC"><pre style="box-shadow: none;"><code>SELECT "t1"."Product Category",
       SUM("t1"."Sales Amount") AS "Total Sales",
       SUM("t1"."Return Amount") AS "Total Returns"
FROM "Retail Sales" AS "t1"
GROUP BY "t1"."Product Category"</code>
</pre></div><p>That statement never runs, and it hides a trap. Behind the Model, sales and returns live in two separate fact tables that share the product dimension: <a href="https://www.thoughtspot.com/fact-and-dimension/schemas-scale-how-avoid-common-data-modeling-traps">a classic chasm trap</a>.</p><p>Hand-written SQL that joins them directly fans out the rows and silently inflates both totals. The compiler knows better, because the Model does: it aggregates each fact at its own grain before combining them, resolves the declared join paths, and injects the querying user&apos;s <a href="https://docs.thoughtspot.com/cloud/26.5.0.cl/rls-rule-builder-reference">row-level security filters</a>. You can inspect the compiled SQL. The intent took seconds to express; the semantics it inherited took us a decade to engineer.</p><p><strong>One consequence worth stating plainly:</strong> AgentQL is deliberately not all of SQL. It&apos;s a restricted dialect, and the restrictions are the contract. A statement must be fully resolvable against the Model, so the compiler rejects anything it can&apos;t deterministically govern, from SELECT * to constructs that would bypass the Model&apos;s semantics. </p><p>We didn&apos;t restrict the dialect because parsing full SQL is hard. We restricted it because every accepted statement is a promise that the compiled query is governed, and we only accept statements we can keep that promise for.</p><h2>Why We Refused to Make the LLM Do More</h2><p>It&apos;s a fair question: LLMs are getting better fast, so why not just let a frontier LLM write the warehouse SQL and validate it after?</p><p>Because we&apos;ve spent years engineering for what enterprise data actually looks like, and none of it is LLM-friendly. Real data models aren&apos;t flat tables. They&apos;re multi-star schemas with chasm traps and fan traps, like the sales-and-returns example above: join patterns where the wrong numbers look perfectly plausible.</p><p>Competent engineers get these wrong; we&apos;ve watched it happen. They carry PII that must stay secured for every user on every query. They run different financial calendars per business unit. They define semi-additive measures like inventory and account balances, where a naive SUM across time is simply the wrong answer.</p><p>Ask an LLM to re-derive all of that, probabilistically, on every question, and you get exactly two things: uncertainty and a token bill.</p><p>Our engine already encodes those <a href="https://www.thoughtspot.com/blog/spotter-semantics">semantics</a>. So the engineering answer was obvious, and it became the second principle: <strong>keep the LLM&apos;s job thin.</strong> Understand the question, express it compactly, and stop there. Everything that determines whether the number is <em>right</em> is inherited from the Model by construction.</p><p>The LLM cannot forget your row-level security, because it never writes the query that runs. It cannot pick a wrong join path, because the Model&apos;s joins are applied by the compiler. It cannot drift from your revenue definition, because there is exactly one, and every query compiles through it.</p><p>The failure mode matters just as much, and it&apos;s the third principle: <strong>a bad query is a compile error, not an incident.</strong> When the LLM expresses intent wrong, you get a wrong-but-governed answer or a clear validation error: the statement is rejected at compile time with a reason. </p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;">What you never get is an ungoverned query touching your data. In text-to-SQL systems, a hallucination is a live query. In ours, it's a compile error.</p>
</div></div><p>These principles buy one more thing, and it&apos;s the one our customers care about most: trust. A deterministic compiler means the same question produces the same query specification, the same compiled SQL, and the same numbers, no matter which LLM expressed the intent or how it phrased it. Plenty of text-to-SQL tools will also show you the SQL that ran.</p><p>The difference is what reading it buys you. There, you&apos;re auditing an LLM&apos;s improvisation, query by query: did it pick the right joins, apply the right security, and use the right definition of revenue? </p><p>Here, the SQL was compiled from the Model&apos;s governed definitions, so those questions are already answered. Verifying an answer means confirming the intent was understood, not re-deriving correctness by hand.</p><h2>The Consequence: No Charging by Tokens</h2><p>There&apos;s a byproduct of this architecture that shows up on the invoice rather than in the demo. Because the LLM&apos;s role is deliberately small, the heavy lifting runs on our deterministic engine, not on metered inference. A question doesn&apos;t spin up an agent that burns <a href="https://www.thoughtspot.com/blog/token-maxxing-and-inference-ops-the-new-finops-frontier">tokens</a> re-reasoning about your schema.</p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;">That's the engineering fact behind a decision the company made at the Spotter 3 launch: <a href="https://www.thoughtspot.com/pricing">no charging by tokens consumed</a>. Our architecture is what made that choice available; the business chose to pass the benefit on.</p>
</div></div><p>Nobody wants an experience where every question comes with a meter running in the background. With this architecture, it doesn&apos;t have to.</p><h2>The Same Bet, Doubled Down</h2><p>Much of the industry is betting that with enough prompting, guardrails, and retries, LLMs will write trustworthy warehouse SQL. We made the opposite bet years before LLMs existed. AgentQL doubles down on it: the LLM should never write the query that executes. LLMs understand intent. A governed engine produces deterministic answers.</p><p>For Spotter users, the payoff is immediate: a far wider range of analytical questions answered today, without waiting for the token grammar to grow or for Spotter to be retrained on a new capability. If the engine can answer it, AgentQL can now ask it.</p><p>AgentQL gives intent a much richer language. The trust architecture didn&apos;t move an inch: it&apos;s in the engine, in the Model, and in your hands to verify. This is engineering by design, not by compromise - so <strong>you never have to choose between speed and trust.</strong></p><p><a href="https://www.thoughtspot.com/demo">Start your personalized demo</a> to see how. </p>]]></description>
					<pubDate>Wed, 12 Aug 2026 21:23:00 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/agentql-sql-shaped-intent">SQL-Shaped Intent: The Engineering Behind AgentQL</a>]]></guid>
					<author> (Dushyant Bansal)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1786567782-dushyant-bansal.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Director of Engineering]]></ts:authorTitle>
					<ts:authorName>Dushyant Bansal</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[How CWT Turned AI Analytics into a Multi-Million Dollar Asset]]></title>	  
					<link>https://www.thoughtspot.com/blog/how-cwt-drives-value-with-thoughtspot-and-snowflake</link>
					<description><![CDATA[<p>As the head of ThoughtSpot’s international business, based in London, I have the privilege of working with some of the most forward-thinking digital leaders across EMEA. But every now and then, a customer journey comes along that perfectly encapsulates why we do what we do.</p><p>At our recent <a href="https://www.thoughtspot.com/blog/agentic-analytics-playbook-ldn"><strong>Agentic Analytics Playbook EMEA</strong> event</a> in London, I had the pleasure of welcoming Craig Haughan, VP of Data Engineering—who led the data and analytics charge for CWT—on stage alongside Jimmy Hall, who leads Snowflake here in the UK and Ireland.</p><p>For those who don’t know CWT, they are an absolute powerhouse in corporate travel. If you’ve booked business flights, hotels, or itineraries, chances are CWT’s engines are running in the background. </p><p>That means managing millions upon millions of complex, fast-moving data points.</p><p>Historically, legacy BI kept this data locked away in rigid, pre-defined PDFs. Today, CWT puts live, conversational insights directly into the hands of <strong>over 100,000 users</strong>. </p><p>In fact, their analytics setup is so advanced that when they were acquired, the parent company explicitly called out CWT’s analytics capabilities as a primary driver of the acquisition.</p><p>Here is how Craig and his team leveraged ThoughtSpot and Snowflake to turn raw data into a premier business asset.</p><h2>How Did CWT Go From Static PDFs Into Sub-Second Self-Service?</h2><p>Before partnering with us, CWT’s data landscape was traditional, centralized, and slow. Business users relied on batch processing, legacy tools like Cognos, and static PDFs.</p><p>Craig walked our London audience through CWT’s analytics evolution, and it’s a masterclass in modernizing a data stack:</p><div class="wysiwyg_wysiwyg__WvjUC"><table style="border-collapse: collapse;"><colgroup> <col style="width: 50%;"> <col style="width: 50%;"> </colgroup>
<thead>
<tr>
<th style="border: 1px solid #ddd; padding: 8px;">The Legacy Era before ThoughtSpot</th>
<th style="border: 1px solid #ddd; padding: 8px;">The Modern Era with ThoughtSpot</th>
</tr>
</thead>
<tbody>
<tr>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Static &amp; Rigid:</strong> Hard-coded reports and flat PDFs.</td>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Interactive &amp; Live:</strong> Instant search across billions of live rows.</td>
</tr>
<tr>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Heavy Engineering:</strong> Constantly building and maintaining BI cubes.</td>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>No Cubes Required:</strong> Querying live data directly at the source.</td>
</tr>
<tr>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Gatekept Data:</strong> IT teams acting as bottlenecks for basic questions.</td>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>True Self-Service:</strong> Employees and customers ask their own questions.</td>
</tr>
<tr>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Slow Infrastructure:</strong> Batch processing on on-prem databases.</td>
<td style="border: 1px solid #ddd; padding: 8px;"><strong>Sub-Second Speed:</strong> 80% of live queries resolve in under one second.</td>
</tr>
</tbody>
</table></div><h2>Why ThoughtSpot? The Power of Natural Language</h2><p>CWT first crossed paths with ThoughtSpot nearly a decade ago, and over the years, our partnership has scaled into a deep integration of AI-driven <a href="https://www.thoughtspot.com/product/agents">conversational analytics</a>.</p><p>From my conversations with Craig, the key differentiator has always been our <a href="https://www.thoughtspot.com/blog/how-ai-and-internal-innovation-birthed-agentspot">relentless pace of innovation</a>:</p><p><em>&quot;You always worry about whether someone is going to come along with a better, more innovative product. But ThoughtSpot has always managed to stay a few years ahead of competitors. Where others focused on basic visualizations, ThoughtSpot focused on AI, search, and making self-service a reality.&quot; </em>- Craig Haughan, VP of Data Engineering, CWT</p><h2>The &quot;Strawberries and Cream&quot; Synergy: ThoughtSpot + Snowflake</h2><p>After CWT implemented ThoughtSpot, it was quickly clear that there was a critical scalability issue as a result of their outdated data warehouse platform. </p><p>Since we were in London during the height of the Wimbledon season, I couldn&apos;t help but use a very British analogy on stage: ThoughtSpot and Snowflake are the &quot;strawberries and cream&quot; of the modern data stack. You simply can&apos;t have world-class analytics without a world-class data platform.</p><p>By connecting ThoughtSpot’s <a href="https://www.thoughtspot.com/blog/spotter-semantics">intuitive semantic search layer</a> to Snowflake’s highly scalable cloud data platform, CWT immediately put any scalability concerns in the past and achieved high-concurrency, real-time analytics.</p><ul><li><p><strong>Horizontal Scaling:</strong> CWT serves over 100,000 regular users, including corporate travel clients and call center agents. Snowflake dynamically spins warehouses up and down to handle this massive concurrency without a single performance hiccup.</p></li><li><p><strong>Direct Live Query:</strong> Instead of extracting massive datasets into slow BI cubes, ThoughtSpot queries Snowflake directly.</p></li><li><p><strong>Unstructured Data Integration:</strong> CWT can pull together structured travel data with unstructured policy information (like complex corporate travel rules), allowing agents to easily verify travel compliance on the fly.</p></li></ul><h2>How Did CWT&apos;s Analytics Platform Influence Its Acquisition?</h2><p>When CWT was acquired, Craig’s team faced the ultimate test. They spent three months showcasing their ThoughtSpot-powered self-service platform to their new parent company.</p><p>The verdict? CWT’s self-service capabilities were recognized as a generation ahead of what was currently in the market. Instead of replacing CWT’s stack, their platform with ThoughtSpot and Snowflake was chosen to roll out to their entire combined customer base.</p><p>As a sales leader, this is the ultimate validation of ROI: <strong>building an analytics system so robust that it actively increases the valuation of your entire enterprise.</strong></p><h2>Craig’s Playbook for Analytics Success</h2><p>Craig shared two core pieces of advice that I think every data leader needs to hear:</p><h3>1. The &quot;Give a Sh*t&quot; (GAS) Adoption Model</h3><p>To get value out of data, you have to find the people who actually care about the outcome.</p><p><em>&quot;There is no point in sending someone a PDF they aren&apos;t going to open. You have to find the people in your organization who really care and want to be successful with data. They will be infectious to everyone else. If your team doesn&apos;t understand why they should care about the data, you won&apos;t get adoption.&quot; </em>- Craig Haughan, VP of Data Engineering, CWT</p><h3>2. Be Brave</h3><p>Entering the world of AI and modern BI can feel daunting, but inaction is the biggest risk.</p><p><em>&quot;Be brave. When you&apos;re jumping into the AI/BI world, it is scary. But you&apos;ve got to try it. I always tell my team: you&apos;re not trying hard enough if you don&apos;t break things once in a while (just don&apos;t break them in a bad way!). If you don&apos;t adopt AI, you&apos;re going to get left behind.&quot; </em>- Craig Haughan, VP of Data Engineering, CWT</p><h2>How You Can Experience the Future of Analytics</h2><p>CWT’s journey proves that when you pair a powerful data cloud with intuitive, search-driven AI analytics, you don&apos;t just change how decisions are made—you fundamentally change the value of your business.</p><p>If you&apos;re based in the UK, Europe, or anywhere across our international markets, my team and I would love to show you how we can replicate this success for your business.</p><p><em>Ready to bring search-driven, agentic AI analytics to your data?</em><a href="https://www.thoughtspot.com/"><em> Explore ThoughtSpot today</em></a><em>.</em></p>]]></description>
					<pubDate>Mon, 10 Aug 2026 17:37:14 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/how-cwt-drives-value-with-thoughtspot-and-snowflake">How CWT Turned AI Analytics into a Multi-Million Dollar Asset</a>]]></guid>
					<author> (James Smith)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1773255302-james-smith.png</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Senior Vice President]]></ts:authorTitle>
					<ts:authorName>James Smith</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Introducing AgentSpot: Your Workforce, Multiplied]]></title>	  
					<link>https://www.thoughtspot.com/blog/introducing-agentspot</link>
					<description><![CDATA[<p>Your team already knows when a campaign starts to underperform, when spend spikes, or when web traffic shifts. What you don&apos;t have is the speed to turn that insight into action. Someone still has to investigate, decide what to do, pull in the right people, and coordinate the work. That takes time.</p><p>As a data-driven CMO, I&apos;ve lived this every day. I can know the instant something changes in the data, but there&apos;s still a large gap between insight and action. </p><p>Today, we&apos;re closing that gap. </p><p>I’m excited to share that we’ve launched <a href="https://www.thoughtspot.com/agentspot">AgentSpot</a>, the agentic workforce platform to build workflows that decide, act, and deliver across every system your business runs on, grounded in your data. Anyone on your team can now build a team of agents that turns the insights they uncover into action.</p><h2>A new operating model for work</h2><p>AgentSpot turns repeatable tasks into agentic workflows that run on live data across your systems. It has context about your business, so the people who know that business best can build agents and workflows quickly, just by describing what needs to happen in plain language. AgentSpot builds the agents, steps, logic, and handoffs to run the task. Whether you are in Marketing, Finance, HR, Legal, Sales, or IT, everyone in your org can build agentic workflows. Here are just a few real-world examples:</p><ul><li><p><strong>Marketing:</strong> AgentSpot can alert you if an email campaign starts to dip, show you where performance fell, and trigger the writers to fix it. When a campaign brief is finished, it can route the work in Slack, create the Asana tasks, and get the team started.</p></li><li><p><strong>Finance:</strong> AgentSpot can send budget exceptions to the right approvers, or pull together an RPO report from multiple revenue files, check SKU and arrangement matches, and export the reconciliation workbook.</p></li><li><p><strong>HR:</strong> AgentSpot can recommend learning paths using your company&apos;s content first, then outside resources where needed.</p></li></ul><p>These are real agents, built by non-technical teams inside ThoughtSpot. No coding is required.</p><h2>Grounded in trusted foundations</h2><p>AgentSpot runs on the same live, governed, structured data our customers already trust.</p><p>Unlike general-purpose agents that start from scratch every session and guess at your business logic, AgentSpot is already grounded in your business’s semantic layer and works inside your enterprise guardrails from the first prompt.</p><p>With AgentSpot, ThoughtSpot doesn’t just help you see your business better: it helps you run it. </p><h2>Agents for action, workflows for execution, apps for artifacts</h2><p>Agents do the thinking. Workflows repeat it. Apps show the results. AgentSpot brings all three together in one governed experience.</p><p>Agents reason, plan, and act on your live business data. They can monitor signals, ask clarifying questions, use tools, and bring back results.</p><p>Workflows turn your best playbooks into repeatable execution. They connect steps together, route handoffs, trigger actions, and keep running without someone having to restart the process every time.</p><p>Apps turn plain-language intent into live, connected artifacts that any team member can create. Describe what you need (e.g., a dashboard, report, or prototype) and get an app built on your real-time, governed data in a single session, with no front-end code or BI tickets.</p><p>Together, they uncover what needs attention, take action, and put the results in everyone&apos;s hands.</p><h2>Built for where your business runs</h2><p>AgentSpot connects to the systems your teams already use, including CRM, HCM, ERP, Slack, Gong, and more, so every agent can act using the same data and context your teams rely on. Here are just a few examples of how different departments can get more done with AgentSpot.</p><ul><li><p><strong>RevOps:</strong> a &quot;Deal Risk Monitor&quot; agent that flags stalled opportunities and drafts recovery briefs.</p></li><li><p><strong>Finance:</strong> a &quot;Budget Anomaly Checker&quot; agent that routes approvals with context the moment a threshold is crossed.</p></li><li><p><strong>HR:</strong> an &quot;Onboarding Milestone Agent&quot; that keeps new hires on track without another manual check-in.</p></li></ul><p>All built from a single prompt.</p><p>Now every team gets a force multiplier.</p><h2><strong>Governed by design</strong></h2><p>You can describe what needs to happen in natural language, and AgentSpot assembles the agent with the right workflows, tools, and context to do the work.</p><p>Anyone can build and share agents across the organization, so teams reuse what works instead of starting from scratch. Because AgentSpot connects to the tools your teams already use, those agents can bring together the data and context needed to get the job done.</p><p>The workflows are grounded in how your business operates. AgentSpot creates the steps, adapts as new data comes in, and executes tasks across systems.</p><p>Over time, it learns from organizational and user-level context, so the work becomes more relevant and better aligned to the way your teams actually operate.</p><p>This is the opposite of shadow AI: IT has visibility and control from the start. Every request, tool call, and model interaction is logged, with single sign-on, strict data isolation, and role-based access controlling what each person and agent can see and do.</p><h2>Scale output, not headcount</h2><p>In the age of AI, the advantage won&apos;t go to companies with the most people. It&apos;ll go to companies that can act faster on what their data is telling them.</p><p>AgentSpot gives every team a digital workforce that runs on live data, acts across systems, and keeps work moving. It&apos;s your workforce, multiplied, with predictable pricing built in. </p><p>AgentSpot picks the right model for each job, balancing cost, speed, and capability, and routes work across models automatically. Your teams never have to think about token budgets; they focus on outcomes while AgentSpot optimizes the path.</p><p>We&apos;re confident you&apos;ll love it. Create your first three custom agents for free; you will not be charged for them.</p><p>You can <a href="https://www.thoughtspot.com/agentspot?utm_source=blog&amp;utm_medium=content&amp;utm_term=cta1&amp;utm_content=micheline&amp;utm_campaign=ws_agentspot0826">learn more here</a>.</p>]]></description>
					<pubDate>Tue, 4 Aug 2026 14:38:59 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/introducing-agentspot">Introducing AgentSpot: Your Workforce, Multiplied</a>]]></guid>
					<author> (Micheline Nijmeh)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1756143489-micheline.png</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Chief Marketing Officer]]></ts:authorTitle>
					<ts:authorName>Micheline Nijmeh</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Building in the Fast Lane: How AI and Internal Innovation Birthed AgentSpot]]></title>	  
					<link>https://www.thoughtspot.com/blog/how-ai-and-internal-innovation-birthed-agentspot</link>
					<description><![CDATA[<p>The journey to AgentSpot didn&apos;t start with a traditional product roadmap or a speculative “what if” from our R&amp;D labs. Instead, it was born out of a growing friction within our own walls and became a &quot;frontier R&amp;D project&quot; fueled by engineers exploring the internal potential of generative AI. </p><p>When we first launched SpotGPT, our internal genAI application (similar to ChatGPT, but trained on internal resources) we saw immediate and massive adoption. However, the phase of simple queries quickly evolved into a sophisticated problem: our teams didn’t want just a chatbot, and instead started asking more and more for specialized digital colleagues.</p><p>As usage surged, our engineering and product teams were flooded with requests from across the business. Our Marketing, Finance, and HR teams weren&apos;t looking for generic AI advice but asking for agents with vertical-specific knowledge and the ability to autonomously move their unique workflows forward. They needed tools that understood the deep context of our business data and could act as a specialized teammate rather than a general-purpose bot.</p><p>We realized that for AI to truly transform an enterprise, it couldn’t remain a one-size-fits-all tool. We had to bridge the gap between &quot;generic output&quot; and &quot;specialized action.&quot; The constant demand from our own subject matter experts to solve their most manual hurdles is what drove us to create a full custom agent platform, AgentSpot.</p><h2>The Internal Challenge: &quot;10 Agents for Every Team&quot;</h2><p>Instead of a standard closed beta, we issued a radical internal challenge: every department, regardless of their technical background, was tasked with building 10 agents to automate their most manual hurdles. We wanted to see if the people closest to the problems (our subject matter experts) could build their own solutions.</p><p>The response was a surge of cross-functional creativity that codified our &quot;tribal knowledge&quot; into functional tools:</p><ul><li><p><strong>HR:</strong> Developed agents to streamline specialized workflows like an HR onboarding agent that guides new hires through documentation and provisions tool access automatically, and a Performance Review Assistant that aggregates peer feedback, OKR progress and activity data into structured review drafts.</p></li><li><p><strong>Finance:</strong> Created &quot;Budget Guardians&quot; that monitor departmental spend and alerts budget owners when thresholds are breached. </p></li><li><p><strong>Sales</strong>: Built a Quote Generator Assistant that drafts customized pricing proposals from deal context, pricing tiers and rep notes. </p></li><li><p><strong>Engineering</strong>: Has a Documentation Writer that auto-generates API docs, changelogs and runbooks from code diffs and PR descriptions.</p></li><li><p><strong>Marketing:</strong> Focused on campaign performance and content creation, with a campaign analyzer that pulls campaign metrics from ad platforms and surfaces what is working or wasting spend. </p></li></ul><p>By the end of the sprint, we had 80+ unique agents running internally. It was a collaborative build where every department helped shape the product they were excited to use.</p><h2>Standing on the Data Plane: Our Competitive Edge</h2><p>While generic AI tools promise revolution, business users often struggle with how to trust them or prompt them effectively. This is where AgentSpot differentiates itself from general-purpose bots through the data plane. Unlike managed agent platforms that often struggle with the &quot;last mile&quot; of data accuracy, AgentSpot enables fact-based actions by standing directly on ThoughtSpot’s rich semantic layer. By leveraging Spotter’s unmatched data analysis skills, our agents don&apos;t just guess based on unstructured context; they perform deep, accurate analysis on your structured business data. </p><p>Unlike &quot;black box&quot; AI, our agents are deterministic and transparent. We provide a process you can visually check and trust, ensuring that every insight is grounded in your company’s governed data models. </p><p>Furthermore, we’ve prioritized true self-service. AgentSpot is built so that any business user - not just engineers - can turn a simple problem statement into a directive, accurate prompt. This ease of use allows those closest to the business pain to create their own specialized agents without ever needing to become a &quot;prompt engineer&quot;.</p><h2>From Data to Outcome: Purpose-Built Agents, Apps and Workflows</h2><p>AgentSpot moves beyond data and insights to true execution by turning your best playbooks into autonomous systems.</p><ul><li><p><strong>Purpose-Built Teammates:</strong> These are named agents with specific roles and the judgment to know when to ask before acting. They reason, plan, and act on live data while remembering your specific role and history to ensure every answer is relevant.</p></li><li><p><strong>Data Apps: </strong>live, beautifully designed applications to present your work into a shareable artifact rather than a static file. Apps pull information from all connected sources: ThoughtSpot models, Salesforce, Jira, and more. It fetches fresh data on every load and enforces each viewer&apos;s permissions, so the right people always see the right data. But it is not constrained by the classic dashboard structure: newspaper-style briefs, card views, interactive boards, themed reports… Describe it, and AgentSpot will build and host it for you.</p></li><li><p><strong>Autonomous Workflows:</strong> You describe the desired outcome, and AgentSpot builds the logic and handoffs with no coding required. These adaptive flows can be scheduled to run on any cadence (daily,  weekly, etc.) ensuring repetitive tasks get done behind the scenes for you.</p></li><li><p><strong>The Model Context Protocol (MCP):</strong> Every agent acts on what is true because AgentSpot plugs directly into the tools your business runs on (CRM, HCM, ERP, Slack, and more) via the MCP standard.</p></li></ul><h2>Enterprise Grade: Governed from Day One</h2><p>We built AgentSpot to give teams freedom from shadow AI: easy enough that anyone can use it, powerful enough that they&apos;ll want to, and governed closely enough that you can let them.</p><ul><li><p><strong>Connector Governance: </strong>Admins maintain total authority over the ecosystem. They decide exactly which connectors are available to users, choosing which internal systems (like your CRM, HCM, or ERP) agents are permitted to access. </p></li><li><p><strong>Sandboxed Execution:</strong> All code generated by agents runs in a secure, private container that cannot touch production systems.</p></li><li><p><strong>Auditability:</strong> Every request, tool call, and model interaction is logged, providing a traceable execution history for compliance and audit logging.</p></li></ul><h2>A Force Multiplier for R&amp;D </h2><p>Building AgentSpot has fundamentally changed the roles within our R&amp;D team. With AI accelerating research, requirements creation, and documentation by <strong>5x to 10x</strong>, the lines between traditional functions have blurred. Our product design team has started building functional prototypes that engineers could bring into code immediately. PMs began contributing directly to internal tool codebases to increase iteration speed, skipping the &quot;wait for a slot in the roadmap&quot; phase of development. When everyone can dabble in the &quot;other side&quot;, the conversation moves away from &quot;is this possible?&quot; to &quot;is this the best solution?&quot;</p><h2>A Human-Centric Agent Launch</h2><p>AgentSpot enables fact-based actions by standing on a rich data product with unparalleled skills in extracting insights from structured data. Our agents are grounded in data and transparent, providing a process you can visually check and trust. Unlike general-purpose bots, our platform is an expert at turning a business user’s problem statement into a directive, accurate prompt without requiring them to become a &quot;prompt engineer&quot;.</p><p>We are launching AgentSpot with over 50 templates -each one born from an internal need, refined by a subject matter expert, and ready to help you drive your business autonomously. Get three custom agents for free. <a href="https://www.thoughtspot.com/agentspot?utm_source=blog&amp;utm_medium=content&amp;utm_term=cta1&amp;utm_content=nico&amp;utm_campaign=ws_agentspot0826">Learn more today</a>.</p>]]></description>
					<pubDate>Tue, 4 Aug 2026 14:35:11 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/how-ai-and-internal-innovation-birthed-agentspot">Building in the Fast Lane: How AI and Internal Innovation Birthed AgentSpot</a>]]></guid>
					<author> (Nicolas Rentz)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1785744174-nicolas-rentz.png</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Senior Director, Product Management | AgentSpot]]></ts:authorTitle>
					<ts:authorName>Nicolas Rentz</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Agentic Analytics: How Zencargo Drives Customer Retention]]></title>	  
					<link>https://www.thoughtspot.com/blog/how-zencargo-drives-customer-retention-with-agentic-analytics</link>
					<description><![CDATA[<h2>From Reactive Dashboards to Proactive AI with ThoughtSpot</h2><p>Every data leader knows the BI waiting room. Someone in operations needs an answer, files a request, and waits a day, sometimes three. By the time the dashboard arrives, the moment that mattered has moved on.</p><p>That waiting room was the quiet subject of one of the sharpest sessions at the <strong>Agentic Analytics Playbook event in London</strong>. </p><p>Brian Reynolds, VP of Embedded at ThoughtSpot, sat down with Sam Greenhalgh, Chief Revenue Officer at Zencargo, for a fireside chat titled <strong>&quot;The Competitive Edge: Driving Business Outcomes Through Embedded Intelligence.&quot; </strong></p><p>The theme? A company that decided answers should reach its customers before anyone thinks to ask the question.</p><p>Here’s how Sam&apos;s story maps to the shift you’re probably chasing right now.</p><h2>Why Is Real-Time Supply Chain Visibility So Difficult?</h2><p>Start with the freight itself. <a href="https://www.thoughtspot.com/resources/case-study/zencargo">Zencargo</a> is a digital freight forwarder, moving goods around the world by sea, air, road, and rail. </p><p>&quot;Moving goods is still quite archaic,&quot; Sam told the room, describing a global system split across time zones, carriers, ports, and customs authorities, with no single party holding the full picture.</p><p>For Zencargo, the edge comes from data pulled out of hundreds of APIs across all those parties, then stitched into something a customer can actually question. </p><p>Sam called data and insight early in the supply chain &quot;the number one lever for how businesses can outperform their competitors,&quot; and that belief sat underneath everything else the session covered.</p><h2>How Do You Move From Reactive Dashboards to Proactive Analytics?</h2><p>Picture the old way of working. A customer needs to know whether a shipment will miss a retail launch date, so they route the question to a person, dig through a spreadsheet, or wait for BI. Every step adds delay, and delay in a supply chain is expensive.</p><p>Ask Luca, Zencargo&apos;s embedded assistant, was built to close that gap. Its name has an unglamorous origin - ask longtime customers what they did before Luca, and they name a person: &quot;I&apos;d ask Jack,&quot; or &quot;I&apos;d ask Bob.&quot; </p><p>So the assistant became the colleague you can always reach, or in Sam&apos;s words, &quot;an analyst in your pocket.&quot;</p><p><strong>Here is the line that framed the whole conversation:</strong> Sam described the goal as turning &quot;what ifs into what next,&quot; and that phrase captures the reactive-to-proactive shift every data leader is weighing in 2026.</p><p>Zencargo had analytics in its product for years, but moving to ThoughtSpot a couple of years ago let the team ship faster and customize far more of what customers saw. </p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;">Sam described the shift as a move from "data plus visualization" to "data plus brain and visualization.” The brain is <a href="https://www.thoughtspot.com/product/spotter-semantics">the semantic layer</a>, and it encodes the context of global shipping, what good performance looks like, and what counts as a risk or an opportunity. Ask Luca sits on ThoughtSpot Spotter, which supplies the natural-language layer on top.</p>
</div></div><p>The payoff is proactive. Instead of waiting for a person to ask, the system can say: this is what&apos;s happening, these are your opportunities, these are your risks, and these are the decisions you need to make.</p><h2>What Happens to Customer Retention When You Embed AI Analytics?</h2><p>Adoption is the real test. Did it land? </p><p>Ask Luca launched in October. By the time Sam took the stage, <strong>more than 100 Zencargo customers had adopted it, </strong>and the beta program now has a waiting list for additional models.</p><p>&quot;We&apos;re the victim of our own success; customers are addicted to Luca,&quot; Sam said. </p><p>That stickiness matters more here than at a typical software vendor. Different business model, different stakes. </p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;"><span>Zencargo is a service business that transacts per container rather than per seat, and technology customers lean on every day becomes the reason they stay. The analytics layer stopped being a reporting feature and became a retention engine.</span></p>
</div></div><p>There is a second-order effect worth noting. Customer Success conversations moved away from tactical KPI readouts toward strategic, root-cause discussions, which makes Zencargo far harder to replace.</p><h2>How Do You Know If Your Embedded Analytics Is Actually Working?</h2><p>The proof point Sam kept returning to was dual use: two audiences, one assistant. Ask Luca faces customers, and it runs inside Zencargo&apos;s own operation too, with roughly 150 people in ThoughtSpot every day as part of their normal workflows.</p><p>A polished customer demo proves little on its own; the real tell is different. </p><p>Your own teams reaching for the platform without being told to, day after day. At Zencargo, merchandising, supply planning, and trading all pulled up a chair once the answers came easily.</p><h2>Should You Build or Buy Your Analytics Layer?</h2><p>Every data leader in the room knows <a href="https://www.thoughtspot.com/resources/ebook/embedded-analytics-buyers-guide">the build-versus-buy question</a>, and Sam was blunt about getting it wrong at first. </p><p>What was the mistake? Zencargo assumed the moat was data plus visualization, when anyone can build a visualization.</p><p>&quot;The real moat was the data,&quot; he said. A simple line, a hard-won one. So Zencargo went deep where it could differentiate: execution, global supply chain knowledge, and context.</p><p>For the analytics layer, it chose <a href="https://www.thoughtspot.com/product/embedded">ThoughtSpot Embedded</a> over rebuilding one. Note the division of labor: Zencargo builds and owns its core live data platform, and ThoughtSpot owns the analytics layer on top.</p><h2>Why Does AI Analytics Fail Non-Technical Users?</h2><p>Not everything is solved yet, and Sam said so plainly. The request he hears most is cross-functional. </p><p>It’s typically items like purchase order SKUs and marketing launch dates, read alongside shipping, <a href="https://www.thoughtspot.com/solutions/supply-chain-analytics">supply chain analytics</a>, and customs data. Joining those sets cleanly is the work ahead.</p><div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 16px 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 14px; line-height: 1.6; color: #ffffff !important;">
<p style="margin: 0 0 12px; color: #ffffff !important;">He was careful about the framing. Treat it as a data structure and design consideration, not a software failure. Natural-language questioning breaks down when the underlying data sets have inconsistent structure, and that breakdown frustrates the non-technical users you most want to reach. </p>
</div></div><p>That kind of honesty about the boundary is what makes the rest of the story credible.</p><h2>What Does the Future of Agentic Analytics Look Like? Sam’s Advice</h2><p>Sam&apos;s vision for Ask Luca 2.0 moves past asking altogether. Imagine Luca looking across a customer&apos;s past decisions, their supply chain, and outside signals like geopolitical events, news, and port disruptions, then surfacing a recommended action: move it by air, or split the shipment. </p><p>But get the data structure right before you fall in love with the interface—the analytics layer is only ever as good as what sits beneath it. The companies turning &quot;what ifs&quot; into &quot;what next&quot; are the ones that treated their data model as the product. </p><p>Want to see what that looks like on your own data? <a href="https://thoughtspot.com/trial">Start your free ThoughtSpot trial today</a>.</p>]]></description>
					<pubDate>Fri, 31 Jul 2026 16:15:16 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/how-zencargo-drives-customer-retention-with-agentic-analytics">Agentic Analytics: How Zencargo Drives Customer Retention</a>]]></guid>
					<author> (Brian Reynolds)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1756408864-brian-reynolds.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Global VP, Embedded]]></ts:authorTitle>
					<ts:authorName>Brian Reynolds</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[How Vita Mojo Uses ThoughtSpot Embedded to Empower Non-Analysts ]]></title>	  
					<link>https://www.thoughtspot.com/blog/vita-mojo-thoughtspot-embedded</link>
					<description><![CDATA[<p>At the <strong>Agentic Analytics Playbook EMEA</strong> event, Stefan Cotoiu, Co-Founder and Chief Product/Engineering Officer at Vita Mojo, shared how the hospitality software provider transformed its data strategy to empower its customers and unlock unprecedented leadership visibility.</p><p>Vita Mojo powers the digital infrastructure for quick-service restaurants (QSRs) across Europe. Operating in a high-transaction, low-margin industry, their restaurant clients are flooded with transactional data—from click-and-collect orders and self-service kiosks to point-of-sale systems and kitchen fulfillment. However, most QSR operators are severely constrained by small head-office teams and lack dedicated in-house data analysts.</p><p>Here is how Vita Mojo shifted its strategy to empower non-analysts across the long tail and drive C-suite adoption using ThoughtSpot Embedded and Spotter.</p><h2>1. Empowering the &quot;80% Long Tail&quot; of Non-Analysts</h2><p>Before adopting ThoughtSpot, Vita Mojo faced a common challenge in embedded analytics:</p><ul><li><p><strong>The 5-Tool Cycle:</strong> Over several years, Vita Mojo cycled through five different embedded BI tools—including Domo, Power BI, Metabase, Looker, and Redash—spending over a year evaluating each without finding the right fit.</p></li><li><p><strong>The &quot;15% Trap&quot;:</strong> Traditional dashboards required power-user knowledge. Vita Mojo discovered that only <strong>15% to 20%</strong> of their customer base (usually a data-savvy enthusiast in accounting or operations) were actively extracting value from <a href="https://www.thoughtspot.com/data-trends/analytics/advanced-analytics">advanced analytics</a>.</p></li><li><p><strong>Decisions in a Vacuum:</strong> The remaining 80%—the long tail of operators—didn’t have the bandwidth or expertise to navigate complex dashboards. As a result, they were making daily operational decisions without data.</p></li></ul><p>To solve this, Vita Mojo partnered with ThoughtSpot to flip its strategy. Rather than building solely for power users, their new North Star became <strong>reducing time-to-insight from days down to minutes</strong> for non-analysts.</p><p>By integrating <a href="https://www.thoughtspot.com/product/embedded"><strong>ThoughtSpot Embedded</strong></a> and <a href="https://www.thoughtspot.com/product/agents/spotter"><strong>Spotter</strong></a> (ThoughtSpot&apos;s natural language and AI search engine), Vita Mojo replaced complex drill-downs with simple, plain-English search. Operators can now ask questions directly, instantly obtaining analyst-grade insights without needing a technical background.</p><p><em>&quot;We had a North Star of reducing time to insight so that this long tail can get there... from days or initial investment to minutes.&quot;</em></p><p>— <strong>Stefan Cotoiu, Co-Founder at Vita Mojo</strong></p><h2>2. Driving C-Suite Adoption and Executive Visibility</h2><p>Putting conversational AI directly into the Vita Mojo platform produced an unexpected shift in adoption: <strong>it brought top-level restaurant executives to engage directly with data.</strong></p><ul><li><p><strong>Direct Executive Engagement:</strong> Vita Mojo originally anticipated that restaurant general managers would be the primary users of natural language search. Instead, they saw a significant surge in engagement from C-suite leaders—including Managing Directors, CEOs, Heads of Marketing, and VPs of Commercial. These leaders understood the business deeply but previously lacked dedicated analyst bandwidth to answer strategic questions quickly.</p></li><li><p><strong>Automated ROI Messaging:</strong> Vita Mojo leverages ThoughtSpot&apos;s auditability and usage data to build a highly targeted go-to-market loop. They proactively send personalized ROI reports to executive buyers during trials, showing concrete metrics: <em>&quot;You saved X hours of analyst time and evaluated £Y million in operational decisions using our analytics engine.&quot;</em></p></li></ul><h2>Key Takeaways for Product and Analytics Leaders</h2><ul><li><p><strong>Focus on the Non-Analyst:</strong> Designing analytics solely for power users leaves the majority of your customer base behind. Conversational AI bridges the gap between raw data and business intuition.</p></li><li><p><strong>Prioritize Trust and Governance:</strong> High-quality, traceable data is essential. Bypassing the &quot;BI waiting room&quot; only works when users can trust that the numbers behind natural language answers are grounded in trusted data.</p></li><li><p><strong>Treat Analytics as a Core Product:</strong> Embedded analytics requires dedicated product management and clear go-to-market messaging to ensure customers recognize the operational and financial value being delivered.</p></li></ul><p>By prioritizing <strong>customer empowerment</strong> for non-analysts and driving<strong> executive adoption</strong>, Vita Mojo turned data from an overwhelming byproduct into a primary competitive advantage.</p><p>Ready to empower every user with AI-powered embedded analytics? <a href="https://www.thoughtspot.com/demo">Request a demo</a> to see ThoughtSpot Embedded in action.</p>]]></description>
					<pubDate>Wed, 29 Jul 2026 19:58:55 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/vita-mojo-thoughtspot-embedded">How Vita Mojo Uses ThoughtSpot Embedded to Empower Non-Analysts </a>]]></guid>
					<author> (Brian Reynolds)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1756408864-brian-reynolds.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Global VP, Embedded]]></ts:authorTitle>
					<ts:authorName>Brian Reynolds</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Advancing ThoughtSpot's Commitment to Apache Ossie (Incubating), the Next Chapter of OSI]]></title>	  
					<link>https://www.thoughtspot.com/blog/apache-ossie</link>
					<description><![CDATA[<p>When the Open Semantic Interchange (OSI) initiative launched last year, it set out to solve a problem every data leader recognizes: the same business metric gets defined a dozen different ways across a company&apos;s BI tools, warehouses, and now, AI agents. &quot;Monthly active users&quot; in the CRM rarely matches &quot;monthly active users&quot; in the warehouse, and every new AI copilot added to the stack makes the gap more visible, not less.</p><p>That initiative has just taken its most consequential step yet. OSI has entered the Apache Software Foundation’s (ASF) incubator and, as part of that transition, has been renamed <a href="https://ossie.apache.org/"><strong>Apache Ossie (Incubating)</strong></a>.</p><p>The specification and the community behind it haven&apos;t changed. What has changed is the governance model: Ossie now operates under ASF norms, with public mailing lists, GitHub-based development, and committership earned through contribution rather than employer affiliation.</p><p><strong>ThoughtSpot was a </strong><a href="https://www.thoughtspot.com/press-releases/thoughtspot-joins-forces-with-snowflake-and-industry-leaders-to-spearhead-open-semantic-interchange"><strong>founding member of OSI</strong></a><strong>, and we&apos;re continuing that commitment under its new name and its new home at the ASF. </strong>This move strengthens the standard itself and benefits anyone building a data and AI stack who doesn&apos;t want to be locked into one vendor&apos;s definition of &quot;revenue.&quot;</p><h2>Where ThoughtSpot Has Contributed</h2><p>Since OSI&apos;s founding, our team has been an active contributor across all of its working groups— Metric Language, Catalog, and Ontology—that governs how semantic objects relate to each other.</p><p>That&apos;s meant sitting in the same room—literally and in GitHub threads—as engineers from Snowflake, Databricks, dbt Labs, Atlan, and other partners, and finding shared ground on how a metric, a dimension, or a join should be described, so that any tool can read it correctly.</p><p>An open standard only works if it stays vendor-neutral. Ossie&apos;s move to Apache Software Foundation governance formalizes that neutrality, making the standard more durable and more trustworthy for the organizations that will eventually depend on it.</p><h2>What&apos;s Next: A Translation Layer for TML</h2><p>Looking ahead, we&apos;re building a translation layer between ThoughtSpot Modeling Language (TML)—the format ThoughtSpot uses to define and version semantic models—and the Ossie specification.</p><p>The goal is to let semantic definitions built in ThoughtSpot move into the broader Ossie ecosystem, and vice versa, without anyone having to hand-translate metric logic between formats. This is an active workstream and we&apos;ll share specifics as the translation layer takes shape.</p><p>This work connects directly to the ThoughtSpot’s context layer for agents, in which <a href="https://www.thoughtspot.com/product/spotter-semantics">Spotter Semantics</a> already uses deterministic query generation grounded in governed business definitions rather than probabilistic guessing. A shared, open format like Ossie extends that governance beyond ThoughtSpot itself—so the same trusted definitions travel with a query no matter which AI agent, LLM, or platform is running it.</p><h2>Why This Matters</h2><p>For a data leader, the pitch for an open semantic standard isn&apos;t abstract. It&apos;s fewer reconciliation meetings between finance and sales over whose &quot;churn rate&quot; is correct. It&apos;s the ability to swap or add a BI tool, a catalog, or an AI agent without re-writing your metric logic from scratch. And as more of the actual querying in your organization gets delegated to AI agents,<a href="https://www.thoughtspot.com/blog/the-agentic-semantic-layer-and-OSI"> it&apos;s the difference</a> between an agent that guesses at what &quot;net margin&quot; means and one that inherits a definition your team already approved.</p><p>We&apos;re genuinely energized about where this goes next. Apache Ossie starting incubation with a coalition that has grown from its original founding group to more than 50 participating organizations is a strong signal that the industry wants this problem solved collectively. We plan to keep showing up to that work.</p><h2>Get involved</h2><p>Ossie is transitioning to ASF infrastructure as part of incubation. Watch for updates on the new <a href="https://ossie.apache.org/">project website</a>, join the development mailing list, collaborate on <a href="https://github.com/apache/ossie">GitHub</a> and join the <a href="https://join.slack.com/t/apache-ossie/shared_invite/zt-42i1xkgy8-7YQtKEDq7v~mceFmdiLhkA">Ossie Slack workspace</a>.</p><p>If you want to see how a governed semantic layer already works in practice, <a href="https://www.thoughtspot.com/demo">get a demo of ThoughtSpot</a>.</p>]]></description>
					<pubDate>Tue, 28 Jul 2026 05:24:54 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/apache-ossie">Advancing ThoughtSpot's Commitment to Apache Ossie (Incubating), the Next Chapter of OSI</a>]]></guid>
					<author> (Francois Lopitaux)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1744712654-1744069862-photo-francois-lopitaux-tream-v2.jpg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[SVP, Product Management]]></ts:authorTitle>
					<ts:authorName>Francois Lopitaux</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Token-Maxxing and Inference Ops: The New FinOps Frontier]]></title>	  
					<link>https://www.thoughtspot.com/blog/token-maxxing-and-inference-ops-the-new-finops-frontier</link>
					<description><![CDATA[<div class="wysiwyg_wysiwyg__WvjUC"><div style="background-color: #0a082d; border-left: 5px solid #007bff; padding: 20px 28px; margin: 40px 0; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); width: 100%; font-size: 15px; line-height: 1.7; color: #ffffff;">
<h2 style="color: #ffffff; margin-top: 0; margin-bottom: 16px; font-size: 18px; font-weight: 600;">📌 <span style="text-decoration: underline;">Key takeaways</span></h2>
<ul style="margin: 0; padding-left: 0; list-style: none; color: #ffffff;">
<li style="margin-bottom: 14px; color: #ffffff;">1. A POC's token cost does not scale linearly into production—the same app can go from free to a five or six-figure daily run rate overnight.</li>
<li style="margin-bottom: 14px; color: #ffffff;">2. Token-maxxing (measuring AI success by volume consumed) is a vanity metric, not a value metric.</li>
<li style="margin-bottom: 0; color: #ffffff;">3. Inference spend, not model training, is where AI budgets are actually exploding. And it's headed toward the same formal cost controls as cloud and travel.</li>
</ul>
</div></div><p>A Head of Product at a major sportswear retailer has a brilliant idea: let’s build an app that sales staff on the shop floor can have on their tablets, and ask their questions there and then, where they serve customers. </p><p>They set about building. In order for the app to answer questions, it needs to have the information from the 2026 Spring/Summer Catalogue, a mammoth manual, let’s say 300k tokens. </p><p>Then the developer loads the huge PDF into the system instructions of the LLM and builds a chat interface over it. </p><p>When the sales assistant in the store asks about Adidas Gazelles, the LLM reads the entire 300k-token book, finds the answer on page 89 and page 607, and delivers a response. The staff loves the POC, and it’s pushed for production.</p><p>The app gets rolled out to all stores - the 5000 sales assistants ask it 10 questions a day each. The app is processing 15bn input tokens a day, creating something that never happened when it was a POC: <strong>a $75k daily run rate. </strong></p><p>Production environments are where AI budgets expand horribly. A working prototype can become a 75k/day liability overnight. And that’s where the CFO shuts it right down. </p><p>Not only is the hero app dead, but the CFO issues strict guidelines and a new era of token-rationing in the company begins. </p><p>This is not a drill - average <a href="https://www.elvex.com/blog/ai-token-cost-enterprise-budget-control">enterprise AI budgets expanded</a> from roughly $1.2 million annually in 2024 to about $7 million in 2026. Uber recently became <a href="https://fortune.com/2026/05/26/uber-coo-ai-spending-tokens-claude-code/">a cautionary tale</a> when its AI spending spiral made headlines for the wrong reasons. And it won&apos;t be the last.</p><p>Welcome to 2026 and the token cost crisis. </p><h2>Why Token Costs Are Suddenly Huge Financial Exposure</h2><p>What we just saw was classic context stuffing. Brute-forcing that bypasses complex data engineering and is essentially the quickest way to get to a working prototype.</p><p>Context stuffing is just one of the symptoms of the bigger problem of token over-consumption due to lazy architecture and bad management practices. This is something organisations need to pay attention to as they transition from having agents in PoC to production environments. </p><p>This is where poor architecture can become wildly expensive and opens up a new era of tech debt (and potentially financial debt!).</p><p><strong>In addition to context-stuffing, other token-bonfires include:</strong></p><h3>Cache Blindness</h3><p>The same questions/instructions are sent again and again without leveraging middleware or native caching layers. </p><h3>Token Amplification</h3><p>Where agents talk to each other in multi-agent workflows, e.g. agent A sends a 5k token history to agent B who sends 5k back. The context grows quadratically unless there is summarisation or state-pruning. </p><p>Poor state management forces the LLM to re-process large conversation histories with each query in the conversation, while wasting output tokens on heavy JSON schemas. </p><h3>‘Token-Maxxing’ </h3><p>This is the dubious trend where companies and individuals measure AI productivity by the sheer volume of tokens consumed; it&apos;s essentially the ‘lines of code’ KPI for <a href="https://go.thoughtspot.com/analyst-report-gartner-magic-quadrant-2026.html?utm_source=website&amp;utm_medium=content&amp;utm_content=homepage_banner&amp;utm_campaign=gartnermq26">the agentic era</a>. </p><p>It’s the ‘tyranny of metrics’ - something that the developer community is becoming increasingly vocal about, with stories of code-slop and usage becoming a proxy for value.</p><p>Sonny Rivera, principal data and AI strategist and former Chief Product Officer of TIFIN, advocates for ‘inference opps’ where good practices keep token burn manageable, and token-maxxing is discouraged. </p><h2>The Three Pillars for ‘Inference Finops’</h2><p>At ThoughtSpot, we believe that ‘inference finops’ is a mandatory engineering discipline to transition from prototype to sustainable production. </p><p>Here are our pillars of ‘inference finops’ in distinct architectural layers:</p><h3>1. Data Architecture and RAG Standard</h3><p>Transitioning from massive context windows to clean retrieval-augmented <a href="https://www.thoughtspot.com/data-trends/artificial-intelligence/what-is-retrieval-augmented-generation">generation (RAG) </a>and using ‘chunking’ to lower the LLM processing burden and get the same answers for a fraction of the costs.</p><p>Let’s go back to the earlier example of the sports store. If, instead of rushing to production, the engineering team architect a RAG pipeline. They take the Spring/Summer Catalogue and chop it up into bits - a process called ‘chunking’. </p><p>So the Adidas Gazelles become a chunk. The Nike Airs become a chunk, and the return policy becomes a chunk. These chunks are converted into vector embeddings and indexed in a specialized vector store, such as the enterprise PostgreSQL using the vector extension. </p><p>Now, when the sales assistant asks the question, the system acts like a librarian and sends the LLM to the right paragraphs and has it answer based only on those two using maybe 80 tokens. </p><p>The 50k daily queries from all the stores come to a cost of <strong>$200 a day (down from $75k!)</strong> and the assistant gets the <strong>exact same answer.</strong> </p><h3>2. Model Routing to Move From Data Shortcuts to Compute Efficiency</h3><p>You don&apos;t need the power and glory of Mythos to help you understand why there’s excess inventory of those fuzzy pink jackets in the warehouse. </p><p>Rather than hardwiring an application to a single LLM, an agent harness framework like LangChain or LlamaIndex can intercept the prompt, classify its complexity, and dispatch it to an open-source model like Mistral that’s free to run, or internally hosted small models running on your own cloud instances.</p><p>For example, ThoughtSpot acts as an optimised, built-in harness—defaulting to a combination of Opus 4.5 and GPT-5.1 for complex analytical questions and dropping down to Haiku for summarizing an insight, ensuring you use the most cost-efficient LLM for the task at hand. And yes, customers can also bring their own LLM. </p><p>So if we take the retail example again, if the router saw a prompt that asked it to do something simple like run a search, it would route to a more affordable model. </p><p>If the prompt was more complex and required reasoning, e.g., ‘which of these shoes are better for a customer with plantar fasciitis, it would route it to something like Opus 4.5.</p><p><strong>A piece of insight for CDAIOS: </strong>We tend to focus on the price per 1k tokens to decide what the most cost-effective model is. Databricks proved this completely wrong in their recent article <a href="https://www.databricks.com/blog/benchmarking-coding-agents-databricks-multi-million-line-codebase">here</a> - they found that models with a cheaper list price, when run over end-to-end tasks, actually ended up being more expensive due to the way they work and consume.</p><h3>3. Semantic Caching </h3><p>Semantic caching, unlike traditional caching, caches based on meaning rather than exact character matches. So it not only remembers the exact question, it remembers similar questions too. </p><p>So, ‘what is Q2 revenue?’ and “what is this quarter&apos;s revenue?’ are treated as the same question. And you pay only once. </p><p>Again, there is a mode of action that relies on interception from specialist tools; instead of sending the raw string to the database, it’s converted and scored, and a pre-stored LLM response from the database is sent back. </p><p>Implemented at the enterprise API gateway level, specialist middleware intercepts the prompt, converts it to a vector to score against historical queries, and can match to a previous, pre-stored response (if there is one) without incurring token spend.</p><p>There is a misconception that native query caching (in, for example, Anthropic and OpenAI models) negates the need for semantic caching. This is not correct. Semantic caching and native prompt caching are different tools doing different jobs. </p><p>Native caching stores the static prefix (for example, in the sports store example, the 300k token catalogue) so you get a ‘discount’ on input tokens when you call the model. The user&apos;s questions are not cached. You need semantic caching for this.</p><p>It’s worth remembering that semantic caching handles unstructured text data well but struggles with numbers. <a href="https://www.thoughtspot.com/product/spotter-semantics">Spotter Semantics</a> uses a tokenised search hard-linked to the database schema, which is highly optimised for query caching, resulting in up to 90% lower token spend. </p><h2>The Metadata Moat and Predictable Search Architectures</h2><p>Good practices around metadata can turn a 100k token query into a 1k token query. Good metadata (data about data) attached to your documents means that an LLM has to scan fewer documents to get to an answer - it can hone in on relevant documents rather than have to scan many docs trying to find a ‘needle in a haystack.’ </p><p>As an example in the sporting goods store, let’s consider the question <strong>‘what’s our returns policy on Nike Air if the customer lost the receipt?’</strong> </p><p>Without good metadata, the LLM has to scan everything that mentions returns, receipts, Nike, etc. With metadata pre-filtering (e.g., Region: UK, channel = in-store, doc type = returns policy, etc.) lets the LLM zone in on the right docs using far fewer tokens.</p><p>ThoughtSpot’s architecture shows us a way to do this: Spotter’s NLQ analytics does not use an LLM for text-SQL generation; instead, it uses a tokenised search. </p><p>Because ThoughtSpot’s tokens are linked to a physical database schema, this mode of action is highly deterministic; it produces a very efficient SQL that yields a much lower and more predictable token cost.</p><h2>A Procurement Blindspot the CDAIO Must Shed Light On</h2><p>At ThoughtSpot, we know from many frank conversations with our customer CDAIOS, that in many organizations, procurement functions are negotiating contracts with cost bases that are rapidly changing. </p><p>It will be the job of the CDAIO to be clear about these potential risks to the board and the wider organisation. We expect that tokens will eventually just come under the cost control of the CFO, the same way other things do, like travel spend. </p><p>The CDAIO will need to help establish this and ideally, get a handle on the framework before the CFO comes looking for it!</p><p>In fact, <a href="https://www.ey.com/en_us/insights/ai/agentic-ai-token-costs?WT.mc_id=14575609&amp;AA.tsrc=ownedsocial">EY’s recent white paper</a> advocates for hiring a Head of Agent Economics. You may not need to take quite such a big step, but certainly CDAIOs need to be fully on top of this space. </p><h2>The Inference Finops Playbook: A Checklist for CDAIOs</h2><ul><li><p>Audit the sandbox - understand where dev teams are context-stuffing in pilots and get a clear view of where this could potentially turn into production liabilities.</p></li><li><p>Set architectural standards that are requirements for production. Mandate chunking architectures and production deployment standards.</p></li><li><p>Implement a routing framework to ensure the right model is used for the right task.</p></li><li><p>Establish a partnership between the CDAIO, CFO, and procurement to ensure contracts are vetted for token liabilities before they are signed off.</p></li></ul><h2>Token-Maxxing: Frequently Asked Questions</h2><h3>1. What Is Token-Maxxing, and Is It Actually a Good Thing?</h3><p>No. Despite the name, token-maxxing isn&apos;t a strategy; it&apos;s a symptom. It&apos;s what happens when teams (or leadership) start treating raw AI token consumption as a proxy for productivity or value, the same trap &quot;lines of code&quot; was for developers a decade ago. High token usage can just as easily mean bloated context, redundant calls, and lazy architecture as it can mean real output.</p><h3>2. How Do I Know If My Company Is Token-Maxxing Without Realizing It?</h3><p>Pull your production invoices and compare them against sandbox costs. If your engineering team can&apos;t explain the gap, you already know. Then ask how they plan to fix it: &quot;use it less&quot; is not the right call, because this isn&apos;t a volume problem. Start with a sandbox audit. Most token-maxxing traces back to a pilot that went to production before the architecture got a second look.</p><h3>3. What&apos;s the Difference Between Token-Maxxing and Inference FinOps?</h3><p>Token-maxxing measures success by volume consumed. Inference FinOps measures success by outcome per token spent, and treats token burn as an engineering discipline, not a productivity metric. One rewards the behavior that inflates your bill; the other is the fix for it.</p><h3>4. Who Should Own Inference Cost Governance: Engineering, Finance, or the CDAIO?</h3><p>Right now, usually nobody. Token spend has grown fast enough that it needs the same kind of ownership travel or cloud spend already has, and the CDAIO is best positioned to bridge the technical architecture side with the CFO and procurement before contracts get signed, not after the bill arrives.</p><h3>5. Can I Fix Token-Maxxing Without Ripping Out My Existing AI Stack?</h3><p>Yes. This is architectural discipline, not a rebuild. Moving from context-stuffing to RAG and chunking, adding model routing so simple queries don&apos;t hit your most expensive model, and layering in semantic caching can all be retrofitted onto an existing stack without starting over.</p>]]></description>
					<pubDate>Wed, 22 Jul 2026 14:28:43 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/token-maxxing-and-inference-ops-the-new-finops-frontier">Token-Maxxing and Inference Ops: The New FinOps Frontier</a>]]></guid>
					<author> (Jane Smith),  (Cindi Howson),  (Sonny Rivera)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1767891599-jane-smith.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Field Chief Data & AI Officer (EMEA)]]></ts:authorTitle>
					<ts:authorName>Jane Smith</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[How Endpoint Clinical Closed the Embedded Analytics Revenue Gap]]></title>	  
					<link>https://www.thoughtspot.com/blog/how-endpoint-clinical-closed-the-embedded-analytics-revenue-gap</link>
					<description><![CDATA[<p>I&apos;ll be honest: one number from the latest embedded analytics research stopped the entire planning conversation for this webinar.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 57% of teams with embedded analytics report no measurable business impact</a>, and that means not low impact or underwhelming impact, but no measurable impact at all.</p><p>That stat set the stage for a candid, wide-ranging conversation between Ivan Seow from ThoughtSpot and <strong>Jeff Rubinson, VP of Product at Endpoint Clinical</strong>, during the June 25 webinar &quot;<a href="https://www.thoughtspot.com/webinar-bridging-the-embedded-analytics-revenue-gap?utm_source=website&amp;utm_medium=content&amp;utm_content=resource_page&amp;utm_campaign=wb_revenue_gap_0626The%20following%20are%20required:%20Source,%20Medium,%20Name">Bridging the Embedded Analytics Revenue Gap</a>.&quot; </p><p>What followed was part research briefing, part real-world case study, and part honest advice for anyone building analytics into a product. Here’s what stood out.</p><h2>The Revenue Gap Is Real, and It’s Not About Adoption</h2><p>If embedded analytics was struggling because nobody used it, the fix would be straightforward: improve the product, drive adoption, measure results. But the<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> Product Led Alliance Embedded Analytics Opportunity 2026 Report</a> featured in the webinar tells a different story.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> </a></p><p><a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/">71% of product leaders</a> are already building or using embedded analytics.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 50% report increased engagement and stickiness</a>. People are using the dashboards, clicking around, spending time.</p><p><strong>So why does more than half the market still see no measurable ROI?</strong></p><p>Most product teams haven&apos;t calculated <a href="https://go.thoughtspot.com/ebook-cost-of-embedded-analytics-approach.html">the real cost of their embedded analytics approach</a>. </p><p>As Parul Jain, Principal PM at Walmart, put it: &quot;The gap exists because many teams measure usage, not business impact.&quot; </p><p>Ivan echoed this during the webinar: &quot;ROI doesn&apos;t come from just usage, but it comes from impact.&quot; </p><p>The distinction matters. Tracking page views, session times, and click rates tells you whether someone opened a dashboard; it tells you nothing about whether that dashboard changed a decision, a behavior, or a business outcome.</p><h2>Three Problems Hiding Behind One Gap</h2><p>Ivan walked through the research and identified three root causes that explain why teams with healthy usage numbers still can&apos;t prove ROI.</p><h3>1. A Problem of Focus</h3><p>Too many teams treat analytics as a feature checkbox rather than a product strategy. When analytics is positioned as &quot;nice to have&quot; rather than a competitive differentiator, it gets the attention (and the engineering investment) of a nice-to-have.</p><h3>2. A Problem of Tools</h3><p>Static dashboards can show you what happened, but they can&apos;t tell you whether anyone acted on what they saw. If your analytics experience ends at a chart, you have no way to measure whether the insight influenced a downstream decision.</p><h3>3. A Problem of Instrumentation</h3><p>Teams are measuring the wrong things. When your success metrics are clicks, views, and time on page, you are optimizing for engagement theater rather than business outcomes. </p><p>Did the analytics change a decision? Did it alter a behavior? Did it produce a measurable result? </p><p>Those are harder questions to answer, and most instrumentation isn&apos;t set up to answer them.</p><h2>Endpoint Clinical&apos;s Story: 15 Years of Building, Three Months of Shipping</h2><p>This is where the conversation shifted from research to lived experience. Jeff Rubinson has spent 15 years at Endpoint Clinical, which has operated roughly 2,500 clinical trials across 90+ countries. </p><p>Clinical trial supply typically accounts for 10-30% or more of the total trial budget, so getting the analytics right has real financial consequences.</p><p>Jeff didn&apos;t sugarcoat the history. &quot;As a product leader, I always say there&apos;s a couple of things you don&apos;t want to do internally,&quot; he said. &quot;One is analytics.&quot;</p><p>Over those 15 years, Endpoint tried building analytics in-house multiple times. Each attempt ran into the same compounding problem: building analytics is not a one-time investment. </p><p>Every data model evolution, <a href="https://www.thoughtspot.com/blog/why-your-customers-hate-your-analytics">every new customer expectation</a>, every AI capability that your users start asking about adds another layer of maintenance. And every month your team spends maintaining that infrastructure is a month they are not spending on the product that makes your company unique.</p><p>Jeff framed the real cost clearly: &quot;It&apos;s not just the cost that you save for the implementation and the maintenance and the continuous support. But it&apos;s also the value that is lost by not being able to focus on your core competency.&quot;</p><h2>The Decision to Buy, and The Speed That Followed</h2><p>Endpoint signed with <a href="https://www.thoughtspot.com/product/embedded">ThoughtSpot</a> in December 2025 and launched Elo AI, their new analytics experience, in March 2026. Three months. With approximately 1.5 full-time resources dedicated to the implementation.</p><p>What does Elo AI include? Conversational AI that lets clinical trial managers ask questions of their supply chain data in plain language, deep analysis mode for more complex investigations, and actionable recommendations that connect insights directly to decisions. </p><p>Jeff described the customer reaction: &quot;When we demo this solution, it&apos;s almost like magic to some of our customers.&quot;</p><p>That three-month timeline reframes what&apos;s possible for any product leader who has been told, or has assumed, that <a href="https://www.thoughtspot.com/data-trends/embedded-analytics/embedded-analytics-architecture">embedded analytics</a> is a two-year build cycle. </p><p>It also underscores a pattern the research confirms:<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> teams on the right side of the ROI gap</a> have done four things differently:</p><ul><li><p>They replaced static dashboards with interactive, user-driven analytics</p></li><li><p>They delivered intelligent analytics experiences in months rather than years</p></li><li><p>They focused engineering resources on their core product</p></li><li><p>And they closed the loop from insight to action inside the product itself</p></li></ul><h2>The AI Dimension: Planning Versus Production</h2><p>The webinar surfaced a tension that many product leaders will recognize.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 79% of product leaders</a> say AI has fundamentally changed how they think about building, buying, and deploying analytics.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 91% plan to invest in AI</a> in the next 12-18 months. But<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> only 14% have actually shipped AI-powered analytics</a> to customers.</p><p>Why is the gap between planning and production so wide? Ivan pointed to what he called the &quot;two impulses&quot; AI creates. The first impulse is to build everything yourself because AI tools make it seem possible. </p><p>The second, less obvious realization is that AI actually raises the complexity bar. Building a reliable natural language interface, <a href="https://www.thoughtspot.com/data-trends/embedded-analytics/embedded-ai-agent">an embedded agentic experience</a>, proper security and governance, performance at scale: these are not weekend projects, and they compound fast.</p><p>Jeff&apos;s advice to other product leaders was direct: &quot;Do what you do best. Focus on your data, focus on your core competencies, and then leverage the experts to do what they do best. Because it&apos;s not a one-time implementation. It&apos;s a lifestyle.&quot;</p><h2>What Users Actually Want</h2><p>The research gave a clear signal on what end users are asking for.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 74% want real-time data access</a>.<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 71% want to intuitively find answers for themselves</a> rather than waiting for a report. And<a href="https://www.productledalliance.com/embedded-analytics-opportunity-2026-report/"> 29% want to take action directly from analytics</a> into the other tools they use.</p><p>That last number is worth sitting with. Nearly a third of users are already asking for analytics that connects to action, not just information. If your analytics experience ends at a chart with no path to a decision or a workflow, you are building for a shrinking portion of user expectations.</p><h2>Three Takeaways Worth Carrying Forward</h2><p>If you are <a href="https://go.thoughtspot.com/ebook-8-embedded-ai-agent-use-cases.html">evaluating your embedded analytics strategy</a> or deciding whether to build or buy, this webinar surfaced three ideas worth remembering.</p><h3>1.Measure What Matters</h3><p>Usage metrics are not ROI metrics. If you cannot trace a line from your analytics to a decision, a behavior change, or a business outcome, you are measuring the wrong things.</p><h3>2. Speed Is a Strategic Advantage</h3><p>Endpoint went from contract to launch in three months. That timeline didn&apos;t just get their product to market faster; it freed their engineering team to focus on the clinical trial supply chain problems that only Endpoint can solve.</p><h3>3. The Build-versus-buy Math Has Changed</h3><p>AI capabilities have raised the bar for what users expect from embedded analytics. Building and maintaining a conversational AI layer, an agentic experience, and a governed data pipeline on your own is a compounding commitment. </p><p>For most teams, the smarter path is to focus your engineering on what differentiates your product and let a purpose-built platform handle the analytics layer.</p><p>As Jeff put it: &quot;It&apos;s a lifestyle.&quot; The question is whether you want that lifestyle to be maintaining analytics infrastructure, or building the product that sets your company apart.</p><p>Read the <a href="https://www.thoughtspot.com/resources/case-study/endpoint-clinical">Endpoint Clinical case study here</a> or <a href="https://www.thoughtspot.com/webinar-bridging-the-embedded-analytics-revenue-gap?utm_source=website&amp;utm_medium=content&amp;utm_content=resource_page&amp;utm_campaign=wb_revenue_gap_0626The%20following%20are%20required:%20Source,%20Medium,%20Name">watch the webinar on-demand</a>. </p>]]></description>
					<pubDate>Mon, 20 Jul 2026 19:27:54 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/how-endpoint-clinical-closed-the-embedded-analytics-revenue-gap">How Endpoint Clinical Closed the Embedded Analytics Revenue Gap</a>]]></guid>
					<author> (Ivan Seow)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1680569552-ivan-seow.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Senior Director, Product Marketing]]></ts:authorTitle>
					<ts:authorName>Ivan Seow</ts:authorName>
				</item>
			
				<item>
					<title><![CDATA[Beyond Dashboards: Verivox's Path to Agentic Analytics]]></title>	  
					<link>https://www.thoughtspot.com/blog/verivoxs-path-to-agentic-analytics</link>
					<description><![CDATA[<p>For years, the &quot;Data-Driven&quot; dream has looked a lot like a crowded screen. We built dashboards for every department, every KPI, and every niche project. But as we reached &quot;peak dashboard,&quot; a frustrating reality set in: we were drowning in visualizations but starving for immediate insights.</p><p>At a recent fireside chat on the <strong>Agentic Analytics Stage</strong>, I sat down with Joachim Höffner, Verivox’s Lead Data &amp; BI Engineer, to explore a provocative question: <strong>Is traditional BI dying, or is agentic analytics the progress we’ve been waiting for?</strong></p><p>For <a href="https://www.thoughtspot.com/resources/case-study/verivox">Verivox</a>, the answer isn’t about choosing one over the other—it’s about a fundamental shift in the &quot;operating model&quot; of data.</p><h2>The &quot;Dashboard-Driven&quot; Trap</h2><p>The debate began with a blunt assessment of the status quo: <strong>Most companies are not data-driven; they are dashboard-driven.</strong> At Verivox, the team recognized this pattern early on. While dashboards are great for monitoring, they often fail at the <em>explanation</em> phase. </p><p>When a KPI turns red, the dashboard rarely tells you why. This usually triggers a manual cycle:</p><p>1. Management sees a dip in the dashboard.</p><p>2. A request is sent to the data team.</p><p>3. Days later, an answer arrives.</p><p>4. By then, the decision has often already been made based on intuition.</p><p>The willingness to be data-driven exists, but the information isn&apos;t available fast enough. To bridge this gap, Verivox has spent the last 18 months moving beyond static reporting toward a more <a href="https://www.thoughtspot.com/data-trends/artificial-intelligence/ai-decision-making">conversational, agentic approach</a>.</p><h2>Agentic Analytics: A New Operating Model</h2><div class="wysiwyg_wysiwyg__WvjUC"><div style="margin: 24px 0; max-width: 600px;">
<p style="margin: 0 0 8px 0; font-style: italic; line-height: 1.5;">“Agentic Analytics is not a tool implementation—it is a new operating model.”</p>
<p style="margin: 0; font-weight: 600;">Joachim Höffner</p>
<p style="margin: 2px 0 0 0; font-size: 0.9em; opacity: 0.8;">Lead Data &amp; BI Engineer, Verivox&nbsp;</p>
</div></div><p>Verivox has been testing AI-driven chat systems that allow business users to skip the ticket queue and ask questions directly. This &quot;search-based&quot; approach, which Joachim first explored with ThoughtSpot years ago, has now evolved into a world where <a href="https://www.thoughtspot.com/product/agents/spotter">AI agents</a> don&apos;t just find data—they analyze relationships and explain variances.</p><p>&quot;It is about fundamentally changing how questions are asked and answered. Business users can increasingly obtain answers independently without always relying on specialists.&quot; - Joachim Höffner, Lead Data &amp; BI Engineer, Verivox</p><p>However, that independence doesn&apos;t come automatically. </p><h2>The Reality Check: Trust and Human Responsibility</h2><p>Despite the excitement, Verivox’s journey has been grounded in pragmatism. AI isn&apos;t a magic wand, and hallucinations were a real technical hurdle.</p><ul><li><p><strong>The 1+1 Test:</strong> Some companies lose trust in AI when it fails simple logic tests.</p></li><li><p><strong>Consistency is King:</strong> &quot;Creative&quot; answers are a liability in enterprise settings—Verivox requires deterministic results, with the AI giving the same accurate answer every time.</p></li><li><p><strong>The Human Guardrail:</strong> At Verivox, the responsibility still lies with the human. Employees are being trained not just to use AI, but to critically evaluate its output.</p></li></ul><p>This <a href="https://www.thoughtspot.com/data-trends/artificial-intelligence/human-in-the-loop">human-in-the-loop approach</a> is also what keeps traditional BI relevant—not as a fallback, but as the foundation AI works on top of.</p><h2>Will Dashboards Disappear?</h2><p>Dashboards will return to their original purpose: providing a high-level view of core company health. When an anomaly appears, that’s when the agent steps in. </p><p>Instead of building a new dashboard to investigate a trend, a user will <a href="https://www.thoughtspot.com/blog/mcp-spotter-in-claude-chatgpt-custom-agents">engage an AI agent</a> to perform the deep dive, potentially saving days of manual labor.</p><h2>The Best Time to Start your Agentic Analytics Journey is Now</h2><p>The speed of development is exponential, especially with the next generation of talent already using AI as a primary tool for problem-solving. For Verivox, staying ahead means:</p><p><strong>1. Defining Business Value:</strong> Not doing AI for the sake of AI, but identifying where it speeds up decision-making.</p><p><strong>2. Focusing on Governance:</strong> Ensuring that as data becomes more accessible, it remains secure and compliant.</p><p><strong>3. Experimentation:</strong> Accepting that while we don&apos;t know exactly where the journey ends, the cost of standing still is too high.</p><p><strong>The verdict?</strong> Traditional BI isn&apos;t investing in the past: it’s the baseline. But if you want to move at the speed of the modern market, you need to start building your agentic future today.</p><p>Check out how ThoughtSpot is supporting Verivox’s agentic journey and can do the same for your team – <a href="https://www.thoughtspot.com/demo?utm_source=blog&amp;utm_medium=content&amp;utm_term=cta1&amp;utm_content=demo&amp;utm_campaign=ev_bigdata_ai_frankfurt26">click here for a demo</a>. </p>]]></description>
					<pubDate>Tue, 14 Jul 2026 17:38:09 PST</pubDate>
					<guid isPermaLink="false"><![CDATA[<a href="blog/verivoxs-path-to-agentic-analytics">Beyond Dashboards: Verivox's Path to Agentic Analytics</a>]]></guid>
					<author> (Jochen Olbrich)</author>
					<ts:authorPortrait>https://media.thoughtspot.com/35707/1783971419-jochen-olbrich.jpeg</ts:authorPortrait>
					<ts:authorTitle><![CDATA[Country Manager Central EMEA]]></ts:authorTitle>
					<ts:authorName>Jochen Olbrich</ts:authorName>
				</item>
			
			</channel>
		</rss>