Spaces:
Sleeping
Sleeping
Commit
Β·
36baacc
1
Parent(s):
670c857
Update pages/ChatterBot.py
Browse files- 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;'
|
| 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:
|