LLM-backed semantic pattern matching
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| patterns | VARCHAR | — |
| yields | VARCHAR | — |
| fallback(optional) | VARCHAR | — |
LLM escape hatch: matches fruit pattern
SELECT
semantic_switch_llm (
'apple',
'["is a fruit", "is an animal"]',
'["fruit", "animal"]',
'unknown'
)Identify target audience via zero-shot NLI
LLM-backed audience identification (escape hatch for AUDIENCE)
Assess authenticity of content via zero-shot NLI
LLM-backed authenticity assessment (escape hatch for AUTHENTICITY)
Classify text into user-specified buckets via zero-shot NLI
LLM-backed bucketing (escape hatch for BUCKET)
LLM-backed semantic pattern matching
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| patterns | VARCHAR | — |
| yields | VARCHAR | — |
| fallback(optional) | VARCHAR | — |
LLM escape hatch: matches fruit pattern
SELECT
semantic_switch_llm (
'apple',
'["is a fruit", "is an animal"]',
'["fruit", "animal"]',
'unknown'
)Identify target audience via zero-shot NLI
LLM-backed audience identification (escape hatch for AUDIENCE)
Assess authenticity of content via zero-shot NLI
LLM-backed authenticity assessment (escape hatch for AUTHENTICITY)
Classify text into user-specified buckets via zero-shot NLI
LLM-backed bucketing (escape hatch for BUCKET)