Rifqi Hafizuddin
[KM-626][AI] Slow-path agent: seam contracts + TaskRunner
ac310de
Raw
History Blame
277 Bytes
"""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`."""