Added timestamps to be able to filter and merge the nodes based on recency

This commit is contained in:
Vasilije 2024-01-19 23:06:32 +01:00
parent f9f7d4ad03
commit 0b1cefbfc5
2 changed files with 1 additions and 2 deletions

View file

@ -278,7 +278,6 @@ class BaseMemory:
n_of_observations: Optional[int] = 2,
):
logging.info(namespace)
logging.info("The search type is %", str(search_type))
logging.info(params)
logging.info(observation)

View file

@ -199,7 +199,7 @@ class WeaviateVectorDB(VectorDB):
client = self.init_weaviate(namespace =self.namespace)
if search_type is None:
search_type = 'hybrid'
logging.info("The search type is s%", (search_type))