Get server for tool from stream_manager.
(self, tool_name: str)
| 115 | raise ValueError("Stream manager doesn't support tool execution") |
| 116 | |
| 117 | async def get_server_for_tool(self, tool_name: str) -> str: |
| 118 | """Get server for tool from stream_manager.""" |
| 119 | return self.stream_manager.get_server_for_tool(tool_name) or "Unknown" |
| 120 | |
| 121 | def add_context_notice(self, notice: str) -> None: |
| 122 | """Queue a context management notice for the next API call.""" |
no outgoing calls
no test coverage detected