From 45b39acb94905bba256175d67a75501e2c356ab1 Mon Sep 17 00:00:00 2001 From: olyatjtaylo <162665321+olyatjtaylo@users.noreply.github.com> Date: Mon, 29 Apr 2024 01:34:26 -0400 Subject: [PATCH] Update app.py --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"])