Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 328 Bytes
cbfe36d | 1 2 3 4 5 6 7 8 9 10 11 | 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__."""
|