(self, tool_name: str)
| 85 | return self._openai_tools |
| 86 | |
| 87 | async def get_server_for_tool(self, tool_name: str): |
| 88 | if "." in tool_name: |
| 89 | return tool_name.split(".", 1)[0] |
| 90 | if "_" in tool_name: |
| 91 | return tool_name.split("_", 1)[0] |
| 92 | return "Unknown" |
| 93 | |
| 94 | # ----- execution stubs ------------------------------------------- |
| 95 | async def execute_tool(self, tool_name: str, arguments: Dict[str, Any]): |
no outgoing calls
no test coverage detected