| 1234567891011121314151617 | 
							- from pydantic import BaseModel
 - 
 - from core.plugin.impl.base import BasePluginClient
 - 
 - 
 - class PluginDebuggingClient(BasePluginClient):
 -     def get_debugging_key(self, tenant_id: str) -> str:
 -         """
 -         Get the debugging key for the given tenant.
 -         """
 - 
 -         class Response(BaseModel):
 -             key: str
 - 
 -         response = self._request_with_plugin_daemon_response("POST", f"plugin/{tenant_id}/debugging/key", Response)
 - 
 -         return response.key
 
 
  |