Starting a Conversation
Select a semantic model
Use the model selector dropdown at the top of the chat to choose which semantic model the AI should use. The model determines which database, tables, and business definitions are available.
Example Questions
Here are the types of questions you can ask:| Question | What It Does |
|---|---|
| ”What were the top 10 products by revenue last month?” | Aggregates revenue by product with a date filter and limit |
| ”Show me daily active users over the past 30 days” | Counts distinct users grouped by day with a date range |
| ”What is the average order value by country?” | Computes an average measure grouped by a dimension |
| ”Compare this quarter’s revenue to last quarter” | Uses window functions or date arithmetic for period comparison |
| ”Which customers placed orders in January but not February?” | Generates SQL with set operations (EXISTS / NOT EXISTS) |
Understanding Results
Each response from the AI includes up to three parts:Chart
An interactive visualization chosen by the AI based on your question. Bar charts for comparisons, line charts for trends, pie charts for proportions, and more.
Data table
The raw result set displayed as a sortable table. You can inspect individual values and verify the data behind the chart.
AI explanation
A natural language summary of what the agent found, highlighting key trends, outliers, or notable patterns in the results.
Conversation History
The AI agent maintains context throughout a conversation. You can build on previous questions without repeating yourself:- “Now break that down by region” - references the previous query’s measure
- “Exclude refunded orders” - adds a filter to the previous result
- “Show that as a line chart instead” - changes the visualization type
- “What about the last 90 days?” - adjusts the date range
Visual Builder vs. SQL Mode
The AI agent automatically selects the best approach for your question:- Visual builder mode
- SQL mode
Used for straightforward aggregation queries. The agent generates a structured configuration with dimensions, measures, filters, sorts, and chart settings. This mode covers questions like:
- Group-by aggregations (“revenue by country”)
- Top-N queries (“top 10 customers”)
- Filtered counts (“orders this month”)
- Simple comparisons (“revenue by product category”)
Saving Results as Insights
When you get a result worth keeping, you can save it as an insight:Click Save as Insight
After the AI returns results, click the Save as Insight button below the chart.
Name your insight
Give it a descriptive name like “Monthly Revenue by Region” or “Top Customers Q4”.