Spaces:
Running
Running
| """Side effect tags.""" | |
| from __future__ import annotations | |
| SIDE_EFFECT_TAGS: dict[str, list[str]] = { | |
| "benzodiazepine_like": ["sedation", "falls"], | |
| "opioid_like": ["respiratory_depression", "sedation"], | |
| "warfarin_like": ["bleeding"], | |
| "nsaid_like": ["bleeding", "renal_injury"], | |
| } | |