Spaces:
Runtime error
Runtime error
Commit
·
67ffc22
1
Parent(s):
f2ed852
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
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}")
|