Ask one question.
Get deep insights built on your business.
Kaiya plans the multi-step analysis, reasons across your data and your call notes, and returns the finished brief where you already work — every number traceable to source, and the same answer every time you run it.
Deep Insights is Tellius Kaiya’s agentic analysis capability. Ask the “why” in plain language: Kaiya auto-detects the right dataset, queries your structured and unstructured data together, plans the investigation, and writes and runs the SQL and Python. It runs whatever analysis the question needs (decomposition, key-driver, trend, anomaly, etc.) and returns a finished, governed brief with next steps, in a single run.
Kaiya works from your own metrics and business logic and applies the domain intelligence of your industry. It remembers your preferences, carrying your past decisions across turns and datasets, so every follow-up builds on the last.




















A chat answer stops short of the investigation
The answer arrives fast. The work still doesn't. Ask a chat tool why a number moved and you get a sentence — a summary that stops exactly where the hard part begins.
- A normal chatbot can't query structured and unstructured data together — your warehouse and your call notes never meet.
- It hands you the what, never the why — no variance decomposition, no ranked drivers, no proof.
- It can't run the analysis itself — you get a sentence, not a finished investigation.
So the fast answer becomes a slow week — an analyst stitches the SQL, Python, and PDFs together by hand.
It digs on its own.
You never spell out the steps.
Kaiya runs price/volume/mix because that’s how your business reads a unit decline. Kaiya knows, without you telling it. Click any step to view the thought process.
Thought Process
Iteration 1
- Description
- Set the objective and decide which dimensions to break the change down by before any query runs.
- Plan
- Anchor on units sold vs. the prior completed week; queue cuts by channel, category, and region, then variance, ranking, anomaly, and visualization checks.
- Assumptions
- Weeks run Monday–Sunday; “last completed week” excludes the current partial week.
- Output
- investigation_plan · 6 steps queued
- Description
- Break unit volume out by channel to find where the drop is concentrated.
- Instructions
- Sum units and YoY% by
channel, filtered to the Southeast and the last completed week; joinfact_salestodim_storeonstore_id; order by YoY% ascending. - Output columns (lowercase)
channel, total_units, units_yoy_pct- Output
- channel_units
- Rows Generated
- 4
- Columns
- channel, total_units, units_yoy_pct
SELECT channel, SUM(units) AS total_units, ROUND(100.0*(SUM(units)-SUM(units_ly))/SUM(units_ly),1) AS units_yoy_pct FROM fact_sales JOIN dim_store USING (store_id) WHERE region = 'Southeast' AND week_start >= DATE_TRUNC('week',CURRENT_DATE)-7 GROUP BY channel ORDER BY units_yoy_pct ASC;
- Description
- Decompose the unit and revenue change into price, volume, and mix effects per channel.
- Output
- bridge
- Summary
- DataFrame — 4 rows × 4 columns
- Rows Generated
- 4
- Columns
- channel, price_eff, volume_eff, mix_eff
import pandas as pd df = channel_units.copy() # price / volume / mix effects df['price_eff'] = (df['price'] - df['price_ly']) * df['units_ly'] df['volume_eff'] = (df['units'] - df['units_ly']) * df['price_ly'] df['mix_eff'] = df['rev'] - df['rev_ly'] - df['price_eff'] - df['volume_eff'] bridge = df.sort_values('mix_eff')
- Description
- Rank every driver by its contribution to the total change and flag statistically unusual movements.
- Instructions
- Score each driver’s share of the gap; compare each channel to its 3-year seasonal baseline and flag deviations beyond 2σ.
- Output
- ranked_drivers
- Rows Generated
- 4
- Columns
- driver, contribution_pct, z_score, is_anomaly
- Description
- Generate the charts that back the narrative so the brief is self-explanatory.
- Render
- A channel YoY bar chart and a price / volume / mix waterfall; the largest driver and the anomaly are annotated inline.
- Output
- brief_charts · 2 charts (PNG + spec)
- Prompt
- “Write an executive sales-pacing brief: headline the total change, rank the drivers, call out the anomaly, and recommend 2–3 next steps.”
- Render description
- Executive brief with an embedded channel chart and the driver waterfall, exported on the corporate template.
- Assumptions
- Uses the ranked drivers from Step 4 and the charts from Step 5; every figure reconciles back to the Step 2 query.
arguments: { drivers: ranked_drivers, charts: brief_charts }
response: brief.md · 168 words
arguments: { specs: [channel_yoy, pvm_waterfall] }
response: 2 images embedded
arguments: { formats: [pdf, pptx, docx], template: corporate }
response: 3 files ready
Deepest insights across sources.
Kaiya keeps digging — choosing the right analysis, often several at once, end to end — until it reaches the real why, not the first plausible answer.
You just ask. It handles the rest.
Ask a complex question — Kaiya clarifies only if it needs to, then runs the whole investigation. Below is the anatomy of a real Deep Insight conversation.
When Kaiya's unsure, it asks — pick or type your answer. It's saved as memory and compounds over time, so Kaiya remembers your preferences.
Drop in policies, PDFs, or contracts to deepen a question — attach files inline.
Take it with you — download the whole conversation for your team in PDF, PPT, or DOC format.
Spin up a live, interactive app from this investigation — running against your fresh data.
Schedule the investigation itself to re-run at your frequency. It re-runs the analysis — not a static report.
No need to pick a dataset — Kaiya auto-detects the relevant Business View and unstructured data (PDFs and docs).
Talk to it — full voice mode for a multi-turn conversation, plus dictation when you'd rather not type.
Follow up — Kaiya carries context across turns and across Business Views. Multi-turn & flexible.
Under the hood: our intelligent
architecture, in action
Watch a question travel the stack — data streams up, the engine reasons stage by stage, and a finished answer lands at the top.
Salesforce
PDFsQuestions on Deep Insights
A chatbot returns a sentence. A Deep Insight runs a multi-step, multi-turn agentic investigation — blending SQL and Python, reading your documents, decomposing the drivers, validating against source, and returning a finished, ranked answer with recommended next steps.
No. Ask in plain language. Kaiya auto-detects the Business View your question needs, writes the SQL and Python itself, and reads across structured and unstructured data — no schema to learn, no dataset to choose.
Each step of the Deep Insight investigation is carried out by a dedicated agent — a planning agent, a SQL agent, a Python agent, an analysis agent, a visualization agent, a summary agent, etc. Kaiya plans the run, invokes each agent, checks the result, and re-plans until the question is actually answered.
Yes. A deterministic engine handles the math while the LLM handles the language, so the same question returns the same answer every time. And nothing is hidden: the thought process lays out every step — its objective, what it did, the exact SQL and Python scripts it ran, and the rows each returned — so you can trace any number straight back to the query that produced it. The whole run is governed with lineage, access control, and a full audit trail.
Yes. Kaiya reads unstructured data — policies, call transcripts, notes, PDFs, contracts, etc. — and reasons over them in the same investigation as your warehouse and syndicated data.
Turn it into a live, interactive app on fresh data; schedule the investigation to re-run at your frequency (it re-runs the analysis, not a static report); or download the whole conversation in PDF, PPT, or DOC format, built on your template.
Stop reading answers.
Start getting investigations.
See what a single question turns into when Kaiya runs it deep — on your data, in your business.
Breakthrough Ideas, Right at Your Fingertips
Dig into our latest guides, webinars, whitepapers, and best practices that help you leverage data for tangible, scalable results.
.png)
ThoughtSpot alternative: migrating from ThoughtSpot to Tellius (2026 guide)
Many organizations that adopted search-driven analytics are now looking for platforms that go beyond answering questions to proactively investigating business performance and delivering finished analytical work. This migration guide explains how to move from ThoughtSpot to Tellius while preserving trusted metrics, semantic definitions, dashboards, and user adoption. It compares the two platforms across conversational analytics, automated insight discovery, root cause analysis, AI agents, governance, semantic context, and enterprise scalability.
.webp)
Agentic AI in Supply Chain: Use Cases, Platforms, and What's Shipping (2026)
Supply chain leaders are moving beyond predictive dashboards and generative AI toward agentic systems that can monitor operations, investigate disruptions, recommend actions, and orchestrate workflows across the enterprise. This guide explores the state of agentic AI in supply chain management in 2026, comparing the leading platforms and highlighting the use cases that are delivering measurable business value today. Learn how organizations are deploying AI agents for demand sensing, inventory optimization, supplier risk monitoring, procurement intelligence, logistics planning, production scheduling, transportation optimization, and exception management.
.webp)
Best FP&A Software in 2026: The Tools That Plan, and the Layer That Explains Why
Modern FP&A teams need more than planning software—they need the ability to explain financial performance, identify the drivers behind change, and act faster on emerging risks and opportunities. This buyer's guide compares the leading FP&A platforms in 2026 across budgeting, forecasting, scenario modeling, financial consolidation, reporting, AI-assisted planning, and enterprise analytics. It also introduces a new evaluation framework: distinguishing the systems that plan from the intelligence layer that explains why.

Tellius 6.3: Kaiya Everywhere, Grounded in Your Business
AI answers are only useful when they're grounded in your business and available where decisions actually happen. See how Tellius 6.3 delivers fast, traceable insights across pharma, CPG, RevOps, and FP&A — right in the tools your team already uses.

PMSA Fall Symposium 2025 in Boston
Join Tellius at PMSA Oct 2–3 for two can’t-miss sessions: Regeneron on how they’re scaling GenAI across the pharma brand lifecycle, and a hands-on workshop on AI Agents for sales, HCP targeting, and access wins. Discover how AI-powered analytics drives commercial success.
.webp)
Tellius AI Agents: Driving Real Analysis, Action, + Enterprise Intelligence
Tellius AI Agents transform business intelligence with dedicated AI squads that automate complex analysis workflows without coding. Join our April 17th webinar to discover how these agents can 100x enterprise productivity by turning questions into actionable insights, adapting to your unique business processes, and driving decisions with trustworthy, explainable intelligence.

