Spaces:
Runtime error
Runtime error
File size: 137 Bytes
9c1ffe9 |
1 2 3 4 5 6 |
import streamlit as st
prompt = st.chat_input("Say something")
if prompt:
st.write(f"User has sent the following prompt: {prompt}")
|