Get all tool definitions in OpenAI format (with permission filtering applied)
(self)
| 124 | raise |
| 125 | |
| 126 | async def get_registered_tools(self) -> list: |
| 127 | """Get all tool definitions in OpenAI format (with permission filtering applied)""" |
| 128 | return await self.tool_registry.get_all_definitions( |
| 129 | allowed_tools=self.allowed_tools |
| 130 | ) |
| 131 | |
| 132 | async def execute(self, context: Dict[str, Any], params: Dict[str, Any]) -> Dict[str, Any]: |
| 133 | """Execute agent task""" |
no test coverage detected