feat: Add Cerebras and Fireworks as LLM providers and introduce configurable Whisper providers with dedicated API keys.
This commit is contained in:
@@ -4,7 +4,10 @@ public class ToakConfig
|
||||
{
|
||||
public string GroqApiKey { get; set; } = string.Empty;
|
||||
public string TogetherApiKey { get; set; } = string.Empty;
|
||||
public string LlmProvider { get; set; } = "groq"; // groq or together
|
||||
public string CerebrasApiKey { get; set; } = string.Empty;
|
||||
public string FireworksApiKey { get; set; } = string.Empty;
|
||||
public string LlmProvider { get; set; } = "groq"; // groq, together, cerebras, or fireworks
|
||||
public string WhisperProvider { get; set; } = "groq"; // groq or fireworks
|
||||
public string TypingBackend { get; set; } = "xdotool"; // wtype or xdotool
|
||||
public string AudioBackend { get; set; } = "pw-record"; // pw-record or ffmpeg
|
||||
public bool ModulePunctuation { get; set; } = true;
|
||||
|
||||
Reference in New Issue
Block a user