LLM-backed logical implication (escape hatch for IMPLIES)
Per-row — runs once for each row.
{{ premise }} IMPLIES_LLM {{ conclusion }}semantic_implies_llm({{ premise }}, {{ conclusion }})| name | type | description |
|---|---|---|
| premise | VARCHAR | — |
| conclusion | VARCHAR | — |
LLM escape hatch: strict entailment
SELECT
semantic_implies_llm ('John is a bachelor', 'John is unmarried')LLM escape hatch: unrelated premise and conclusion
SELECT
semantic_implies_llm ('The sky is blue', 'Today is Monday')Extract hidden assumptions from an argument or claim
Returns TRUE if text_a contradicts text_b (3-class NLI)
LLM-backed contradiction check (escape hatch for CONTRADICTS)
Returns TRUE if premise entails conclusion (zero-shot NLI)
Score how strongly evidence supports a claim (0-1)
LLM-backed logical implication (escape hatch for IMPLIES)
Per-row — runs once for each row.
{{ premise }} IMPLIES_LLM {{ conclusion }}semantic_implies_llm({{ premise }}, {{ conclusion }})| name | type | description |
|---|---|---|
| premise | VARCHAR | — |
| conclusion | VARCHAR | — |
LLM escape hatch: strict entailment
SELECT
semantic_implies_llm ('John is a bachelor', 'John is unmarried')LLM escape hatch: unrelated premise and conclusion
SELECT
semantic_implies_llm ('The sky is blue', 'Today is Monday')Extract hidden assumptions from an argument or claim
Returns TRUE if text_a contradicts text_b (3-class NLI)
LLM-backed contradiction check (escape hatch for CONTRADICTS)
Returns TRUE if premise entails conclusion (zero-shot NLI)
Score how strongly evidence supports a claim (0-1)