Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
kenarsa committed May 16, 2024
1 parent cb5ff80 commit 3958010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/llm-voice-assistant/python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def main() -> None:
mic = PvRecorder(frame_length=porcupine.frame_length)
mic.start()

print(f"\n$ Say {'Picovoice' if keyword_model_path is None else 'the wake word'} ...")
print(f"\n$ Say {'`Picovoice`' if keyword_model_path is None else 'the wake word'} ...")

stop = [False]

Expand Down Expand Up @@ -341,7 +341,7 @@ def llm_callback(text: str) -> None:
wake_word_detected = False
user_request = ''
endpoint_reached = False
print(f"\n$ Say {'Picovoice' if keyword_model_path is None else 'the wake word'} ...")
print(f"\n$ Say {'`Picovoice`' if keyword_model_path is None else 'the wake word'} ...")
finally:
main_connection.send({'command': 'close'})
mic.delete()
Expand Down

0 comments on commit 3958010

Please sign in to comment.