Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
| 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__.""" | |