From a2edacc271a7fd6253bdb111b2f7a5af48367024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=A4usler?= Date: Thu, 3 Jul 2025 01:53:10 +0200 Subject: [PATCH] fix: trace processing text --- llm_processor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llm_processor.py b/llm_processor.py index 429b474..234c985 100644 --- a/llm_processor.py +++ b/llm_processor.py @@ -140,6 +140,7 @@ class LLMProcessor: print(f"Error during text processing: {task.exception()}") async def _process_text_async(self, text: str, callback: Optional[Callable[[str], None]] = None): + print("trace: starting to process text") """Process text asynchronously.""" try: if not self.anthropic or not self.session: