StreamForLLM / app.py
Rockramsri's picture
t
f45ab7a verified
raw
history blame
136 Bytes
import streamlit as st
prompt = st.chat_input("Say something")
if prompt:
st.write(f"User has sent the following prompt: {prompt}")