## Instructions
Click new issue to generate an issue
Click simulate body to generate its stats
Click each of the tests to get a readout
## Next Steps
- [ ] Integrate chat to give user advice
# Data for GPT
## Normal Ranges
```javascript
{
"vitalSigns": {
"heartRate": {
"unit": "bpm",
"normalRange": {"min": 60, "max": 100}
},
"breathingRate": {
"unit": "breaths/min",
"normalRange": {"min": 12, "max": 20}
},
"bodyTemperature": {
"unit": "°F",
"normalRange": {"min": 97.8, "max": 99.1}
},
"bloodPressure": {
"unit": "mmHg",
"normalRange": {"systolic": {"min": 90, "max": 120}, "diastolic": {"min": 60, "max": 80}}
}
},
"oxygenSaturation": {
"unit": "%",
"normalRange": {"min": 95, "max": 100}
},
"bloodTests": {
"glucoseLevel": {
"unit": "mg/dL",
"normalRange": {"min": 70, "max": 140}
},
"whiteBloodCellCount": {
"unit": "cells/µL",
"normalRange": {"min": 4500, "max": 11000}
},
"hemoglobin": {
"unit": "g/dL",
"normalRange": {"min": 13.8, "max": 17.2}
}
},
"urineTest": {
"specificGravity": {
"normalRange": {"min": 1.005, "max": 1.030}
},
"pH": {
"normalRange": {"min": 4.6, "max": 8.0}
}
},
}
```
## ChatGPT's List of Signs
```javascript
{
"vitalSigns": {
"heartRate": {
"value": 80,
"unit": "bpm",
"normalRange": {"min": 60, "max": 100}
},
"breathingRate": {
"value": 18,
"unit": "breaths/min",
"normalRange": {"min": 12, "max": 20}
},
"bodyTemperature": {
"value": 98.6,
"unit": "°F",
"normalRange": {"min": 97.8, "max": 99.1}
},
"bloodPressure": {
"systolic": 120,
"diastolic": 80,
"unit": "mmHg",
"normalRange": {"systolic": {"min": 90, "max": 120}, "diastolic": {"min": 60, "max": 80}}
}
},
"oxygenSaturation": {
"value": 98,
"unit": "%",
"normalRange": {"min": 95, "max": 100}
},
"bloodTests": {
"glucoseLevel": {
"value": 100,
"unit": "mg/dL",
"normalRange": {"min": 70, "max": 140}
},
"whiteBloodCellCount": {
"value": 6000,
"unit": "cells/µL",
"normalRange": {"min": 4500, "max": 11000}
},
"hemoglobin": {
"value": 15,
"unit": "g/dL",
"normalRange": {"min": 13.8, "max": 17.2}
}
},
"urineTest": {
"color": "yellow",
"specificGravity": {
"value": 1.020,
"normalRange": {"min": 1.005, "max": 1.030}
},
"pH": {
"value": 6.0,
"normalRange": {"min": 4.6, "max": 8.0}
}
},
"ECG": {
"heartRhythm": "Normal Sinus Rhythm",
"QRSComplex": {
"duration": 0.1,
"unit": "seconds"
}
},
"EEG": {
"brainWavePatterns": "Alpha",
"frequency": {
"value": 10,
"unit": "Hz"
}
}
}
```