[Update] Config Page: Transcription Tab. Add Whisper Weight Type Selector. Downloadable.

This commit is contained in:
Sakamoto Shiina
2024-11-12 14:52:15 +09:00
parent 36c53c49a2
commit 96ed2a9afc
7 changed files with 162 additions and 1 deletions

View File

@@ -23,4 +23,14 @@ export const ui_configs = {
export const ctranslate2_weight_type_status = [
{ id: "small", label: "small", is_downloaded: false, progress: null },
{ id: "large", label: "large", is_downloaded: false, progress: null },
];
export const whisper_weight_type_status = [
{ id: "tiny", label: "tiny", is_downloaded: false, progress: null },
{ id: "base", label: "base", is_downloaded: false, progress: null },
{ id: "small", label: "small", is_downloaded: false, progress: null },
{ id: "medium", label: "medium", is_downloaded: false, progress: null },
{ id: "large-v1", label: "large-v1", is_downloaded: false, progress: null },
{ id: "large-v2", label: "large-v2", is_downloaded: false, progress: null },
{ id: "large-v3", label: "large-v3", is_downloaded: false, progress: null },
];