MCPcopy
hub / github.com/CopilotKit/CopilotKit / AgentExecutionException

Class AgentExecutionException

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

Exception raised when an agent fails to execute.

Source from the content-addressed store, hash-verified

36
37
38class AgentExecutionException(CopilotKitError):
39 """Exception raised when an agent fails to execute."""
40
41 def __init__(self, name: str, error: Exception):
42 self.name = name
43 self.error = error
44 super().__init__(f"Agent '{name}' failed to execute: {error}")
45
46
47class CopilotKitMisuseError(CopilotKitError, ValueError):

Callers 2

execute_agentMethod · 0.85
get_agent_stateMethod · 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…