Spaces:
Sleeping
Sleeping
File size: 1,148 Bytes
5835953 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | import streamlit as st
# Page configuration
st.set_page_config(page_title="Simple Chatbot", page_icon="🤖")
# Initialize session state for chat history
if "messages" not in st.session_state:
st.session_state.messages = []
# Display header
st.title("💬 Simple Chatbot")
st.caption("Ask me anything about Python!")
# Display chat history
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
# Chat input
if prompt := st.chat_input("Type your message..."):
# Add user message to chat history
st.session_state.messages.append({"role": "user", "content": prompt})
# Display user message
with st.chat_message("user"):
st.markdown(prompt)
# Generate bot response
response = f"You said: {prompt}"
# Add bot response to chat history
st.session_state.messages.append({"role": "assistant", "content": response})
# Display bot response
with st.chat_message("assistant"):
st.markdown(response)
# Clear chat button
if st.sidebar.button("Clear Chat"):
st.session_state.messages = []
st.rerun() |