check-drug-interactions
Identify potential drug-drug interactions between two medications to help prevent adverse effects and ensure medication safety.
Instructions
Check for potential drug-drug interactions between two medications
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| drug1 | Yes | First drug name | |
| drug2 | Yes | Second drug name |
Input Schema (JSON Schema)
{
"properties": {
"drug1": {
"description": "First drug name",
"type": "string"
},
"drug2": {
"description": "Second drug name",
"type": "string"
}
},
"required": [
"drug1",
"drug2"
],
"type": "object"
}