Fix: deepseek mime clue

This commit is contained in:
Grail Finder
2025-05-29 10:21:47 +03:00
parent e8507463e0
commit 9ebce0a7d0
2 changed files with 56 additions and 8 deletions

View File

@ -1,6 +1,7 @@
package config
import (
"fmt"
"log/slog"
"github.com/BurntSushi/toml"
@ -38,6 +39,6 @@ func LoadConfigOrDefault(fn string) *Config {
config.ServerConfig.Host = "localhost"
config.ServerConfig.Port = "3000"
}
// fmt.Printf("config debug; config.LLMConfig.URL: %s\n", config.LLMConfig.URL)
fmt.Printf("config debug; config.LLMConfig.URL: %s\n", config.LLMConfig.URL)
return config
}