Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("🎩 Ask Alfred, Your Gala Agent")
|
| 4 |
+
|
| 5 |
+
user_input = st.text_input("Ask Alfred about a guest:")
|
| 6 |
+
|
| 7 |
+
if st.button("Get Info"):
|
| 8 |
+
if user_input:
|
| 9 |
+
response = alfred.run(user_input)
|
| 10 |
+
st.write(response)
|