check_drug_interactions
Check for potential drug interactions between prescribed medications to ensure patient safety and prevent adverse effects.
Instructions
Check for drug interactions for a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
medications | Yes | List of medication names or RxNorm codes | |
patient_id | Yes | Patient ID |
Input Schema (JSON Schema)
{
"properties": {
"medications": {
"description": "List of medication names or RxNorm codes",
"items": {
"type": "string"
},
"type": "array"
},
"patient_id": {
"description": "Patient ID",
"type": "string"
}
},
"required": [
"patient_id",
"medications"
],
"type": "object"
}