From acbfdc4dc9013f5fd193a11c8756c0cedccd93c4 Mon Sep 17 00:00:00 2001 From: Felix Fehse Date: Tue, 6 Feb 2024 10:33:19 +0100 Subject: [PATCH] IL-239 hotfix: remove print --- src/intelligence_layer/core/chunk.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intelligence_layer/core/chunk.py b/src/intelligence_layer/core/chunk.py index 92b3d8c2f..e84bc759c 100644 --- a/src/intelligence_layer/core/chunk.py +++ b/src/intelligence_layer/core/chunk.py @@ -121,6 +121,5 @@ def do_run(self, input: ChunkInput, task_span: TaskSpan) -> ChunkOutput: total_length -= len(last_overlap[0]) last_overlap = last_overlap[1:] - print(chunk_ids) decoded_chunks = self.tokenizer.decode_batch(chunk_ids) return ChunkOutput(chunks=decoded_chunks)