Spaces:
Sleeping
Sleeping
Update sherlock2.py
Browse files- sherlock2.py +3 -1
sherlock2.py
CHANGED
@@ -355,7 +355,9 @@ def investigate():
|
|
355 |
with st.expander("Sherlock's Analysis and Suggestions:"):
|
356 |
st.write(response.text)
|
357 |
|
358 |
-
|
|
|
|
|
359 |
if st.button("Search"):
|
360 |
with st.spinner("Searching for clues..."):
|
361 |
web_search_results = search_internet("\n\n".join(case_text))
|
|
|
355 |
with st.expander("Sherlock's Analysis and Suggestions:"):
|
356 |
st.write(response.text)
|
357 |
|
358 |
+
web_search_results = [] # Add this line
|
359 |
+
|
360 |
+
search_options = st.multiselect("Search for additional clues:", ["Internet"], default=["Internet"])
|
361 |
if st.button("Search"):
|
362 |
with st.spinner("Searching for clues..."):
|
363 |
web_search_results = search_internet("\n\n".join(case_text))
|