This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/rhasspy/wyoming-piper | major | `2f5de2c` -> `54c511a` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzIuNSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMi41IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=--> --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
19 lines
424 B
Smarty
19 lines
424 B
Smarty
{{- define "wyoming-piper.args" -}}
|
|
{{- $piper := .Values.wyoming_piper -}}
|
|
args:
|
|
- --voice
|
|
{{- with $piper.custom_voice }}
|
|
- {{ . | quote }}
|
|
{{- else }}
|
|
- {{ $piper.voice | quote }}
|
|
{{- end }}
|
|
- --speaker
|
|
- {{ $piper.speaker | quote }}
|
|
- --length-scale
|
|
- {{ $piper.length_scale | quote }}
|
|
- --noise-scale
|
|
- {{ $piper.noise_scale | quote }}
|
|
- --noise-w
|
|
- {{ $piper.noise_w | quote }}
|
|
{{- end -}}
|