Duration
8s
Input Tokens
726
Output Tokens
632
Cost
$0.00
Context
Input
What is the total revenue from all vehicle sales?Expected output
SELECT SUM(sale_price) AS total_revenue FROM sales;Model output
SELECT SUM(sale_price) FROM sales;Turn plain-English questions into correct SQL against a schema. The skill behind analytics chat, natural-language dashboards, and 'just ask the database' interfaces.
What is the total revenue from all vehicle sales?SELECT SUM(sale_price) AS total_revenue FROM sales;SELECT SUM(sale_price) FROM sales;