palitrajarshi commited on
Commit
36baacc
β€’
1 Parent(s): 670c857

Update pages/ChatterBot.py

Browse files
Files changed (1) hide show
  1. pages/ChatterBot.py +3 -2
pages/ChatterBot.py CHANGED
@@ -13,10 +13,11 @@ if 'API_Key' not in st.session_state:
13
 
14
  # Setting page title and header
15
  st.set_page_config(page_title="Chat GPT Clone", page_icon=":robot_face:")
16
- st.markdown("<h1 style='text-align: center;'>ChatterBot </h1>", unsafe_allow_html=True)
17
- st.subheader("How Can I Help You Today? πŸ“Š")
18
 
19
  st.sidebar.title("πŸ˜ŽπŸ—οΈ")
 
20
  st.session_state['API_Key']= st.sidebar.text_input("What's your API key?",type="password")
21
  summarise_button = st.sidebar.button("Summarise the conversation", key="summarise")
22
  if summarise_button:
 
13
 
14
  # Setting page title and header
15
  st.set_page_config(page_title="Chat GPT Clone", page_icon=":robot_face:")
16
+ st.markdown("<h1 style='text-align: center;'>πŸ’» ChatterBot</h1>", unsafe_allow_html=True)
17
+ st.subheader("How Can I Help You Today? πŸ€–")
18
 
19
  st.sidebar.title("πŸ˜ŽπŸ—οΈ")
20
+ st.sidebar.image('./chatbot.jpg',width=300, use_column_width=True)
21
  st.session_state['API_Key']= st.sidebar.text_input("What's your API key?",type="password")
22
  summarise_button = st.sidebar.button("Summarise the conversation", key="summarise")
23
  if summarise_button: