Observations vs. interventions
The distinction matters because confounders can make an observational association point in the wrong direction or overstate the effect size. The
do() operator severs the incoming arrows to X in the causal graph, asking: if we forcibly set X (ignoring whatever normally determines it), what does Y become?
Phrasing intervention questions
Wu-Weism detects intervention intent from specific language patterns. Any of the following will trigger Rung 2 processing:do(, intervention, intervene, if we set, treatment, confounder, mediator, identifiability
Using operator mode
In addition to natural language triggers, you can force Rung 2 mode from Model Settings in the workbench sidebar:1
Open Model Settings
Click the Model Settings icon in the left sidebar of the Causal Chat interface.
2
Find the operator mode selector
Under Inference Mode, locate the Operator dropdown. The default is Auto (Wu-Weism selects the rung based on your question).
3
Select Intervene
Set the operator mode to Intervene. This pins all subsequent questions in the session to Rung 2, even if your phrasing is observational.
do() notation each time.
The identifiability gate
Before Wu-Weism computes any intervention effect, it runs an identifiability check. Identifiability means: given the causal graph (SCM) and the available data, can the interventional distributionP(Y | do(X)) be computed from observational data alone?
If the required confounders are not represented in the loaded SCM, the effect is not identifiable and the computation cannot be trusted.
When identifiability passes
The system proceeds to compute the intervention effect using the adjustment set — the minimal set of variables you need to condition on to block all backdoor paths from X to Y.Identifiability: PASSED
When identifiability fails
If the identifiability gate blocks the computation, Wu-Weism does not silently return a biased estimate. Instead, it:- Downgrades the response to association-level (Rung 1)
- Explains which confounders are missing from the SCM
- Labels the claim with
association-onlyso it is not mistaken for a causal result
Identifiability: BLOCKED
Worked example: drug intervention on inflammation
Research scenario: You are studying whether administering an anti-inflammatory drug reduces interleukin-6 (IL-6) levels in patients with chronic inflammatory disease. You want a causal estimate, not just a correlation. Step 1 — Ask the intervention questionEvent sequence
Example response shape
Intervention payload structure
Internally, Wu-Weism represents every intervention as a structured payload. Understanding this helps you interpret what the system is computing:
You can also supply these fields directly via the Causal Chat API if you are building programmatic workflows.
Viewing the causal trace
Every successful intervention produces a causal trace — a record of which graph edges were activated, which adjustment variables were used, and how the effect propagated through the SCM. You can view the causal trace in two places:- In the Claim Ledger at
/claims: locate the claim by ID (e.g.,claim_019), then expand the Provenance section. The trace ID (e.g.,trace_007) links to the full edge-by-edge record. - Via the API: use the
trace_idfrom the claim to query/api/scm/counterfactual-traces/{traceId}and retrieve the full trace record as JSON for downstream analysis or audit.
Common mistakes to avoid
Asking “what if we observed X at level v?” instead of “what if we set X to v?” These are different questions. The first is observational (Rung 1). The second is interventional (Rung 2). When in doubt, use explicitdo() notation.
Ignoring the identifiability gate result
If identifiability fails and the response is labeled association-only, do not treat the estimate as causal. The downgrade is a signal that the SCM is missing information needed for a valid Rung 2 answer.
Assuming a large effect size means identifiability passed
Effect size and identifiability are independent. A large association can exist even when the causal effect is not identifiable from available data.
Next steps
- Ask counterfactual questions after an intervention: Concepts — Counterfactuals
- Attach supporting literature to your intervention questions: Analyzing research papers with PDF upload
- Review governed intervention claims: Claim Ledger
