pyresearch commited on
Commit
b698d05
1 Parent(s): c2eb3af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -91,16 +91,18 @@ config = {
91
  }
92
 
93
  # Streamlit app
94
- st.title("Vectara Query App")
95
 
96
  # Input for the query
97
- query = st.text_input("Enter your query:", "What does Vectara do?")
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")