Custom exception raised when an agent encounters an unrecoverable execution failure. This exception is raised after all retry attempts have been exhausted or when a critical error occurs that cannot be resolved through retries. It provides context about which agent failed and the n
| 25 | |
| 26 | |
| 27 | class AgentExecutionError(Exception): |
| 28 | """ |
| 29 | Custom exception raised when an agent encounters an unrecoverable execution failure. |
| 30 | |
| 31 | This exception is raised after all retry attempts have been exhausted or when |
| 32 | a critical error occurs that cannot be resolved through retries. It provides |
| 33 | context about which agent failed and the nature of the failure. |
| 34 | """ |
| 35 | pass |
| 36 | |
| 37 | |
| 38 | class BaseAgent(abc.ABC): |
no outgoing calls
no test coverage detected