3
3
addon.whisperstt.name = Whisper Speech-to-Text
4
4
addon.whisperstt.description = Whisper STT Service uses the whisper.cpp library to transcript audio data to text.
5
5
6
+ voice.config.whisperstt.apiKey.label = API Key
7
+ voice.config.whisperstt.apiKey.description = Key to access the API
8
+ voice.config.whisperstt.apiModelName.label = API Model
9
+ voice.config.whisperstt.apiModelName.description = Model name to use (API only). Default to OpenAI only available model (whisper-1).
10
+ voice.config.whisperstt.apiUrl.label = API Url
11
+ voice.config.whisperstt.apiUrl.description = OpenAI compatible API URL. Default to OpenAI transcription service.
6
12
voice.config.whisperstt.audioContext.label = Audio Context
7
13
voice.config.whisperstt.audioContext.description = Overwrite the audio context size. (0 to use whisper default context size)
8
14
voice.config.whisperstt.beamSize.label = Beam Size
@@ -24,27 +30,35 @@ voice.config.whisperstt.greedyBestOf.description = Best Of configuration for sam
24
30
voice.config.whisperstt.group.developer.label = Developer
25
31
voice.config.whisperstt.group.developer.description = Options added for developers.
26
32
voice.config.whisperstt.group.grammar.label = Grammar
27
- voice.config.whisperstt.group.grammar.description = Define a grammar to improve transcrptions .
33
+ voice.config.whisperstt.group.grammar.description = Define a grammar to improve transcriptions .
28
34
voice.config.whisperstt.group.messages.label = Info Messages
29
35
voice.config.whisperstt.group.messages.description = Configure service information messages.
36
+ voice.config.whisperstt.group.openaiapi.label = API Configuration Options
37
+ voice.config.whisperstt.group.openaiapi.description = Configure OpenAI compatible API, if you don't want to use the local model.
30
38
voice.config.whisperstt.group.stt.label = STT Configuration
31
39
voice.config.whisperstt.group.stt.description = Configure Speech to Text.
32
40
voice.config.whisperstt.group.vad.label = Voice Activity Detection
33
- voice.config.whisperstt.group.vad.description = Configure the VAD mechanisim used to isolate single phrases to feed whisper with.
41
+ voice.config.whisperstt.group.vad.description = Configure the VAD mechanism used to isolate single phrases to feed whisper with.
34
42
voice.config.whisperstt.group.whisper.label = Whisper Options
35
43
voice.config.whisperstt.group.whisper.description = Configure the whisper.cpp transcription options.
36
44
voice.config.whisperstt.initSilenceSeconds.label = Initial Silence Seconds
37
45
voice.config.whisperstt.initSilenceSeconds.description = Max initial seconds of silence to discard transcription.
38
46
voice.config.whisperstt.initialPrompt.label = Initial Prompt
39
47
voice.config.whisperstt.initialPrompt.description = Initial prompt to feed whisper with.
48
+ voice.config.whisperstt.language.label = Language
49
+ voice.config.whisperstt.language.description = If specified, speed up recognition by avoiding auto-detection. Default to system locale.
40
50
voice.config.whisperstt.maxSeconds.label = Max Transcription Seconds
41
51
voice.config.whisperstt.maxSeconds.description = Seconds to force transcription before silence detection.
42
52
voice.config.whisperstt.maxSilenceSeconds.label = Max Silence Seconds
43
53
voice.config.whisperstt.maxSilenceSeconds.description = Seconds of silence to trigger transcription.
44
54
voice.config.whisperstt.minSeconds.label = Min Transcription Seconds
45
55
voice.config.whisperstt.minSeconds.description = Min transcription seconds passed to whisper.
46
- voice.config.whisperstt.modelName.label = Model Name
47
- voice.config.whisperstt.modelName.description = Model name without extension.
56
+ voice.config.whisperstt.mode.label = Local Mode Or API
57
+ voice.config.whisperstt.mode.description = Use the local model or the OpenAI compatible API.
58
+ voice.config.whisperstt.mode.option.LOCAL = Local
59
+ voice.config.whisperstt.mode.option.API = OpenAI API
60
+ voice.config.whisperstt.modelName.label = Local Model Name
61
+ voice.config.whisperstt.modelName.description = Model name without extension. Local mode only.
48
62
voice.config.whisperstt.openvinoDevice.label = OpenVINO Device
49
63
voice.config.whisperstt.openvinoDevice.description = Initialize OpenVINO encoder. (built-in binaries do not support OpenVINO, this has no effect)
50
64
voice.config.whisperstt.preloadModel.label = Preload Model
0 commit comments