Skip to content

Instantly share code, notes, and snippets.

@sukanyabag
Created September 10, 2023 15:36
Show Gist options
  • Save sukanyabag/7715ba92daafc673744c21869bcc7dbd to your computer and use it in GitHub Desktop.
Save sukanyabag/7715ba92daafc673744c21869bcc7dbd to your computer and use it in GitHub Desktop.
class Retriever:
def __init__(self):
self.text_retriever = None
self.text_deeplake_schema = None
self.embeddings = None
self.memory = ConversationBufferWindowMemory(k=2, return_messages=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment