From 3ab8808576d948ce76e3e51e20a00567b6ede3e5 Mon Sep 17 00:00:00 2001 From: Adeshola Afolabi Date: Tue, 17 Oct 2023 07:11:50 -0400 Subject: [PATCH] Added slack to requirements.txt --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 1df0927..6f62b7a 100644 --- a/app.py +++ b/app.py @@ -17,7 +17,7 @@ st.markdown('', unsafe_allow_html=True) # Create a title container with an image and text -st.markdown('
Image

Tempo-AI KB Information Retriever

', unsafe_allow_html=True) +st.markdown('
Image

Conversational Information Retriever

', unsafe_allow_html=True) # Define the model name for the chatbot model_name = "gpt-3.5-turbo" @@ -63,7 +63,7 @@ def main(): st.markdown(question) # Add the chatbot's response to the conversation history - with st.expander("Assistant"): + with st.expander("Tempo AI"): message_placeholder = st.empty() message_placeholder.markdown(output + "▌") message_placeholder.markdown(output)