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