Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -91,16 +91,18 @@ config = {
|
|
91 |
}
|
92 |
|
93 |
# Streamlit app
|
94 |
-
st.title("
|
95 |
|
96 |
# Input for the query
|
97 |
-
query = st.text_input("Enter your query:", "What does
|
98 |
|
99 |
# Button to trigger the query
|
100 |
if st.button("Run Query"):
|
101 |
results, summary = vectara_query(query, config)
|
102 |
|
103 |
-
|
|
|
|
|
104 |
|
105 |
# Display summary
|
106 |
st.header("Summary")
|
|
|
91 |
}
|
92 |
|
93 |
# Streamlit app
|
94 |
+
st.title("KitchenCreators App")
|
95 |
|
96 |
# Input for the query
|
97 |
+
query = st.text_input("Enter your query:", "What does Kitchen Creators do?")
|
98 |
|
99 |
# Button to trigger the query
|
100 |
if st.button("Run Query"):
|
101 |
results, summary = vectara_query(query, config)
|
102 |
|
103 |
+
# Display results
|
104 |
+
st.header("Results")
|
105 |
+
st.write(results)
|
106 |
|
107 |
# Display summary
|
108 |
st.header("Summary")
|