Spaces:
Runtime error
Runtime error
abhi001vj
commited on
Commit
•
26ffc0a
1
Parent(s):
72f7ec4
fixed the app
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ def reset_results(*args):
|
|
80 |
st.session_state.raw_json = None
|
81 |
|
82 |
# Title
|
83 |
-
st.write("# Haystack Demo
|
84 |
st.markdown(
|
85 |
"""
|
86 |
This demo takes its data from two sample data csv with statistics on various topics
|
@@ -141,8 +141,6 @@ if run_pressed:
|
|
141 |
|
142 |
with st.spinner(
|
143 |
"🧠 Performing neural search on documents... \n "
|
144 |
-
"Do you want to optimize speed or accuracy? \n"
|
145 |
-
"Check out the docs: https://haystack.deepset.ai/usage/optimization "
|
146 |
):
|
147 |
try:
|
148 |
st.session_state.results = query(
|
|
|
80 |
st.session_state.raw_json = None
|
81 |
|
82 |
# Title
|
83 |
+
st.write("# Haystack Search Demo")
|
84 |
st.markdown(
|
85 |
"""
|
86 |
This demo takes its data from two sample data csv with statistics on various topics
|
|
|
141 |
|
142 |
with st.spinner(
|
143 |
"🧠 Performing neural search on documents... \n "
|
|
|
|
|
144 |
):
|
145 |
try:
|
146 |
st.session_state.results = query(
|