Skip to content

Commit

Permalink
fix: Update default OpenAI model in test configuration to 'gpt-4o-mini'
Browse files Browse the repository at this point in the history
  • Loading branch information
yzzting committed Sep 2, 2024
1 parent 2b4bf15 commit 68c5ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn test_generate_config_toml() {
let toml_str = config::generate_config_toml();
assert!(toml_str.contains("openai_api_key = \"\""));
assert!(toml_str.contains("openai_url = \"https://api.openai.com\""));
assert!(toml_str.contains("openai_model = \"\""));
assert!(toml_str.contains("openai_model = \"gpt-4o-mini\""));
assert!(toml_str.contains("user_language = \"en\""));
}

Expand Down

0 comments on commit 68c5ea9

Please sign in to comment.