From 6bf446f43d3855db2e36f4338ec38588d47ef4ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=A4usler?= Date: Thu, 3 Jul 2025 01:42:42 +0200 Subject: [PATCH] chore: add trace msg to llm processor --- llm_processor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llm_processor.py b/llm_processor.py index 1834e57..5983f36 100644 --- a/llm_processor.py +++ b/llm_processor.py @@ -142,6 +142,7 @@ class LLMProcessor: try: if not self.anthropic or not self.session: error = "LLM or MCP session not initialized" + print("trace: ", error) print(error) if callback: callback(error) @@ -155,6 +156,8 @@ class LLMProcessor: "content": prompt } ] + + print("trace: sending request to LLM", messages) # Initial LLM call response = self.anthropic.messages.create(