Skip to content

Commit

Permalink
fix intro message on chat_with_search
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jcarroll committed Jun 30, 2023
1 parent beaca2c commit 9d95270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/2_Chat_with_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

if "messages" not in st.session_state:
st.session_state["messages"] = [
{"role": "assistant", "content": "Hi, I'm a chatbot who can search the web using LangChain's DuckDuckGo Search tool. How can I help you?"}
{"role": "assistant", "content": "Hi, I'm a chatbot who can search the web. How can I help you?"}
]

for msg in st.session_state.messages:
Expand Down

0 comments on commit 9d95270

Please sign in to comment.