OAIWrapper/app.py

13 lines
322 B
Python
Raw Normal View History

2024-06-23 13:53:36 +00:00
import streamlit as st
2024-06-23 13:58:54 +00:00
st.title("Echo Bot")
# Initialize chat history
if "messages" not in st.session_state:
st.session_state.messages = []
# Display chat messages from history on app rerun
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])