Remove stray debugging print statements

This commit is contained in:
Paul Kompfner
2026-02-05 12:37:28 -05:00
parent e039abd290
commit 50dace147d
2 changed files with 0 additions and 2 deletions

View File

@@ -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

View File

@@ -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,