Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- 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,
|
| 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 |
|