MCPcopy Index your code
hub / github.com/CopilotKit/CopilotKit / ActionNotFoundException

Class ActionNotFoundException

sdk-python/copilotkit/exc.py:13–18  ·  view source on GitHub ↗

Exception raised when an action or agent is not found.

Source from the content-addressed store, hash-verified

11
12
13class 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
21class AgentNotFoundException(CopilotKitError):

Callers 1

_get_actionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…