Remove stray debugging print statements
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user