diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-04-06 01:53:41 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-04-06 01:53:41 +0200 |
commit | 3077bfdff3587aac5ef91a8fb5730c11c8bb5273 (patch) | |
tree | 91590cf19d5de5606396075c5089f5c688dc6f30 /rag/db | |
parent | 606f3259a07b5dda7271daadc29e8525344152a1 (diff) |
Refactor doc db
Diffstat (limited to 'rag/db')
-rw-r--r-- | rag/db/document.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rag/db/document.py b/rag/db/document.py index c449158..f8c97c2 100644 --- a/rag/db/document.py +++ b/rag/db/document.py @@ -33,7 +33,7 @@ class DocumentDB: document = str.encode("".join([chunk.page_content for chunk in chunks])) return hashlib.sha256(document).hexdigest() - def add_document(self, chunks: List[Document]) -> bool: + def add(self, chunks: List[Document]) -> bool: log.debug("Inserting document hash into documents db...") with self.conn.cursor() as cur: hash = self.__hash(chunks) |