Multi-branch semantic classification via specialist zoo NLI
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| conditions | VARCHAR | — |
| results | VARCHAR | — |
| default(optional) | VARCHAR | — |
Semantic CASE classifies tech topic
SELECT
semantic_case (
'software bug',
'["matches tech topic", "matches food topic"]',
'["tech", "food"]',
'unknown'
)Semantic CASE classifies food
SELECT
semantic_case (
'pepperoni pizza delivery',
'["tech product", "food item"]',
'["tech", "food"]',
'other'
)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)
Multi-branch semantic classification via specialist zoo NLI
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| text | VARCHAR | — |
| conditions | VARCHAR | — |
| results | VARCHAR | — |
| default(optional) | VARCHAR | — |
Semantic CASE classifies tech topic
SELECT
semantic_case (
'software bug',
'["matches tech topic", "matches food topic"]',
'["tech", "food"]',
'unknown'
)Semantic CASE classifies food
SELECT
semantic_case (
'pepperoni pizza delivery',
'["tech product", "food item"]',
'["tech", "food"]',
'other'
)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)