feat: initial commit

This commit is contained in:
2025-06-13 16:55:46 +02:00
parent 1fb753469e
commit 85f0bc1024
23 changed files with 11758 additions and 45 deletions

View File

@ -1,12 +0,0 @@
package config
type LLM struct {
Provider LLMProvider `envPrefix:"PROVIDER_"`
}
type LLMProvider struct {
Name string `env:"NAME" envDefault:"openai"`
BaseURL string `env:"BASE_URL" envDefault:"https://api.openai.com/v1/"`
Key string `env:"KEY"`
Model string `env:"MODEL" envDefault:"gpt-4o-mini"`
}