diff --git a/satellite/llm.py b/satellite/llm.py index 91955e6..c72d2b0 100644 --- a/satellite/llm.py +++ b/satellite/llm.py @@ -100,7 +100,6 @@ def ask_agent_stream(text: str, conv=None, agent_id: str = "cosmo") -> str: if last_punct > -1: sentence = clean_for_speech(buffer[:last_punct + 1]) if sentence.strip(): - print(f"🔊 Говорю: {sentence}") speak(sentence, agent_id) buffer = buffer[last_punct + 1:].lstrip() @@ -119,7 +118,6 @@ def ask_agent_stream(text: str, conv=None, agent_id: str = "cosmo") -> str: if TTS_MODE == "full": if result.strip(): - print(f"🔊 Говорю: {result}") speak(result, agent_id) else: if buffer.strip():