LangChain - Conversational RAG
Examine the following code snippet for memory-augmented retrieval in langchain. What is the primary issue causing an error?
memory_store = SimpleMemory() retriever = MemoryRetriever(memory_store, base_retriever=SomeRetriever())
