Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +4 -0
src/streamlit_app.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
# app/streamlit_app.py
|
| 2 |
|
| 3 |
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
import streamlit as st
|
| 5 |
from agents import Runner
|
| 6 |
from agent.linkedin_agent import create_agent
|
|
|
|
| 1 |
# app/streamlit_app.py
|
| 2 |
|
| 3 |
import os
|
| 4 |
+
|
| 5 |
+
os.environ["STREAMLIT_CONFIG_DIR"] = os.path.join(os.getcwd(), ".streamlit")
|
| 6 |
+
os.makedirs(os.environ["STREAMLIT_CONFIG_DIR"], exist_ok=True)
|
| 7 |
+
|
| 8 |
import streamlit as st
|
| 9 |
from agents import Runner
|
| 10 |
from agent.linkedin_agent import create_agent
|