diff --git a/src/pipecat/processors/aggregators/llm_context.py b/src/pipecat/processors/aggregators/llm_context.py index 27b446c45..ced7654bd 100644 --- a/src/pipecat/processors/aggregators/llm_context.py +++ b/src/pipecat/processors/aggregators/llm_context.py @@ -486,7 +486,6 @@ class LLMContext: result.tools_diff = self._compute_tools_diff(other) # Compare tool_choice - # print("[pk] comparing tool choices: ", self._tool_choice, other._tool_choice, type(self._tool_choice), type(other._tool_choice), self._tool_choice == other._tool_choice, self._tool_choice != other._tool_choice) # (For some reason if they're both NOT_GIVEN, equality check returns False?) if not self._tool_choice and not other._tool_choice: result.tool_choice_changed = False diff --git a/src/pipecat/services/google/gemini_live/llm.py b/src/pipecat/services/google/gemini_live/llm.py index 46b9550bf..dfad06f15 100644 --- a/src/pipecat/services/google/gemini_live/llm.py +++ b/src/pipecat/services/google/gemini_live/llm.py @@ -1530,7 +1530,6 @@ class GeminiLiveLLMService(LLMService): @traced_gemini_live(operation="llm_setup") async def _handle_session_ready(self, session: AsyncSession): - print("[pk] Handling session ready...") """Handle the session being ready.""" self._session = session # If we were just waititng for the session to be ready to run the LLM,