Skip to content

Commit d223322

Browse files
committed
feat(config): update default Copilot model to use
1 parent dbe4d09 commit d223322

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ func InitConfig() {
3434
if token, err := LoadGitHubToken(); err == nil && token != "" {
3535
viper.SetDefault("active_provider", "copilot")
3636
viper.SetDefault("providers.copilot.api_key", token)
37-
viper.SetDefault("providers.copilot.model", "openai/gpt-4o")
37+
viper.SetDefault("providers.copilot.model", "openai/gpt-5-mini")
3838
} else {
3939
viper.SetDefault("active_provider", "openai")
40-
viper.SetDefault("providers.openai.model", "gpt-3.5-turbo")
40+
viper.SetDefault("providers.openai.model", "gpt-5-mini")
4141
}
4242

4343
viper.AutomaticEnv()

0 commit comments

Comments
 (0)