ishaq101's picture
feat/Planner Agent (#2)
81e5fe7
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`."""