Spaces:
Sleeping
Sleeping
File size: 337 Bytes
caf9410 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from __future__ import annotations
from dataclasses import dataclass
from typing import Dict, Any
@dataclass
class Vitals:
sbp: int
dbp: int
hr: int
rr: int
temp_c: float
spo2: int
@dataclass
class PatientState:
scenario: str
patient_type: str
notes: str
labs: Dict[str, Any]
vitals: Vitals
|