Refactor: Reorganize project structure by moving core components into dedicated directories and introducing new configuration and API models.
This commit is contained in:
16
Configuration/ToakConfig.cs
Normal file
16
Configuration/ToakConfig.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Toak.Configuration;
|
||||
|
||||
public class ToakConfig
|
||||
{
|
||||
public string GroqApiKey { get; set; } = string.Empty;
|
||||
public string TypingBackend { get; set; } = "xdotool"; // wtype or xdotool
|
||||
public bool ModulePunctuation { get; set; } = true;
|
||||
public bool ModuleTechnicalSanitization { get; set; } = true;
|
||||
public string StyleMode { get; set; } = "Professional";
|
||||
public bool StructureBulletPoints { get; set; } = false;
|
||||
public bool StructureSmartParagraphing { 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";
|
||||
}
|
||||
Reference in New Issue
Block a user