Extract hidden assumptions from an argument or claim
Per-row — runs once for each row.
ASSUMES({{ argument }})ASSUMES({{ argument }}, '{{ focus }}'){{ argument }} ASSUMES| name | type | description |
|---|---|---|
| argument | VARCHAR | — |
| focus(optional) | VARCHAR | Focus area (e.g., 'economic', 'technical', 'ethical', 'causal') |
Extracts assumptions about plastic straw environmental impact
SELECT
assumes ('We should ban plastic straws to save the oceans')Extracts causal economic assumptions
SELECT
assumes (
'Lowering interest rates will stimulate economic growth'
)Extracts technical assumptions with focus
SELECT
assumes (
'AI will replace most jobs within 10 years',
'technical'
)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)
LLM-backed logical implication (escape hatch for IMPLIES)
Score how strongly evidence supports a claim (0-1)
Extract hidden assumptions from an argument or claim
Per-row — runs once for each row.
ASSUMES({{ argument }})ASSUMES({{ argument }}, '{{ focus }}'){{ argument }} ASSUMES| name | type | description |
|---|---|---|
| argument | VARCHAR | — |
| focus(optional) | VARCHAR | Focus area (e.g., 'economic', 'technical', 'ethical', 'causal') |
Extracts assumptions about plastic straw environmental impact
SELECT
assumes ('We should ban plastic straws to save the oceans')Extracts causal economic assumptions
SELECT
assumes (
'Lowering interest rates will stimulate economic growth'
)Extracts technical assumptions with focus
SELECT
assumes (
'AI will replace most jobs within 10 years',
'technical'
)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)
LLM-backed logical implication (escape hatch for IMPLIES)
Score how strongly evidence supports a claim (0-1)