polyguard-openenv / app /knowledge /side_effect_ontology.py
TheJackBright's picture
Deploy PolyGuard OpenEnv Space
877add7 verified
"""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"],
}