Finds common ground among texts via centrality + LLM summary
Per-group — reads the whole group in one call.
CONSENSUS({{ texts }})CONSENSUS({{ texts }}, '{{ prompt }}')| name | type | description |
|---|---|---|
| texts | JSON | — |
| prompt(optional) | VARCHAR | — |
Finds consensus in positive service reviews
WITH
test_data AS (
SELECT
*
FROM
(
VALUES
('The service was excellent'),
('Staff was friendly and helpful'),
('Great customer service experience'),
('Very attentive and professional team')
) AS t (review)
)
SELECT
CONSENSUS (review)
FROM
test_dataCondense individual text into brief summary (scalar, per-row)
LLM-only consensus (escape hatch for CONSENSUS)
Combine multiple text values into one coherent output
Summarize a group of texts into one concise overview
Extracts URLs from text, fetches with browser, returns summary
Extract N main topics from texts (embed centrality + LLM naming)
Finds common ground among texts via centrality + LLM summary
Per-group — reads the whole group in one call.
CONSENSUS({{ texts }})CONSENSUS({{ texts }}, '{{ prompt }}')| name | type | description |
|---|---|---|
| texts | JSON | — |
| prompt(optional) | VARCHAR | — |
Finds consensus in positive service reviews
WITH
test_data AS (
SELECT
*
FROM
(
VALUES
('The service was excellent'),
('Staff was friendly and helpful'),
('Great customer service experience'),
('Very attentive and professional team')
) AS t (review)
)
SELECT
CONSENSUS (review)
FROM
test_dataCondense individual text into brief summary (scalar, per-row)
LLM-only consensus (escape hatch for CONSENSUS)
Combine multiple text values into one coherent output
Summarize a group of texts into one concise overview
Extracts URLs from text, fetches with browser, returns summary
Extract N main topics from texts (embed centrality + LLM naming)