Spaces:
Sleeping
Sleeping
mathslearn
commited on
Commit
•
e65e5d4
1
Parent(s):
1d3d984
Update app.py
Browse files
app.py
CHANGED
@@ -12,14 +12,14 @@ from PIL import Image
|
|
12 |
st.title("Nexus TCM Chatbot")
|
13 |
query = st.text_input("Query: ", key="input")
|
14 |
|
15 |
-
#
|
16 |
-
logo_url = "https://huggingface.co/spaces/mathslearn/chatbot_test_streamlit/
|
17 |
|
18 |
-
#
|
19 |
-
logo_height =
|
20 |
|
21 |
-
# Display the logo with
|
22 |
-
st.image(logo_url, caption="Nexus TCM Chatbot Logo", use_column_width=True
|
23 |
|
24 |
if 'responses' not in st.session_state:
|
25 |
st.session_state['responses'] = []
|
|
|
12 |
st.title("Nexus TCM Chatbot")
|
13 |
query = st.text_input("Query: ", key="input")
|
14 |
|
15 |
+
# Set the logo URL
|
16 |
+
logo_url = "https://huggingface.co/spaces/mathslearn/chatbot_test_streamlit/blob/main/logo.jpeg"
|
17 |
|
18 |
+
# Set the desired logo height
|
19 |
+
logo_height = 150
|
20 |
|
21 |
+
# Display the logo with adjusted column width
|
22 |
+
st.image(logo_url, caption="Nexus TCM Chatbot Logo", use_column_width=True)
|
23 |
|
24 |
if 'responses' not in st.session_state:
|
25 |
st.session_state['responses'] = []
|