jayash391 commited on
Commit
be72f3a
·
verified ·
1 Parent(s): bff576b

Update sherlock2.py

Browse files
Files changed (1) hide show
  1. 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
- search_options = st.multiselect("Search for additional clues:", ["Internet"], default=["Internet"]) # Only "Internet" option
 
 
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))