agnprz commited on
Commit
8a3f95b
·
verified ·
1 Parent(s): 5030a87

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -70,7 +70,7 @@ for idx, row in filtered_df.iterrows():
70
 
71
  if os.path.exists(img_path):
72
  img = Image.open(img_path)
73
- st.image(img, use_container_width=True, caption=f"Token: {row['token'][:8]}...")
74
  else:
75
  st.warning("Image not available in demo pack")
76
 
 
70
 
71
  if os.path.exists(img_path):
72
  img = Image.open(img_path)
73
+ st.image(img, caption=f"Token: {row['token'][:8]}...")
74
  else:
75
  st.warning("Image not available in demo pack")
76