broadfield-dev commited on
Commit
44a2f11
·
verified ·
1 Parent(s): d6ee970

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -164,7 +164,7 @@ 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)
168
  print(dir(db.find()))
169
 
170
  formatted_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=query)
168
  print(dir(db.find()))
169
 
170
  formatted_results = []