LLM-backed contradiction check (escape hatch for CONTRADICTS)
Per-row — runs once for each row.
{{ text_a }} CONTRADICTS_LLM {{ text_b }}semantic_contradicts_llm({{ text_a }}, {{ text_b }})| name | type | description |
|---|---|---|
| text_a | VARCHAR | — |
| text_b | VARCHAR | — |
LLM escape hatch: contradicting statements
SELECT
semantic_contradicts_llm (
'The product is excellent',
'The product is terrible'
)LLM escape hatch: unrelated statements
SELECT
semantic_contradicts_llm ('The sky is blue', 'Water is wet')Extract hidden assumptions from an argument or claim
Returns TRUE if text_a contradicts text_b (3-class NLI)
Returns TRUE if premise entails conclusion (zero-shot NLI)
LLM-backed logical implication (escape hatch for IMPLIES)
Score how strongly evidence supports a claim (0-1)
LLM-backed contradiction check (escape hatch for CONTRADICTS)
Per-row — runs once for each row.
{{ text_a }} CONTRADICTS_LLM {{ text_b }}semantic_contradicts_llm({{ text_a }}, {{ text_b }})| name | type | description |
|---|---|---|
| text_a | VARCHAR | — |
| text_b | VARCHAR | — |
LLM escape hatch: contradicting statements
SELECT
semantic_contradicts_llm (
'The product is excellent',
'The product is terrible'
)LLM escape hatch: unrelated statements
SELECT
semantic_contradicts_llm ('The sky is blue', 'Water is wet')Extract hidden assumptions from an argument or claim
Returns TRUE if text_a contradicts text_b (3-class NLI)
Returns TRUE if premise entails conclusion (zero-shot NLI)
LLM-backed logical implication (escape hatch for IMPLIES)
Score how strongly evidence supports a claim (0-1)