Answer plain-English questions about your data by writing and running SQL
Per-row — runs once for each row.
ASK_DATA('{{ question }}')| name | type | description |
|---|---|---|
| question | VARCHAR | Natural language question about your data |
Simple passthrough query returns value
SELECT
*
FROM
ask_data ('select 1 as test')Apply any arbitrary prompt to text (ultimate flexibility)
Return the SQL that ASK_DATA would run, without executing it
Call any registered LARS skill from SQL and receive results as a table
Generate a DuckDB SQL expression string from a plain-English description
Answer plain-English questions about your data by writing and running SQL
Per-row — runs once for each row.
ASK_DATA('{{ question }}')| name | type | description |
|---|---|---|
| question | VARCHAR | Natural language question about your data |
Simple passthrough query returns value
SELECT
*
FROM
ask_data ('select 1 as test')Apply any arbitrary prompt to text (ultimate flexibility)
Return the SQL that ASK_DATA would run, without executing it
Call any registered LARS skill from SQL and receive results as a table
Generate a DuckDB SQL expression string from a plain-English description