Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -172,7 +172,8 @@ elif st.session_state.step == 'show_results':
|
|
172 |
for img in similar_images:
|
173 |
col1, col2 = st.columns(2)
|
174 |
with col1:
|
175 |
-
st.image(img['image_url'], use_column_width=True)
|
|
|
176 |
with col2:
|
177 |
st.write(f"Name: {img['info']['name']}")
|
178 |
st.write(f"Brand: {img['info']['brand']}")
|
|
|
172 |
for img in similar_images:
|
173 |
col1, col2 = st.columns(2)
|
174 |
with col1:
|
175 |
+
#st.image(img['image_url'], use_column_width=True)
|
176 |
+
st.image(img['info']['image_url'], use_column_width=True)
|
177 |
with col2:
|
178 |
st.write(f"Name: {img['info']['name']}")
|
179 |
st.write(f"Brand: {img['info']['brand']}")
|