Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Whisper STT endpoint as default remote STT #684

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions neon_core/configuration/mark_2/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ audio_parsers:
blacklist:
- gender
stt:
module: google_cloud_streaming
fallback_module: ovos-stt-plugin-vosk
ovos-stt-plugin-vosk:
model: /home/neon/.local/share/neon/vosk-model-small-en-us-0.15
confirm_listening: true
listener:
VAD:
Expand Down
8 changes: 5 additions & 3 deletions neon_core/configuration/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ audio_parsers:
blacklist:
- gender
stt:
module: deepspeech_stream_local
fallback_module: google_cloud_streaming
module: ovos-stt-plugin-server
fallback_module: deepspeech_stream_local
ovos-stt-plugin-vosk:
model: /home/neon/.local/share/neon/vosk-model-small-en-us-0.15
ovos-stt-plugin-server:
url: https://stt.openvoiceos.com/stt
url: https://whisper.neonaiservices.com/stt
JarbasAl marked this conversation as resolved.
Show resolved Hide resolved
tts:
pulse_duck: false
preload_fallback: false
Expand Down
3 changes: 0 additions & 3 deletions neon_core/configuration/opi5/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ audio_parsers:
blacklist:
- gender
stt:
module: neon-stt-plugin-nemo
fallback_module: ovos-stt-plugin-vosk
ovos-stt-plugin-vosk:
model: /home/neon/.local/share/neon/vosk-model-small-en-us-0.15
confirm_listening: true
listener:
VAD:
Expand Down
3 changes: 0 additions & 3 deletions neon_core/configuration/rpi4/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ audio_parsers:
blacklist:
- gender
stt:
module: google_cloud_streaming
fallback_module: ovos-stt-plugin-vosk
ovos-stt-plugin-vosk:
model: /home/neon/.local/share/neon/vosk-model-small-en-us-0.15
confirm_listening: true
listener:
VAD:
Expand Down
1 change: 1 addition & 0 deletions requirements/pi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ neon-stt-plugin-google-cloud-streaming~=1.0,>=1.0.1
neon-tts-plugin-coqui-remote~=0.0.3
neon-stt-plugin-nemo~=0.0.4,>=0.0.5a2
ovos-tts-plugin-server==0.0.2a12
ovos-stt-plugin-server~=0.0.3

# Fallback plugins
neon-tts-plugin-coqui~=0.8,>=0.8.1a1
Expand Down
3 changes: 2 additions & 1 deletion requirements/remote_speech_processing.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
neon-stt-plugin-google-cloud-streaming~=1.0
ovos-stt-plugin-server~=0.0.3
#neon-stt-plugin-google-cloud-streaming~=1.0
neon-tts-plugin-polly~=0.2
neon-lang-plugin-amazon_translate~=0.1
Loading