mathslearn commited on
Commit
e65e5d4
1 Parent(s): 1d3d984

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
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
- # URL of the logo image
16
- logo_url = "https://huggingface.co/spaces/mathslearn/chatbot_test_streamlit/resolve/main/logo.jpeg"
17
 
18
- # Desired height for the logo
19
- logo_height = 200
20
 
21
- # Display the logo with specified height
22
- st.image(logo_url, caption="Nexus TCM Chatbot Logo", use_column_width=True, height=logo_height)
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'] = []