-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue when deploying Wyoming container #37
Comments
Use this, thank me later:
|
Hi, When I try to deploy the container I get this error instead
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to run Wyoming whisper in a docker container because I am running HA core and add-ons do not work when I try to deploy the container I get this error:
2024-11-20T22:45:25.473858870Z huggingface_hub.errors.LocalEntryNotFoundError: Cannot find an appropriate cached snapshot folder for the specified revision on the local disk and outgoing traffic has been disabled. To enable repo look-ups and downloads online, pass 'local_files_only=False' as input.
my yaml is:
`version: "3"
services:
whisper:
container_name: whisper
image: rhasspy/wyoming-whisper
command: --model medium-int8 --language en
volumes:
- ./whisper-data:/data
environment:
- TZ=US/Eastern
- local_files_only=False
- HF_HUB_CACHE=/tmp
restart: unless-stopped
ports:
- 10300:10300
piper:
container_name: piper
image: rhasspy/wyoming-piper
command: --voice en_US-lessac-medium
volumes:
- ./piper-data:/data
environment:
- TZ=US/Eastern
- local_files_only=False
- HF_HUB_CACHE=/tmp
restart: unless-stopped
ports:
- 10200:10200`
The text was updated successfully, but these errors were encountered: