From b683a902c383d251c28dc14d61e8be60ebc0f2c7 Mon Sep 17 00:00:00 2001 From: Chad Bailey Date: Tue, 17 Sep 2024 01:35:56 +0000 Subject: [PATCH] reverted log changes --- src/pipecat/services/openai.py | 2 +- src/pipecat/services/together.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/services/openai.py b/src/pipecat/services/openai.py index b6a246537..2d0a24589 100644 --- a/src/pipecat/services/openai.py +++ b/src/pipecat/services/openai.py @@ -383,7 +383,7 @@ async def process_frame(self, frame, direction): await self._push_aggregation() else: logger.warning( - f"FunctionCallResultFrame tool_call_id ({frame.tool_call_id}) does not match FunctionCallInProgressFrame tool_call_id ({self._function_call_in_progress.tool_call_id})") + f"FunctionCallResultFrame tool_call_id does not match FunctionCallInProgressFrame tool_call_id") self._function_call_in_progress = None self._function_call_result = None diff --git a/src/pipecat/services/together.py b/src/pipecat/services/together.py index fdc99578c..49759cb01 100644 --- a/src/pipecat/services/together.py +++ b/src/pipecat/services/together.py @@ -279,7 +279,7 @@ async def process_frame(self, frame, direction): await self._push_aggregation() else: logger.warning( - f"FunctionCallResultFrame tool_call_id ({frame.tool_call_id}) does not match FunctionCallInProgressFrame tool_call_id ({self._function_call_in_progress.tool_call_id})") + f"FunctionCallResultFrame tool_call_id does not match FunctionCallInProgressFrame tool_call_id") self._function_call_in_progress = None self._function_call_result = None