Spaces:
Paused
Paused
gfhayworth
commited on
Commit
·
e371fb2
1
Parent(s):
0227654
test (#9)
Browse files- add unused argument (4d18f9e21c2bf05b901e581b8cd08ac6e6beb37c)
- greg_funcs.py +1 -1
greg_funcs.py
CHANGED
@@ -56,7 +56,7 @@ def vdb_rslt(qry,src,top_k=20):
|
|
56 |
##################################################################################################################################
|
57 |
# Semantic Search Functions
|
58 |
def rtrv(qry, src = 'H1036236000SB23.pdf', top_k=20):
|
59 |
-
rslts = vdb_rslt(qry,src)
|
60 |
return rslts
|
61 |
|
62 |
def rernk(query, collection=collection, top_k=20, top_n = 5):
|
|
|
56 |
##################################################################################################################################
|
57 |
# Semantic Search Functions
|
58 |
def rtrv(qry, src = 'H1036236000SB23.pdf', top_k=20):
|
59 |
+
rslts = vdb_rslt(qry,src, top_k)
|
60 |
return rslts
|
61 |
|
62 |
def rernk(query, collection=collection, top_k=20, top_n = 5):
|