No. The majority of attacks are caught by Layers 0 and 1 which use zero LLM calls.
Layer 0 is a pure string-matching engine built on the Aho-Corasick algorithm. It scans for 30+ injection signatures in a single pass in under 1 ms. No AI. No API call. No token cost. Ever.
Layer 1 is a rule engine using regex and heuristics. Still no LLM. Still free.
Layer 2 — the only layer that calls an LLM — only fires when the first two layers are genuinely uncertain. That is a small minority of real-world traffic.
Most attacks never reach Layer 2.