| """Typed errors for the slow-path layer.""" | |
| from __future__ import annotations | |
| class SlowPathError(Exception): | |
| """Base error for the slow-path layer.""" | |
| class AssemblerError(SlowPathError): | |
| """The Assembler LLM call could not produce a valid `AssembledOutput`.""" | |