Exception raised when an agent is not found.
| 19 | |
| 20 | |
| 21 | class AgentNotFoundException(CopilotKitError): |
| 22 | """Exception raised when an agent is not found.""" |
| 23 | |
| 24 | def __init__(self, name: str): |
| 25 | self.name = name |
| 26 | super().__init__(f"Agent '{name}' not found.") |
| 27 | |
| 28 | |
| 29 | class ActionExecutionException(CopilotKitError): |
no outgoing calls
no test coverage detected
searching dependent graphs…