We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d223322 commit de372c2Copy full SHA for de372c2
2 files changed
internal/config/config.go
@@ -251,6 +251,8 @@ func LoadGitHubToken() (string, error) {
251
func getConfigDir() string {
252
if xdgConfig := os.Getenv("XDG_CONFIG_HOME"); xdgConfig != "" {
253
return xdgConfig
254
+
255
+ // WARNING: The code is not woking
256
} else if runtime.GOOS == "windows" {
257
if localAppData := os.Getenv("LOCALAPPDATA"); localAppData != "" {
258
return localAppData
internal/provider/openai.go
@@ -14,7 +14,7 @@ type OpenAIProvider struct {
14
15
func NewOpenAIProvider(apiKey, model, endpoint string) *OpenAIProvider {
16
if model == "" {
17
- model = "gpt-3.5-turbo"
+ model = "gpt-5-mini"
18
}
19
20
// Set default endpoint if none provided
0 commit comments