Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ if missing_keys:
|
|
38 |
|
39 |
# --- Configuration & Constants ---
|
40 |
class ClinicalAppSettings:
|
41 |
-
APP_TITLE = "SynapseAI
|
42 |
PAGE_LAYOUT = "wide"
|
43 |
MODEL_NAME = "llama3-70b-8192"
|
44 |
TEMPERATURE = 0.1
|
@@ -549,7 +549,8 @@ def main():
|
|
549 |
bp_mmhg = st.text_input("BP", "155/90")
|
550 |
spo2_percent = st.number_input("SpO2", 70, 100, 96)
|
551 |
pain_scale = st.slider("Pain", 0, 10, 8)
|
552 |
-
|
|
|
553 |
|
554 |
if st.button("Start/Update Consultation"):
|
555 |
current_meds_list = [med.strip() for med in current_meds_str.split('\n') if med.strip()]
|
|
|
38 |
|
39 |
# --- Configuration & Constants ---
|
40 |
class ClinicalAppSettings:
|
41 |
+
APP_TITLE = "SynapseAI "
|
42 |
PAGE_LAYOUT = "wide"
|
43 |
MODEL_NAME = "llama3-70b-8192"
|
44 |
TEMPERATURE = 0.1
|
|
|
549 |
bp_mmhg = st.text_input("BP", "155/90")
|
550 |
spo2_percent = st.number_input("SpO2", 70, 100, 96)
|
551 |
pain_scale = st.slider("Pain", 0, 10, 8)
|
552 |
+
# Updated height to at least 68 pixels as required by Streamlit
|
553 |
+
exam_notes = st.text_area("Exam Notes", "Awake, alert...", height=68)
|
554 |
|
555 |
if st.button("Start/Update Consultation"):
|
556 |
current_meds_list = [med.strip() for med in current_meds_str.split('\n') if med.strip()]
|