Update app.py
Browse files
app.py
CHANGED
@@ -75,7 +75,7 @@ user_context = st.text_area("π Additional Context (Optional)", "Describe symp
|
|
75 |
|
76 |
if uploaded_file:
|
77 |
image = Image.open(uploaded_file).convert("RGB")
|
78 |
-
st.image(image, caption="Uploaded Image",
|
79 |
|
80 |
# Run ViT inference
|
81 |
with st.spinner("Analyzing with Vision Transformer... π"):
|
|
|
75 |
|
76 |
if uploaded_file:
|
77 |
image = Image.open(uploaded_file).convert("RGB")
|
78 |
+
st.image(image, caption="Uploaded Image", use_container_width=True)
|
79 |
|
80 |
# Run ViT inference
|
81 |
with st.spinner("Analyzing with Vision Transformer... π"):
|