Summarize a group of texts into one concise overview
Per-group — reads the whole group in one call.
summarize({{ texts }})SUMMARIZE({{ texts }})| name | type | description |
|---|---|---|
| texts | JSON | — |
Summarizes multiple texts about weather into overview
WITH
test_data AS (
SELECT
*
FROM
(
VALUES
('The weather was sunny and warm'),
('It was a beautiful day for outdoor activities'),
('Perfect conditions for a picnic in the park')
) AS t (review)
)
SELECT
SUMMARIZE (review)
FROM
test_dataCondense individual text into brief summary (scalar, per-row)
Finds common ground among texts via centrality + LLM summary
LLM-only consensus (escape hatch for CONSENSUS)
Combine multiple text values into one coherent output
Extracts URLs from text, fetches with browser, returns summary
Extract N main topics from texts (embed centrality + LLM naming)
Summarize a group of texts into one concise overview
Per-group — reads the whole group in one call.
summarize({{ texts }})SUMMARIZE({{ texts }})| name | type | description |
|---|---|---|
| texts | JSON | — |
Summarizes multiple texts about weather into overview
WITH
test_data AS (
SELECT
*
FROM
(
VALUES
('The weather was sunny and warm'),
('It was a beautiful day for outdoor activities'),
('Perfect conditions for a picnic in the park')
) AS t (review)
)
SELECT
SUMMARIZE (review)
FROM
test_dataCondense individual text into brief summary (scalar, per-row)
Finds common ground among texts via centrality + LLM summary
LLM-only consensus (escape hatch for CONSENSUS)
Combine multiple text values into one coherent output
Extracts URLs from text, fetches with browser, returns summary
Extract N main topics from texts (embed centrality + LLM naming)