(self, client)
| 79 | |
| 80 | class OpenAIAgentsIntegration: |
| 81 | def __init__(self, client): |
| 82 | self.__client = client |
| 83 | self.__cluster_id = None |
| 84 | self.__tool_invoker = ToolInvoker(client) |
| 85 | |
| 86 | def get_tools(self) -> List[Tool]: |
| 87 | tools = self.__tool_invoker.get_tools() |
nothing calls this directly
no test coverage detected