Andrey Litvin
commited on
v6.0
Browse files
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 |
-
# 🏥
|
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
|
86 |
lines=4
|
87 |
)
|
88 |
city = gr.Textbox(
|
89 |
label="Your city (optional)",
|
90 |
-
placeholder="Example:
|
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 |
|