I'm trying to manually spin up the wyoming-rhasspy-speech add-on docker container but have some issues making it download exposed entities from home assistant.
My current docker-compose.yml:
services:
rhasspy-speech:
container_name: rhasspy-speech
image: "rhasspy/wyoming-rhasspy-speech:1.0.0"
restart: unless-stopped
volumes:
- "./config/models:/models"
- "./config/training:/training"
ports:
- "10300:10300"
- "8099:8099"
I've downloaded the en_US-zamia model successfully, but just trying to click "download exposed entities" results in No Home Assistant token error message.
I can't find any documentation regarding any environment variables to pass to the container for this.
Anyone have a clue?