b7f151e
1
2
3
4
5
6
7
8
from pydantic import BaseModel class Symptom(BaseModel): fever: bool = False dry_cough: bool = False tiredness: bool = False breathing_problem: bool = False