Update consultation.py
Browse files- consultation.py +2 -2
consultation.py
CHANGED
|
@@ -65,7 +65,7 @@ def submit_consultation(patient_id, height, weight, diastolic_bp, systolic_bp, t
|
|
| 65 |
"Weight (kgs)": weight,
|
| 66 |
"Diastolic BP": diastolic_bp,
|
| 67 |
"Systolic BP": systolic_bp,
|
| 68 |
-
"Temperature": temperature,
|
| 69 |
"Chief Complaints": chief_complaints,
|
| 70 |
"Prescription": prescription_data,
|
| 71 |
"Lab Investigations": lab_investigations,
|
|
@@ -122,7 +122,7 @@ def gradio_interface():
|
|
| 122 |
weight = gr.Number(label="Weight (kgs)")
|
| 123 |
diastolic_bp = gr.Number(label="Diastolic BP")
|
| 124 |
systolic_bp = gr.Number(label="Systolic BP")
|
| 125 |
-
temperature = gr.Number(label="Temperature (°
|
| 126 |
|
| 127 |
chief_complaints = gr.Textbox(label="Chief Complaints", lines=5)
|
| 128 |
|
|
|
|
| 65 |
"Weight (kgs)": weight,
|
| 66 |
"Diastolic BP": diastolic_bp,
|
| 67 |
"Systolic BP": systolic_bp,
|
| 68 |
+
"Temperature (°F)": temperature, # Updated to Fahrenheit
|
| 69 |
"Chief Complaints": chief_complaints,
|
| 70 |
"Prescription": prescription_data,
|
| 71 |
"Lab Investigations": lab_investigations,
|
|
|
|
| 122 |
weight = gr.Number(label="Weight (kgs)")
|
| 123 |
diastolic_bp = gr.Number(label="Diastolic BP")
|
| 124 |
systolic_bp = gr.Number(label="Systolic BP")
|
| 125 |
+
temperature = gr.Number(label="Temperature (°F)") # Updated to Fahrenheit
|
| 126 |
|
| 127 |
chief_complaints = gr.Textbox(label="Chief Complaints", lines=5)
|
| 128 |
|