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

feat: config to support additional voices and wakewords #688

Merged
merged 3 commits into from
Jun 27, 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
13 changes: 9 additions & 4 deletions neon_core/configuration/mark_2/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Audio:
dbus_type: system
audio_parsers:
blacklist:
- gender
- gender
stt:
fallback_module: ovos-stt-plugin-vosk
confirm_listening: true
Expand All @@ -43,14 +43,19 @@ hotwords:
active: false
hey_neon:
model_folder: /home/neon/.local/share/neon/vosk-model-small-en-us-0.15
active: true
listen: true
hey_mycroft:
module: ovos-ww-plugin-precise-lite
model: https://github.com/OpenVoiceOS/precise-lite-models/raw/master/wakewords/en/hey_mycroft.tflite
listen: True
expected_duration: 3
trigger_level: 3
sensitivity: 0.5

hey_jarvis:
module: ovos-ww-plugin-openwakeword
active: false
listen: true
sounds:
start_listening: snd/start_listening.wav
acknowledge: snd/acknowledge.mp3
Expand Down Expand Up @@ -96,7 +101,7 @@ PHAL:
debug: false
ssid: Neon
psk:
color: '#ff8600'
color: "#ff8600"
portal: start dot neon dot ai
device: Neon Device
ovos-PHAL-plugin-system:
Expand Down Expand Up @@ -172,4 +177,4 @@ language:
translation_module: libretranslate_plug
utterance_transformers:
neon_utterance_translator_plugin:
enable_detector: False
enable_detector: False
2 changes: 0 additions & 2 deletions requirements/pi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ onnxruntime!=1.16.0 # TODO: Patching https://github.com/microsoft/onnxruntime/i
ovos-ww-plugin-precise~=0.1
ovos-ww-plugin-precise-lite[tflite]~=0.1,>=0.1.2
ovos-ww-plugin-vosk~=0.1,>=0.1.1
# patching breaking change in openeakeword
openwakeword~=0.5,<0.6
ovos-ww-plugin-openwakeword~=0.2
neon-stt-plugin-google-cloud-streaming~=1.0,>=1.0.1

Expand Down
Loading