refactor: centralize common strings, paths, and default values into a new Constants class.
This commit is contained in:
@@ -8,8 +8,8 @@ public class ToakConfig
|
||||
public bool ModuleTechnicalSanitization { get; set; } = true;
|
||||
|
||||
public string WhisperLanguage { get; set; } = string.Empty;
|
||||
public string LlmModel { get; set; } = "openai/gpt-oss-20b";
|
||||
public string WhisperModel { get; set; } = "whisper-large-v3-turbo";
|
||||
public string LlmModel { get; set; } = Toak.Core.Constants.Defaults.LlmModel;
|
||||
public string WhisperModel { get; set; } = Toak.Core.Constants.Defaults.WhisperModel;
|
||||
public string StartSoundPath { get; set; } = "Assets/Audio/beep.wav";
|
||||
public string StopSoundPath { get; set; } = "Assets/Audio/beep.wav";
|
||||
public List<string> ActiveSkills { get; set; } = new List<string> { "Terminal", "Translate" };
|
||||
|
||||
Reference in New Issue
Block a user