From 5dbbb9021a04309013aa74b14a1189fab1025528 Mon Sep 17 00:00:00 2001 From: Adithya Suresh Date: Wed, 2 Apr 2025 09:53:58 +1100 Subject: [PATCH] Add debug log --- src/pipecat/services/anthropic/llm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pipecat/services/anthropic/llm.py b/src/pipecat/services/anthropic/llm.py index eba6a5041..f5be2ea05 100644 --- a/src/pipecat/services/anthropic/llm.py +++ b/src/pipecat/services/anthropic/llm.py @@ -191,6 +191,8 @@ class AnthropicLLMService(LLMService): params.update(self._settings["extra"]) + logger.debug(f"Calling Anthropic model with: {params}") + response = await api_call(**params) await self.stop_ttfb_metrics()