Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update misc.rs
  • Loading branch information
tianrking authored Dec 29, 2025
commit debe4232bc1bb223e9cfbeb72399de776cf912b8
2 changes: 1 addition & 1 deletion src-tauri/src/commands/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ fn extract_env_vars_from_config(
if let Some(api_key) = obj.get("api_key").and_then(|v| v.as_str()) {
match app_type {
AppType::Gemini => {
env_vars.push(("GOOGLE_API_KEY".to_string(), api_key.to_string()));
env_vars.push(("GEMINI_API_KEY".to_string(), api_key.to_string()));
}
_ => {}
}
Expand Down