rhasspy / rhasspy3

An open source voice assistant toolkit for many human languages
MIT License
295 stars 23 forks source link

wyoming-faster-whisper: Fix model identifier retrieval on python3.11+ #53

Closed mweinelt closed 10 months ago

mweinelt commented 10 months ago

From Python 3.11 accessing an enum value will not longer convert to its value representation. Instead a representation of the enum key will be returned.

This broke model download on wyoming-faster-whisper, since it changed the URL under which model downloads would be looked for.

Closes: #16

synesthesiam commented 10 months ago

Thanks!