Spaces:
Running
Running
File size: 594 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | """No-change baseline."""
from __future__ import annotations
from app.common.enums import ActionType, DecisionMode, DoseBucket
from app.common.types import PolyGuardAction
def choose_no_change() -> PolyGuardAction:
return PolyGuardAction(
mode=DecisionMode.REGIMEN_OPT,
action_type=ActionType.KEEP_REGIMEN,
target_drug=None,
replacement_drug=None,
dose_bucket=DoseBucket.NA,
taper_days=None,
monitoring_plan=None,
candidate_id="cand_01",
confidence=0.8,
rationale_brief="Baseline no-change policy.",
)
|