from pathlib import Path import streamlit as st x = st.slider('Select a value') st.write(x, 'squared is', x * x) hub_folder = Path('~/.cache/huggingface/hub') for path in hub_folder.walk(): st.write(path)