Bases: ToolErrorEvent
ToolErrorEvent raised when the requested tool cannot be found.
content property writable
Source code in autogen/beta/events/tool_events.py
| def to_api(self) -> dict[str, Any]:
return {
"role": "tool",
"tool_call_id": self.parent_id,
"content": self.content,
}
|