Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,7 @@ except OSError as e:
|
|
| 19 |
st.error(f"Failed to create chat history directory: {e}")
|
| 20 |
|
| 21 |
# Streamlit Configurations
|
| 22 |
-
st.set_page_config(page_title="
|
| 23 |
|
| 24 |
|
| 25 |
st.logo(IMAGE_PATH_2)
|
|
@@ -60,9 +60,9 @@ def get_saved_sessions():
|
|
| 60 |
|
| 61 |
# Sidebar Configuration
|
| 62 |
with st.sidebar:
|
| 63 |
-
st.title("📂 Dubs Recall")
|
| 64 |
-
saved_sessions = get_saved_sessions()
|
| 65 |
dubs_key = st.text_input("Enter Dubs Key", key="chatbot_api_key", type="password")
|
|
|
|
|
|
|
| 66 |
|
| 67 |
|
| 68 |
# Display saved sessions
|
|
|
|
| 19 |
st.error(f"Failed to create chat history directory: {e}")
|
| 20 |
|
| 21 |
# Streamlit Configurations
|
| 22 |
+
st.set_page_config(page_title="DUBSChat",page_icon=IMAGE_PATH, layout="wide")
|
| 23 |
|
| 24 |
|
| 25 |
st.logo(IMAGE_PATH_2)
|
|
|
|
| 60 |
|
| 61 |
# Sidebar Configuration
|
| 62 |
with st.sidebar:
|
|
|
|
|
|
|
| 63 |
dubs_key = st.text_input("Enter Dubs Key", key="chatbot_api_key", type="password")
|
| 64 |
+
saved_sessions = get_saved_sessions()
|
| 65 |
+
|
| 66 |
|
| 67 |
|
| 68 |
# Display saved sessions
|