A.D.A.M.’s structural routing is automatic, but you can override it at any time by starting your message withDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/xxyoudeadpunkxx/a.d.a.m.-adaptive-depth-and-mode/llms.txt
Use this file to discover all available pages before exploring further.
LOW, MID, or DEEP. Manual override wins over structural routing — it sits at position 5 in the priority ladder, above STRUCTURAL_KERNEL and STATE_DEFAULT. No gating, no waiting — the mode is forced immediately.
Syntax
The rules are strict and short:- The override token must be the first token of your message
- It must be followed by a boundary space — or be the entire message
- It is case-sensitive:
LOW,MID,DEEPexactly — no lowercase, no mixed case - The override is prefix-based: everything after the token and its boundary space is treated as the message content
| Message | Override valid? | Reason |
|---|---|---|
MID o che bello | ✅ Yes | Space after token |
MID, o che bello | ❌ No | Comma after token |
DEEP compare options: | ✅ Yes | Space after token |
mid explain JWT | ❌ No | Lowercase |
DEEP (alone) | ✅ Yes | Token with no trailing content |
When to Use Each Override
LOW
Fast, minimal answer.Use
LOW when you want a direct, no-frills answer and the router might escalate the message to MID or DEEP because of its shape.Example: LOW what is the capital of Japan? → Tokyo.MID
Default structured answer.Use
MID when you want structured, rigorous output but your message is structurally simple and wouldn’t normally trigger anything beyond AUTO_LIGHT.Example: MID explain the difference between TCP and UDPDEEP
Full decision support, no gating.Use
DEEP when your request is semantically complex but structurally simple — the structural kernel routes by shape, not meaning. Using the override skips the gating question entirely.Example: DEEP explain the tradeoffs of eventual consistencyOverride Behavior in DEEP
When you use theDEEP manual override:
- The protocol enters full decision support mode immediately — no
Switch to DEEP? (yes/no)question - AUDIT is always ON — the reply always ends with a 4-line AUDIT block
- C5 sparse local provenance signals may appear on eligible top-level blocks (column-1 numbered or bullet items) in the response body
- You have already consented to DEEP by using the override — there is no separate consent step
- If your message is
DEEPwith no trailing content: no automatic structural overlay is emitted - If your message is
DEEP <content>: the structural overlay is derived from<content>after stripping the leadingDEEPtoken — so chips reflect the shape of what you actually asked
DEEP override adds value: you get full decision support even when the structural kernel would have routed it as AUTO_STANDARD.
The No-Inertia Rule
A.D.A.M. recomputes mode on every message. A previous DEEP reply does not keep subsequent messages in DEEP. After a DEEP session, a simple factoid question will be routed asLOW or MID — as if the DEEP session never happened.
One-turn exception: A message with no whitespace that ends with ? inherits the previous exact mode (LOW, MID, or DEEP) for one turn only. This exception never applies to MODE: MID -> POSSIBLE DEEP.
The one-turn exception applies to the previous exact mode, not to the general direction of the conversation. If the previous reply was
MODE: MID -> POSSIBLE DEEP, that mode is never inherited.