Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +5 -1
src/streamlit_app.py
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from chat_langraph import system, workflow, HumanMessage, AIMessage, get_all_chat_ids, ToolMessage
|
| 3 |
import uuid
|
| 4 |
-
|
| 5 |
import base64
|
| 6 |
|
| 7 |
st.set_page_config(layout="wide")
|
|
|
|
| 1 |
+
|
| 2 |
+
|
| 3 |
+
import os
|
| 4 |
+
os.environ["STREAMLIT_HOME"] = "/tmp/.streamlit"
|
| 5 |
import streamlit as st
|
| 6 |
from chat_langraph import system, workflow, HumanMessage, AIMessage, get_all_chat_ids, ToolMessage
|
| 7 |
import uuid
|
| 8 |
+
|
| 9 |
import base64
|
| 10 |
|
| 11 |
st.set_page_config(layout="wide")
|