> ## Documentation Index
> Fetch the complete documentation index at: https://docs.obversa.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Fast and deliberate, side by side

> A fast typed decision runs first; the work goes to an agentic seat only when the confidence is under the gate or the decision asks for it.

<Note>
  **Coming soon.** Not in this release. This page says what the feature is,
  so that the shape is public before the code is.
</Note>

Most decisions in a run are small. Is this ticket the kind the
policy answers? Has this note actually changed since the reviewer read it?
Is the reply ready to send? Asking a full agentic seat costs a turn of
inference for each one, which is why gates like these are usually left out
of a workflow rather than written into it.

A fast decision model answers that kind of question with a typed choice and
a confidence. A step can ask it first and hand the work to the deliberate
seat only when the confidence falls under the gate, or when the decision
itself says the question needs thinking about.

The point is what becomes affordable. A typed call can run on every item; a
full agentic turn cannot, so it ends up running on none of them.

See [Conditions and gates](/graphs/contract).
