diff --git a/app.py b/app.py index cdc3cba1..491d6b04 100644 --- a/app.py +++ b/app.py @@ -7,10 +7,10 @@ "[View the source code](https://github.com/streamlit/llm-examples/blob/main/Chatbot.py)" "[![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.title("Welcome to Bob's Multi""model""Verse") +st.caption("🚀 A streamlit powered by OpenAI LLM and other tools... ") if "messages" not in st.session_state: - st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}] + st.session_state["messages"] = [{"role": "assistant", "content": "What's good in the hood, my clippa?"}] for msg in st.session_state.messages: st.chat_message(msg["role"]).write(msg["content"])