MCPcopy Create free account
hub / github.com/InferCore/InferCore / health

Method health

sdk/python/infercore/client.py:59–63  ·  view source on GitHub ↗

GET /health (unauthenticated).

(self)

Source from the content-addressed store, hash-verified

57 return data
58
59 def health(self) -> Dict[str, Any]:
60 """GET /health (unauthenticated)."""
61 resp = self._session.get(f"{self.base_url}/health", timeout=min(self._timeout, 30.0))
62 resp.raise_for_status()
63 return resp.json()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected