Healthcare
Use quantum-calculated probabilities to enhance treatment decisions for patients.
Body
patientIdstringRequiredExample:
Unique patient identifier.
patient_123456
treatmentOptionsstring[]OptionalExample:
List of potential treatment plans.
["Treatment A","Treatment B","Treatment C"]
shotsintegerOptionalExample:
Number of quantum shots.
1024
Responses
200
Successful analysis with optimized treatment plans.
application/json
post
POST /qmetrics/healthcare/optimize HTTP/1.1
Host: q.idefi.ai
Content-Type: application/json
Accept: */*
Content-Length: 106
{
"patientId": "patient_123456",
"treatmentOptions": [
"Treatment A",
"Treatment B",
"Treatment C"
],
"shots": 1024
}
200
Successful analysis with optimized treatment plans.
{
"patientId": "patient_123456",
"quantumResults": {
"probabilities": {
"100": 0.05,
"000": 0.5,
"001": 0.2,
"010": 0.15,
"011": 0.1
},
"mappedBehaviors": {
"000": "Patient shows high compatibility with Treatment A.",
"001": "Patient may respond moderately to Treatment B.",
"010": "Patient requires further diagnostics before Treatment C."
},
"analysis": "Treatment A is the most suitable option with a 50% probability of success."
},
"recommendations": [
"Prioritize Treatment A for immediate care.",
"Monitor patient's response and reevaluate Treatment C after 2 weeks."
]
}