You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Wishper as source for translation of my Assist within Home Assistant, I'm using Portuguese as the language.
Although, for it translates my sentence to English which then seem to make the Assist to be able to recognize the command.
Did I misconfigure something? I don't think so, as it was working in the past, and if I run the text pipeline, it does work as expected.
If I change the container default language to pt, it does stop doing that, although, that means that I'm not able to use the same container for both portuguese, and english. On top of that, if I want to have two containers, even if I change the default port, it keeps trying to use the 10300, and given that there is already a container, it will not launch.
Cheers
The text was updated successfully, but these errors were encountered:
You could instantiate two containers and you have to change the first port number in your docker-compose to use a different port. The second one is the internal one and should not be changed.
Both languages in one container
If you want it to be able to handle both portuguese and english, you have to set the language option to "auto" according to the code (or maybe not set it at all in the parameters). Not setting the language is more expensive and will use more compute.
Hey there,
When using Wishper as source for translation of my Assist within Home Assistant, I'm using Portuguese as the language.
Although, for it translates my sentence to English which then seem to make the Assist to be able to recognize the command.
Did I misconfigure something? I don't think so, as it was working in the past, and if I run the text pipeline, it does work as expected.
Container config
whisper:
container_name: whisper-english
image: rhasspy/wyoming-whisper:latest
command: --model base-int8 --language en
volumes:
environment:
restart: unless-stopped
network_mode: "host"
ports:
If I change the container default language to pt, it does stop doing that, although, that means that I'm not able to use the same container for both portuguese, and english. On top of that, if I want to have two containers, even if I change the default port, it keeps trying to use the 10300, and given that there is already a container, it will not launch.
Cheers
The text was updated successfully, but these errors were encountered: