Spaces:
Sleeping
Sleeping
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}")
|