(vectors, vector_db_name, query)
| 319 | |
| 320 | |
| 321 | def search(vectors, vector_db_name, query): |
| 322 | ann_response = ann_vector(query["id"], vector_db_name, query["values"]) |
| 323 | bruteforce_result = bruteforce_search(vectors, query, 5) |
| 324 | return (ann_response, bruteforce_result) |
| 325 | |
| 326 | |
| 327 | def get_transaction_status(collection_name, transaction_id): |
nothing calls this directly
no test coverage detected