LLMIFY THIS MOFO
CI / Test (push) Successful in 46s

This commit is contained in:
2026-09-01 01:36:17 -04:00
parent dad09d1109
commit 034ee026b1
18 changed files with 318 additions and 41 deletions
+3 -1
View File
@@ -25,7 +25,8 @@ type Config struct {
// ProviderConfig holds API key for a provider
type ProviderConfig struct {
APIKey string `toml:"api_key"`
APIKey string `toml:"api_key"`
BaseURL string `toml:"base_url"` // OpenAI-compatible base URL, without /v1
}
// LLMConfig configures the LLM post-processing phase
@@ -139,4 +140,5 @@ type LLMAdapterConfig struct {
RemoveFillerWords bool
CustomPrompt string
Keywords []string
BaseURL string
}