Spaces:
Running
Running
File size: 288 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """PK/PD-inspired dosing state."""
from __future__ import annotations
from dataclasses import dataclass
@dataclass(slots=True)
class PKPDState:
effect_level: float
toxicity_level: float
underdose_risk: float
organ_stress: float = 0.0
interaction_load: float = 0.0
|