diff --git a/recipes/llm-voice-assistant/python/main.py b/recipes/llm-voice-assistant/python/main.py index d1e511e..44f969b 100644 --- a/recipes/llm-voice-assistant/python/main.py +++ b/recipes/llm-voice-assistant/python/main.py @@ -311,7 +311,10 @@ def llm_callback(text: str) -> None: 'utterance_end_sec': utterance_end_sec}) print(text, end='', flush=True) - print(f"\nLLM (say {'`Picovoice`' if keyword_model_path is None else 'the wake word'} to interrupt) > ", end='', flush=True) + print( + f"\nLLM (say {'`Picovoice`' if keyword_model_path is None else 'the wake word'} to interrupt) > ", + end='', + flush=True) res = pllm.generate( prompt=dialog.prompt(), completion_token_limit=picollm_completion_token_limit,