Skip to content

Commit

Permalink
reverted log changes
Browse files Browse the repository at this point in the history
  • Loading branch information
chadbailey59 committed Sep 17, 2024
1 parent a33e647 commit b683a90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pipecat/services/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/pipecat/services/together.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b683a90

Please sign in to comment.