chore(core): default voice = jarvis-og

This commit is contained in:
Bossiara13 2026-04-27 20:37:56 +03:00
parent 764320786b
commit eedf4aad90
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ pub const DEFAULT_INTENT_BACKEND: &str = "intent-classifier";
pub const DEFAULT_SLOTS_BACKEND: &str = "none";
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 VOICES_PATH: &str = "voices"; // extended from SOUND_PATH (resources/sound)

View file

@ -152,7 +152,7 @@ impl Default for Settings {
fn default() -> Settings {
Settings {
microphone: -1,
voice: String::from(""),
voice: String::from(config::DEFAULT_VOICE),
wake_word_engine: config::DEFAULT_WAKE_WORD_ENGINE,