Andrey Litvin commited on
Commit
e7d05a0
·
verified ·
1 Parent(s): af5f299
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -73,7 +73,7 @@ def process_input(symptoms: str, city: str) -> tuple:
73
  with gr.Blocks(css=".gradio-container {max-width: 800px; margin: auto;}") as demo:
74
  gr.Markdown(
75
  """
76
- # 🏥 HealthMate: AI Medical Triage Assistant
77
  Enter your symptoms and optionally your city to get medical guidance and nearby clinic recommendations.
78
  """
79
  )
@@ -82,12 +82,12 @@ with gr.Blocks(css=".gradio-container {max-width: 800px; margin: auto;}") as dem
82
  with gr.Column():
83
  symptoms = gr.Textbox(
84
  label="Describe your symptoms",
85
- placeholder="Example: I have a severe headache and fever for the past 2 days...",
86
  lines=4
87
  )
88
  city = gr.Textbox(
89
  label="Your city (optional)",
90
- placeholder="Example: San Francisco"
91
  )
92
  submit_btn = gr.Button("Get Medical Guidance", variant="primary")
93
 
 
73
  with gr.Blocks(css=".gradio-container {max-width: 800px; margin: auto;}") as demo:
74
  gr.Markdown(
75
  """
76
+ # 🏥 WSES: AI Emergency Surgery Assistant
77
  Enter your symptoms and optionally your city to get medical guidance and nearby clinic recommendations.
78
  """
79
  )
 
82
  with gr.Column():
83
  symptoms = gr.Textbox(
84
  label="Describe your symptoms",
85
+ placeholder="Example: I have a severe abdominal pain and vomitus for the past 2 hours...",
86
  lines=4
87
  )
88
  city = gr.Textbox(
89
  label="Your city (optional)",
90
+ placeholder="Example: Gomel"
91
  )
92
  submit_btn = gr.Button("Get Medical Guidance", variant="primary")
93