Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import os
|
2 |
import getpass
|
3 |
import requests
|
4 |
-
|
5 |
import sentence_transformers
|
|
|
6 |
|
7 |
import streamlit as st
|
8 |
|
@@ -19,7 +19,9 @@ if "messages" not in st.session_state:
|
|
19 |
if "user_input" not in st.session_state:
|
20 |
st.session_state.user_input = ""
|
21 |
|
22 |
-
|
|
|
|
|
23 |
|
24 |
##############################################
|
25 |
##
|
|
|
1 |
import os
|
2 |
import getpass
|
3 |
import requests
|
|
|
4 |
import sentence_transformers
|
5 |
+
from PIL import Image
|
6 |
|
7 |
import streamlit as st
|
8 |
|
|
|
19 |
if "user_input" not in st.session_state:
|
20 |
st.session_state.user_input = ""
|
21 |
|
22 |
+
# Load the banner image from the same directory
|
23 |
+
banner_image = Image.open("banner.jpg")
|
24 |
+
st.image(banner_image, use_column_width=True)
|
25 |
|
26 |
##############################################
|
27 |
##
|