Spaces:
Runtime error
Runtime error
Added input and update button
Browse files
app.py
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
-
|
| 4 |
-
st.
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
st.title("Adrega AI Help")
|
| 4 |
+
user_input = st.text_input('Ask me a question')
|
| 5 |
+
if st.button("Submit"):
|
| 6 |
+
st.write(f"You entered: {user_input}")
|