Spaces:
Running
Running
File size: 298 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 10 11 | """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"],
}
|