microsoft / conversational-speaker

MIT License
162 stars 36 forks source link

how to stop conversation? #12

Closed kamil-malinski closed 1 year ago

kamil-malinski commented 1 year ago

Hi!

How to stop the conversation? Is there an equivalent to the wake word to stop the conversation?

Kamil

adrianwyatt commented 1 year ago

If you say just "Goodbye", it will respond and then stop listening.

kamil-malinski commented 1 year ago

thanks! is it possible to change the goodbye-phrase?

adrianwyatt commented 1 year ago

Yup! I haven't broken it out into a configuration setting, but the line of code is here: https://github.com/microsoft/conversational-speaker/blob/main/src/ConversationalSpeaker/HostedServices/HostedService.cs#L128

adrianwyatt commented 1 year ago

Or just search for "goodbye" in the other branches if you're coming from hackster. :)

kamil-malinski commented 1 year ago

great, thanks a lot!