1
0

feat: Add configurable LLM and Whisper models with user selection and API integration.

This commit is contained in:
2026-02-25 22:05:32 +01:00
parent 863063f124
commit c2f4cbbfb2
3 changed files with 40 additions and 9 deletions

View File

@@ -14,6 +14,8 @@ public class ToakConfig
public bool StructureSmartParagraphing { get; set; } = true;
public string TargetLanguage { get; set; } = string.Empty;
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 static class ConfigManager