Commit
·
e16418a
1
Parent(s):
94a87c4
Added note
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ with gr.Blocks(
|
|
56 |
# Header
|
57 |
gr.Markdown(
|
58 |
"# Multi-Agent Radiology Assistant\n"
|
59 |
-
"Upload a chest X-ray image to receive an AI-
|
60 |
)
|
61 |
|
62 |
# Image upload section (centered, top)
|
@@ -77,7 +77,7 @@ with gr.Blocks(
|
|
77 |
)
|
78 |
|
79 |
# Add some spacing to prevent overlap
|
80 |
-
gr.HTML("<div style='height:
|
81 |
|
82 |
# Report output section (bottom)
|
83 |
with gr.Column(elem_classes=["report-container"]):
|
@@ -98,7 +98,8 @@ with gr.Blocks(
|
|
98 |
# Footer with example hint
|
99 |
gr.Markdown(
|
100 |
"### Need an example?\n"
|
101 |
-
"
|
|
|
102 |
)
|
103 |
|
104 |
if __name__ == "__main__":
|
|
|
56 |
# Header
|
57 |
gr.Markdown(
|
58 |
"# Multi-Agent Radiology Assistant\n"
|
59 |
+
"Upload a chest X-ray image to receive an AI-generated radiology report"
|
60 |
)
|
61 |
|
62 |
# Image upload section (centered, top)
|
|
|
77 |
)
|
78 |
|
79 |
# Add some spacing to prevent overlap
|
80 |
+
gr.HTML("<div style='height: 22px;'></div>")
|
81 |
|
82 |
# Report output section (bottom)
|
83 |
with gr.Column(elem_classes=["report-container"]):
|
|
|
98 |
# Footer with example hint
|
99 |
gr.Markdown(
|
100 |
"### Need an example?\n"
|
101 |
+
"Download and use any frontal chest X-ray PNG/JPG file from the internet and click **Generate Report**."
|
102 |
+
"### NOTE: This is just a demo. It is not intended to diagnose or suggest treatment of any disease or condition, and should not be used for medical advice."
|
103 |
)
|
104 |
|
105 |
if __name__ == "__main__":
|