Fixes: Mem0 Setup, Logging, Docs (#3080)

This commit is contained in:
Jainish
2025-07-04 03:10:39 +05:30
committed by GitHub
parent eb7c712aa6
commit a20b68fcec
5 changed files with 34 additions and 29 deletions

View File

@@ -98,7 +98,7 @@ class PineconeDB(VectorStoreBase):
existing_indexes = self.list_cols().names()
if self.collection_name in existing_indexes:
logging.debug(f"Index {self.collection_name} already exists. Skipping creation.")
logger.debug(f"Index {self.collection_name} already exists. Skipping creation.")
self.index = self.client.Index(self.collection_name)
return