Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
olyatjtaylo authored Apr 29, 2024
1 parent 7a1de6d commit 45b39ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down

0 comments on commit 45b39ac

Please sign in to comment.