XariZaru

Results 8 comments of XariZaru

Following up on an issue with the current approach. Pinecone automatically converts metadata text to datetime objects if it is possible. This behavior is often more harmful than good. Pinecone...

```python --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[1], line 22 20 print("AFTER INSERT", retriever.vectorstore._collection.count()) 21 retriever.vectorstore._collection.delete(ids=[ids]) ---> 22 retriever.docstore.mdelete(ids=[ids]) 23 print(retriever.vectorstore._collection.count()) 24 print("AFTER DELETE", retriever.vectorstore._collection.count()) TypeError: EncoderBackedStore.mdelete() got...

Hi, is there someone who can provide insight into the current issue?

> Hey @XariZaru, `DocStore.mdelete` doesn't take named param `ids=`. can you try > > ```python > retriever.docstore.mdelete([ids]) > ``` Hi, no documents are being deleted. But there is no error...

> The documents aren't being deleted from the DocStore or the VectorStore, or both? > > You're right that currently there's no way to delete child documents from the VectorStore....

@baskaryan I swapped over to Pinecone instead of Chroma. Wanted to follow up on this. If I was able to handle deleting from the Vectorstore (querying by filter) and deleting...

Still having issues with this. Any ideas guys?

Is there any information on why this is happening guys?