Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -70,7 +70,7 @@ uploaded_image = st.file_uploader("Upload an Image", type=["jpg", "jpeg", "png"]
|
|
| 70 |
if uploaded_image is not None:
|
| 71 |
image = Image.open(uploaded_image).convert("RGB")
|
| 72 |
# Use use_container_width instead of use_column_width
|
| 73 |
-
st.image(image, caption="Uploaded Image",
|
| 74 |
|
| 75 |
# Create tabs for different ways to interact
|
| 76 |
tab1, tab2 = st.tabs(["Quick Presets", "Ask Anything"])
|
|
|
|
| 70 |
if uploaded_image is not None:
|
| 71 |
image = Image.open(uploaded_image).convert("RGB")
|
| 72 |
# Use use_container_width instead of use_column_width
|
| 73 |
+
st.image(image, caption="Uploaded Image", width=None)
|
| 74 |
|
| 75 |
# Create tabs for different ways to interact
|
| 76 |
tab1, tab2 = st.tabs(["Quick Presets", "Ask Anything"])
|