I’m working on a project to add the chat history functionality in Streamlit chat (that I will share with the community as I did for some other projects).
I’m struggling with the layout to have the two buttons (the one loading the past conversation and the one to remove it from history)… I made some tests with containers and columns, without luck:
Any suggestion to help me achieve this? (the corresponding code is below):
import streamlit as st
st.sidebar.write("Menu Options")
st.sidebar.markdown("***")
history = [f"Past Conversation {i}" for i in range(1, 6)]
for key, conversation in enumerate(history):
st.sidebar.button(conversation)
st.sidebar.button("❌", key)
st.header("App Title")
import streamlit as st
st.sidebar.write("Menu Options")
st.sidebar.markdown("***")
history = [f"Past Conversation {i}" for i in range(1, 6)]
sc1, sc2 = st.sidebar.columns((2,1))
for vkey, conversation in enumerate(history):
sc1.button(conversation, key=f'c{vkey}')
sc2.button("❌", key=f'b{vkey}')
st.header("App Title")
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.