refactor: modernize code, improve performance, and clean up various components.
This commit is contained in:
@@ -12,10 +12,10 @@ public class ToakConfig
|
||||
public int MinRecordingDuration { get; set; } = 500;
|
||||
|
||||
public string WhisperLanguage { get; set; } = string.Empty;
|
||||
public string LlmModel { get; set; } = Toak.Core.Constants.Defaults.LlmModel;
|
||||
public string LlmModel { get; set; } = Core.Constants.Defaults.LlmModel;
|
||||
public string ReasoningEffort { get; set; } = "none"; // none or low
|
||||
public string WhisperModel { get; set; } = Toak.Core.Constants.Defaults.WhisperModel;
|
||||
public string WhisperModel { get; set; } = 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" };
|
||||
public List<string> ActiveSkills { get; set; } = ["Terminal", "Translate"];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user