successor commited on
Commit
118ae78
1 Parent(s): 1f10761

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -106,13 +106,9 @@ st.markdown("""
106
  query = st.text_input("Search!", "")
107
 
108
  if query != "":
109
- channels = [channel_map[name] for name in channel_options]
110
  print(f"query: {query}")
111
  matches = make_query(
112
  query, retriever, top_k=5,
113
- filter={
114
- 'channel_id': {'$in': channels}
115
- }
116
  )
117
 
118
  results = {}
 
106
  query = st.text_input("Search!", "")
107
 
108
  if query != "":
 
109
  print(f"query: {query}")
110
  matches = make_query(
111
  query, retriever, top_k=5,
 
 
 
112
  )
113
 
114
  results = {}