MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / info

Method info

sdk/python/src/dstack_sdk/dstack_client.py:443–446  ·  view source on GitHub ↗

Fetch service information including parsed TCB info.

(self)

Source from the content-addressed store, hash-verified

441 return AttestResponse(**result)
442
443 async def info(self) -> InfoResponse[TcbInfo]:
444 """Fetch service information including parsed TCB info."""
445 result = await self._send_rpc_request("Info", {})
446 return InfoResponse.parse_response(result, TcbInfoV05x)
447
448 async def emit_event(
449 self,

Calls 2

_send_rpc_requestMethod · 0.95
parse_responseMethod · 0.80