realtime-transcription-playground icon indicating copy to clipboard operation
realtime-transcription-playground copied to clipboard

Add support for stop words being sent from client

Open saharmor opened this issue 4 years ago • 0 comments

Can be implemented either on the client-side or backend.

If in the backend, consider using this code in the listen_print_loop method.

if re.search(r"\b(exit|quit)\b", transcript, re.I):
   print("Exiting..")
   break

saharmor avatar Jul 02 '21 13:07 saharmor