From 6b864ee21db3b2dc944b83bdca7a2e09164fc176 Mon Sep 17 00:00:00 2001 From: "Brandon Hancock (bhancock_ai)" <109994880+bhancockio@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:08:37 -0500 Subject: [PATCH] drop print (#1755) --- src/crewai/knowledge/source/base_knowledge_source.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crewai/knowledge/source/base_knowledge_source.py b/src/crewai/knowledge/source/base_knowledge_source.py index b749ad481..07a9a0f25 100644 --- a/src/crewai/knowledge/source/base_knowledge_source.py +++ b/src/crewai/knowledge/source/base_knowledge_source.py @@ -46,5 +46,4 @@ class BaseKnowledgeSource(BaseModel, ABC): Save the documents to the storage. This method should be called after the chunks and embeddings are generated. """ - print("CHUNKS: ", self.chunks) self.storage.save(self.chunks)