From 42336305922f190381bccf673095803b383e0715 Mon Sep 17 00:00:00 2001 From: Caroline Frasca <103123936+sfc-gh-cfrasca@users.noreply.github.com> Date: Tue, 7 May 2024 11:45:42 -0400 Subject: [PATCH] Update Chatbot.py --- Chatbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chatbot.py b/Chatbot.py index b6fe7ee32..0a4f2df45 100644 --- a/Chatbot.py +++ b/Chatbot.py @@ -8,7 +8,7 @@ "[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/streamlit/llm-examples?quickstart=1)" st.title("💬 Chatbot") -st.caption("🚀 A streamlit chatbot powered by OpenAI LLM") +st.caption("🚀 A Streamlit chatbot powered by OpenAI") if "messages" not in st.session_state: st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}]