Spaces:
Sleeping
Sleeping
palitrajarshi
commited on
Commit
β’
1ce3950
1
Parent(s):
0f66d47
Update pages/ChatterBot.py
Browse files- pages/ChatterBot.py +3 -3
pages/ChatterBot.py
CHANGED
@@ -13,10 +13,10 @@ 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;'>
|
|
|
17 |
|
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.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:
|