Empower healthcare organizations to uncover GenAI-powered insights for improved efficiency, waste reduction, and enhanced care quality.

Join the Waitlist
# Import xc SDK library
from xc.client import Client as XCCLient
# Create client
config = {
  'api_key' = "API_KEY_HERE",
  'api_url' = "https://xc.acme.com" # your custom domain name
}
# Get diagnosis of a patient
diagnosis = XCCLient.get_diagnosis(patient = patient_id, config=config)
# Print the findings
print(diagnosis)