Skip to content

Commit de372c2

Browse files
committed
chore: add warnning
1 parent d223322 commit de372c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

internal/config/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,8 @@ func LoadGitHubToken() (string, error) {
251251
func getConfigDir() string {
252252
if xdgConfig := os.Getenv("XDG_CONFIG_HOME"); xdgConfig != "" {
253253
return xdgConfig
254+
255+
// WARNING: The code is not woking
254256
} else if runtime.GOOS == "windows" {
255257
if localAppData := os.Getenv("LOCALAPPDATA"); localAppData != "" {
256258
return localAppData

internal/provider/openai.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type OpenAIProvider struct {
1414

1515
func NewOpenAIProvider(apiKey, model, endpoint string) *OpenAIProvider {
1616
if model == "" {
17-
model = "gpt-3.5-turbo"
17+
model = "gpt-5-mini"
1818
}
1919

2020
// Set default endpoint if none provided

0 commit comments

Comments
 (0)