For example ,
user type : Hello
output : Hello
user type : 2
output : Hello
output : 2
user type : World
output : Hello
ouput : 2
output : World
Thanks !!!
For example ,
user type : Hello
output : Hello
user type : 2
output : Hello
output : 2
user type : World
output : Hello
ouput : 2
output : World
Thanks !!!
Hi @Root
Just following this video, do any one of the parts and you should be good to go with using streamlit!
Thanks but I managed to do something like what I wanted using session_state …
import streamlit as st
from streamlit_chat import messagemessage(“Welcome to Streamlit-Chat”)
if ‘message_history’ not in st.session_state:
st.session_state.message_history =for message_ in st.session_state.message_history:
message(message_,is_user=True) # display all the previous messageplaceholder = st.empty() # placeholder for latest message
input_ = st.text_input(“you”)
st.session_state.message_history.append(input_)with placeholder.container():
message( st.session_state.message_history[-1], is_user=True) # display the latest message
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
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.
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.
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.
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.