Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 = []
|