Colin Harman

Results 2 issues of Colin Harman

When I use the python client's data_object.update() method to populate a previously empty property, queries including both "where" filter and "near_text" on unrelated fields stop working. Queries with either but...

bug

Running the following code: ``` store = FAISS.from_texts( chunks["texts"], embeddings_instance, metadatas=chunks["metadatas"] ) faiss.write_index(store.index, "index.faiss") store.index = None with open("faiss_store.pkl", "wb") as f: pickle.dump(store, f) ``` Returns the following errors: ```...