From 0499fe41e455c700c2de11a1eebb84cc3f71a573 Mon Sep 17 00:00:00 2001 From: Kwindla Hultman Kramer Date: Sun, 29 Sep 2024 21:12:09 -0700 Subject: [PATCH] get rid of some debug log lines used during development --- src/pipecat/services/openai.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/pipecat/services/openai.py b/src/pipecat/services/openai.py index 8a032ea40..49fd04371 100644 --- a/src/pipecat/services/openai.py +++ b/src/pipecat/services/openai.py @@ -494,16 +494,9 @@ class OpenAIAssistantContextAggregator(LLMAssistantContextAggregator): if isinstance(frame, StartInterruptionFrame): self._function_calls_in_progress.clear() self._function_call_finished = None - logger.debug("clearing function calls in progress") elif isinstance(frame, FunctionCallInProgressFrame): self._function_calls_in_progress[frame.tool_call_id] = frame - logger.debug( - f"FunctionCallInProgressFrame: {frame.tool_call_id} {self._function_calls_in_progress}" - ) elif isinstance(frame, FunctionCallResultFrame): - logger.debug( - f"FunctionCallResultFrame: {frame.tool_call_id} {self._function_calls_in_progress}" - ) if frame.tool_call_id in self._function_calls_in_progress: del self._function_calls_in_progress[frame.tool_call_id] self._function_call_result = frame