8 lines
163 B
Python
8 lines
163 B
Python
import streamlit as st
|
|
from streamlit import user
|
|
|
|
user_input=st.chat_input()
|
|
|
|
if user_input:
|
|
with st.chat_message("user"):
|
|
st.write(user_input) |