lovetang commited on
Commit
8c92eff
·
verified ·
1 Parent(s): 29d838d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ prompt = st.chat_input("Say something")
4
+ if prompt:
5
+ st.write(f"User has sent the following prompt: {prompt}")