Extract chronologically ordered events from text
Per-row — runs once for each row.
TIMELINE({{ text }})TIMELINE({{ text }}, '{{ reference_date }}'){{ text }} TIMELINE| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| reference_date(optional) | VARCHAR | Reference date for resolving relative times (e.g., 'yesterday') |
Extracts ordered events with relative dates
SELECT
timeline (
'We met on Monday to discuss the proposal. By Wednesday, the contract was signed. The project launched the following week.'
)Extracts precise timestamps
SELECT
timeline (
'The server crashed at 3:15 PM. We identified the issue at 3:45 PM and deployed a fix at 4:30 PM.'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions
Extract chronologically ordered events from text
Per-row — runs once for each row.
TIMELINE({{ text }})TIMELINE({{ text }}, '{{ reference_date }}'){{ text }} TIMELINE| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| reference_date(optional) | VARCHAR | Reference date for resolving relative times (e.g., 'yesterday') |
Extracts ordered events with relative dates
SELECT
timeline (
'We met on Monday to discuss the proposal. By Wednesday, the contract was signed. The project launched the following week.'
)Extracts precise timestamps
SELECT
timeline (
'The server crashed at 3:15 PM. We identified the issue at 3:45 PM and deployed a fix at 4:30 PM.'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions