Skip to content

Commit

Permalink
feat: update default OpenAI model to gpt-4o-mini in configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
yzzting committed Jul 20, 2024
1 parent b219b4b commit 324927a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ pub fn generate_config_toml() -> String {
let config = Config {
openai_api_key: "".to_string(),
openai_url: "https://api.openai.com".to_string(),
openai_model: "".to_string(),
openai_model: "gpt-4o-mini".to_string(),
user_language: "en".to_string(),
};
toml::to_string(&config).expect("Could not serialize config")
Expand Down

0 comments on commit 324927a

Please sign in to comment.