refactor: remove login
Browse files
app.py
CHANGED
@@ -5,9 +5,9 @@ import streamlit as st
|
|
5 |
|
6 |
x = st.slider('Select a value')
|
7 |
st.write(x, 'squared is', x * x)
|
8 |
-
from huggingface_hub import login
|
9 |
|
10 |
-
login(os.getenv('HF_TOKEN'))
|
11 |
|
12 |
# hub_folder = Path('~/.cache/huggingface/hub')
|
13 |
# for path in hub_folder.walk():
|
|
|
5 |
|
6 |
x = st.slider('Select a value')
|
7 |
st.write(x, 'squared is', x * x)
|
8 |
+
# from huggingface_hub import login
|
9 |
|
10 |
+
# login(os.getenv('HF_TOKEN'))
|
11 |
|
12 |
# hub_folder = Path('~/.cache/huggingface/hub')
|
13 |
# for path in hub_folder.walk():
|