streamlit01 / app.py
murongtianfeng's picture
Update app.py
67ffc22
raw
history blame contribute delete
136 Bytes
import streamlit as st
prompt = st.chat_input("Say something")
if prompt:
st.write(f"User has sent the following prompt: {prompt}")