print statements removed

This commit is contained in:
Sarthak Deshpande 2024-10-24 14:02:48 +05:30
parent 07e9da19b3
commit 9d630601b9

View file

@ -62,7 +62,6 @@ class PineconeIndex(EmbeddingIndex):
scores = []
for doc in results["matches"]:
chunk_json = doc["metadata"]
print(f"chunk_json: {chunk_json}")
try:
chunk = Chunk(**chunk_json)
except Exception: