broadfield-dev commited on
Commit
d6ee970
·
verified ·
1 Parent(s): 42d0d21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -164,7 +164,8 @@ def search_memory():
164
  try:
165
  # FIX: "dict cannot be converted to PyString" means
166
  # the first argument must be the query string, not a dict.
167
- results = db.find(query, top_k=5)
 
168
 
169
  formatted_results = []
170
  for hit in results:
 
164
  try:
165
  # FIX: "dict cannot be converted to PyString" means
166
  # the first argument must be the query string, not a dict.
167
+ results = db.find(query)
168
+ print(dir(db.find()))
169
 
170
  formatted_results = []
171
  for hit in results: