nixos/wyoming-faster-whisper: update model enum

The medium model was never provided due to its extensive size.
This commit is contained in:
Martin Weinelt
2023-10-26 15:56:17 +02:00
parent 363358f66f
commit b501176d83
@@ -37,6 +37,9 @@ in
enable = mkEnableOption (mdDoc "Wyoming faster-whisper server");
model = mkOption {
# Intersection between available and referenced models here:
# https://github.com/rhasspy/models/releases/tag/v1.0
# https://github.com/rhasspy/rhasspy3/blob/wyoming-v1/programs/asr/faster-whisper/server/wyoming_faster_whisper/download.py#L17-L27
type = enum [
"tiny"
"tiny-int8"
@@ -44,7 +47,6 @@ in
"base-int8"
"small"
"small-int8"
"medium"
"medium-int8"
];
default = "tiny-int8";