From 16ca218e8e403f391553b0ab4ad0dc5151ec6144 Mon Sep 17 00:00:00 2001 From: Marco Bronzini Date: Wed, 7 Aug 2024 15:34:05 +0200 Subject: [PATCH] removed print --- src/latent_explorer/utils/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/latent_explorer/utils/utils.py b/src/latent_explorer/utils/utils.py index 14b8f6f..ec6fdba 100644 --- a/src/latent_explorer/utils/utils.py +++ b/src/latent_explorer/utils/utils.py @@ -67,7 +67,6 @@ def text2json(output, max_attempts = 3, verbose = True): # FIX B: a fully unstructured string if e.pos <= 1: splitted_output = [item.strip() for item in output.split('\n') if item.strip()] - print('RAW [SPLITTING]:', splitted_output) if len(splitted_output) > 1: output = splitted_output[1] # skip the first component (e.g., assistant:\n ...)