Files
langchain-python/langchain/vectorstores
Vincent 9e36d7b82c adding add_documents and aadd_documents to class RedisVectorStoreRetriever (#3419)
Ran into this issue In vectorstores/redis.py when trying to use the
AutoGPT agent with redis vector store. The error I received was

`
langchain/experimental/autonomous_agents/autogpt/agent.py", line 134, in
run
    self.memory.add_documents([Document(page_content=memory_to_add)])
AttributeError: 'RedisVectorStoreRetriever' object has no attribute
'add_documents'
`

Added the needed function to the class RedisVectorStoreRetriever which
did not have the functionality like the base VectorStoreRetriever in
vectorstores/base.py that, for example, vectorstores/faiss.py has
2023-04-25 13:53:20 -07:00
..
2023-04-22 09:17:38 -07:00
2023-04-24 11:50:55 -07:00
2023-04-24 11:50:55 -07:00
2023-04-24 22:19:36 -07:00
2023-04-24 11:50:55 -07:00
2023-04-24 11:50:55 -07:00
2023-04-24 11:50:55 -07:00
2023-04-22 09:17:38 -07:00
2023-04-24 11:50:55 -07:00
2023-04-24 19:54:15 -07:00
2023-04-24 22:15:32 -07:00
2023-04-22 08:26:19 -07:00