Exception raised when an action or agent is not found.
| 11 | |
| 12 | |
| 13 | class ActionNotFoundException(CopilotKitError): |
| 14 | """Exception raised when an action or agent is not found.""" |
| 15 | |
| 16 | def __init__(self, name: str): |
| 17 | self.name = name |
| 18 | super().__init__(f"Action '{name}' not found.") |
| 19 | |
| 20 | |
| 21 | class AgentNotFoundException(CopilotKitError): |
no outgoing calls
no test coverage detected
searching dependent graphs…