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
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ services:
94
94
- PGID=1000
95
95
- TZ=Etc/UTC
96
96
- WHISPER_MODEL=tiny-int8
97
+
- LOCAL_ONLY= #optional
97
98
- WHISPER_BEAM=1 #optional
98
99
- WHISPER_LANG=en #optional
99
100
volumes:
@@ -112,6 +113,7 @@ docker run -d \
112
113
-e PGID=1000 \
113
114
-e TZ=Etc/UTC \
114
115
-e WHISPER_MODEL=tiny-int8 \
116
+
-e LOCAL_ONLY= `#optional` \
115
117
-e WHISPER_BEAM=1 `#optional` \
116
118
-e WHISPER_LANG=en `#optional` \
117
119
-p 10300:10300 \
@@ -131,6 +133,7 @@ Containers are configured using parameters passed at runtime (such as those abov
131
133
|`-e PGID=1000`| for GroupID - see below for explanation |
132
134
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
133
135
|`-e WHISPER_MODEL=tiny-int8`| Whisper model that will be used for transcription. From `tiny`, `base`, `small` and `medium`, all with `-int8` compressed variants |
136
+
|`-e LOCAL_ONLY=`| If set to `true`, or any other value, the container will not attempt to download models from HuggingFace and will only use locally-provided models. |
134
137
|`-e WHISPER_BEAM=1`| Number of candidates to consider simultaneously during transcription. |
135
138
|`-e WHISPER_LANG=en`| Language that you will speak to the add-on. |
136
139
|`-v /config`| Local path for Whisper config files. |
@@ -298,6 +301,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
298
301
299
302
## Versions
300
303
304
+
***10.08.25:** - Add support for local-only mode.
301
305
***05.12.24:** - Build from Github releases rather than Pypi.
Copy file name to clipboardExpand all lines: readme-vars.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ param_ports:
29
29
# optional container parameters
30
30
opt_param_usage_include_env: true
31
31
opt_param_env_vars:
32
+
- {env_var: "LOCAL_ONLY", env_value: "", desc: "If set to `true`, or any other value, the container will not attempt to download models from HuggingFace and will only use locally-provided models."}
32
33
- {env_var: "WHISPER_BEAM", env_value: "1", desc: "Number of candidates to consider simultaneously during transcription."}
33
34
- {env_var: "WHISPER_LANG", env_value: "en", desc: "Language that you will speak to the add-on."}
34
35
readonly_supported: true
@@ -83,6 +84,7 @@ init_diagram: |
83
84
"faster-whisper:gpu" <- Base Images
84
85
# changelog
85
86
changelogs:
87
+
- {date: "10.08.25:", desc: "Add support for local-only mode."}
86
88
- {date: "05.12.24:", desc: "Build from Github releases rather than Pypi."}
87
89
- {date: "18.07.24:", desc: "Rebase to Ubuntu Noble."}
88
90
- {date: "19.05.24:", desc: "Bump CUDA to 12 on GPU branch."}
0 commit comments