Detect formality level for grouping (zero-shot NLI)
Per-row classifier — stable across GROUP BY.
FORMALITY({{ text }}){{ text }} BY FORMALITY| name | type | description |
|---|---|---|
| text | VARCHAR | — |
Formal letter detected
SELECT
formality (
'Dear Sir or Madam, I am writing to inquire about the status of my application...'
)Informal chat detected
SELECT
formality ('hey whats up dude lol')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)
Detect formality level for grouping (zero-shot NLI)
Per-row classifier — stable across GROUP BY.
FORMALITY({{ text }}){{ text }} BY FORMALITY| name | type | description |
|---|---|---|
| text | VARCHAR | — |
Formal letter detected
SELECT
formality (
'Dear Sir or Madam, I am writing to inquire about the status of my application...'
)Informal chat detected
SELECT
formality ('hey whats up dude lol')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)