chore(core): default voice = jarvis-og
This commit is contained in:
parent
764320786b
commit
eedf4aad90
2 changed files with 2 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ pub const DEFAULT_INTENT_BACKEND: &str = "intent-classifier";
|
||||||
pub const DEFAULT_SLOTS_BACKEND: &str = "none";
|
pub const DEFAULT_SLOTS_BACKEND: &str = "none";
|
||||||
pub const DEFAULT_VAD_BACKEND: &str = "energy";
|
pub const DEFAULT_VAD_BACKEND: &str = "energy";
|
||||||
|
|
||||||
pub const DEFAULT_VOICE: &str = "jarvis-remaster";
|
pub const DEFAULT_VOICE: &str = "jarvis-og";
|
||||||
pub const SOUND_PATH: &str = "resources/sound"; // extended from SOUND_DIR (resources/sound)
|
pub const SOUND_PATH: &str = "resources/sound"; // extended from SOUND_DIR (resources/sound)
|
||||||
pub const VOICES_PATH: &str = "voices"; // extended from SOUND_PATH (resources/sound)
|
pub const VOICES_PATH: &str = "voices"; // extended from SOUND_PATH (resources/sound)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -152,7 +152,7 @@ impl Default for Settings {
|
||||||
fn default() -> Settings {
|
fn default() -> Settings {
|
||||||
Settings {
|
Settings {
|
||||||
microphone: -1,
|
microphone: -1,
|
||||||
voice: String::from(""),
|
voice: String::from(config::DEFAULT_VOICE),
|
||||||
|
|
||||||
wake_word_engine: config::DEFAULT_WAKE_WORD_ENGINE,
|
wake_word_engine: config::DEFAULT_WAKE_WORD_ENGINE,
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue