feat(config): add log_conversations option to AI metadata configuration

This commit is contained in:
2026-03-27 00:12:33 +02:00
parent 6af02a2ba1
commit 74e67526d1
7 changed files with 32 additions and 4 deletions

View File

@@ -84,9 +84,10 @@ type AIEmbeddingConfig struct {
}
type AIMetadataConfig struct {
Model string `yaml:"model"`
FallbackModel string `yaml:"fallback_model"`
Temperature float64 `yaml:"temperature"`
Model string `yaml:"model"`
FallbackModel string `yaml:"fallback_model"`
Temperature float64 `yaml:"temperature"`
LogConversations bool `yaml:"log_conversations"`
}
type LiteLLMConfig struct {