This method is not currently implemented in the Python SDK. The health check endpoint exists in the CyborgDB service API, but the Python client does not expose a get_health() method.To check service health, you can make a direct HTTP request to the /v1/health endpoint or use the JavaScript/TypeScript SDK which includes this functionality.This will be fixed in the v0.12.0 release of the Python SDK.
Checks the health status of the CyborgDB microservice to verify connectivity and service availability.
def get_health() -> Dict[str, str]

Returns

Dict[str, str]: Health status information from the service.

Exceptions

Example Usage

health = client.get_health()
print(f"Service status: {health}")