cdss / models.py
google-labs-jules[bot]
feat: Add Hugging Face deployment and refactor code
caf9410
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