From 0bb7df7a6b26b35261e6e6af9f7b292aa5161964 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Mon, 8 Sep 2025 13:38:26 -0400 Subject: [PATCH] Remove stray debugging message --- src/pipecat/services/mistral/llm.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pipecat/services/mistral/llm.py b/src/pipecat/services/mistral/llm.py index 38ca3f049..eb0e82f51 100644 --- a/src/pipecat/services/mistral/llm.py +++ b/src/pipecat/services/mistral/llm.py @@ -107,8 +107,6 @@ class MistralLLMService(OpenAILLMService): if last_message.get("role") == "assistant" and "prefix" not in last_message: last_message["prefix"] = True - print(f"Fixed messages for Mistral: {fixed_messages}") - return fixed_messages async def run_function_calls(self, function_calls: Sequence[FunctionCallFromLLM]):