Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ collection_name = "giz_worldwide"
|
|
26 |
################### Hybrid Search ######################################################
|
27 |
client = get_client()
|
28 |
print(client.get_collections())
|
29 |
-
|
30 |
|
31 |
|
32 |
|
@@ -36,9 +36,12 @@ button=st.button("search")
|
|
36 |
#print(found_docs)
|
37 |
# results= get_context(vectorstore, f"find the relvant paragraphs for: {var}")
|
38 |
if button:
|
|
|
39 |
st.write(f"Showing Top 10 results for query:{var}")
|
40 |
st.write(f"Semantic: {len(results[0])}")
|
|
|
41 |
st.write(f"Semantic: {len(results[1])}")
|
|
|
42 |
|
43 |
# for i in results:
|
44 |
# st.subheader(str(i.metadata['id'])+":"+str(i.metadata['title_main']))
|
|
|
26 |
################### Hybrid Search ######################################################
|
27 |
client = get_client()
|
28 |
print(client.get_collections())
|
29 |
+
|
30 |
|
31 |
|
32 |
|
|
|
36 |
#print(found_docs)
|
37 |
# results= get_context(vectorstore, f"find the relvant paragraphs for: {var}")
|
38 |
if button:
|
39 |
+
results = hybrid_search(client, var, collection_name)
|
40 |
st.write(f"Showing Top 10 results for query:{var}")
|
41 |
st.write(f"Semantic: {len(results[0])}")
|
42 |
+
st.write(results[0])
|
43 |
st.write(f"Semantic: {len(results[1])}")
|
44 |
+
st.write(results[1])
|
45 |
|
46 |
# for i in results:
|
47 |
# st.subheader(str(i.metadata['id'])+":"+str(i.metadata['title_main']))
|