File size: 277 Bytes
81e5fe7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""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`."""