Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -0
src/streamlit_app.py
CHANGED
|
@@ -5,6 +5,8 @@ from dotenv import load_dotenv
|
|
| 5 |
import os
|
| 6 |
from streamlit.components.v1 import html
|
| 7 |
load_dotenv()
|
|
|
|
|
|
|
| 8 |
hf_api_key = os.getenv("SECRET")
|
| 9 |
|
| 10 |
if not hf_api_key:
|
|
|
|
| 5 |
import os
|
| 6 |
from streamlit.components.v1 import html
|
| 7 |
load_dotenv()
|
| 8 |
+
|
| 9 |
+
os.makedirs(".streamlit", exist_ok=True)
|
| 10 |
hf_api_key = os.getenv("SECRET")
|
| 11 |
|
| 12 |
if not hf_api_key:
|