champ-ed / agent /agent_exceptions.py
MalikS-343
squash
cbfe36d
Raw
History Blame Contribute Delete
328 Bytes
class AgentException(Exception):
"""Base for unrecoverable failures raised by Agent."""
class MaxTurnsExceeded(AgentException):
"""Agent.chat() did not produce a final reply within max_turns."""
class InferenceError(AgentException):
"""A ChatProvider call failed unrecoverably. Original chained as __cause__."""