", unsafe_allow_html=True)
st.markdown(f"
🎧 {display_name}
", unsafe_allow_html=True)
# Resolved path: samples/
/generated-audio.wav
audio_path = os.path.join(SAMPLES_DIR, repo_to_slug(repo), CLIP_NAME)
if os.path.isfile(audio_path):
st.audio(audio_path)
else:
st.error("Sample clip not found 🤷♂️")
st.markdown(" ", unsafe_allow_html=True)
# ---------- 6. Footer ----------
st.markdown("---")
st.caption("Crafted with ❤️ using Streamlit 1.35")