From 592654bb4b0bcbf25053e7bf893af8aa4d3e99a3 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello <3691490+PeterDaveHello@users.noreply.github.com> Date: Mon, 17 Aug 2026 03:22:24 +0800 Subject: [PATCH] Add latest Google Gemini models --- src/config/index.mjs | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/config/index.mjs b/src/config/index.mjs index 0e081e4d..c241c704 100644 --- a/src/config/index.mjs +++ b/src/config/index.mjs @@ -187,6 +187,9 @@ export const aimlApiModelKeys = [ export const googleApiModelKeys = [ 'googleGemini3_1Pro', 'googleGemini3_5Flash', + 'googleGemini3_5FlashLite', + 'googleGemini3_6Flash', + 'googleGemini3_7Flash', 'googleGemini3Flash', 'googleGemini2_5Pro', 'googleGemini2_5Flash', @@ -675,6 +678,18 @@ export const Models = { value: 'gemini-3.5-flash', desc: 'Google (Gemini 3.5 Flash)', }, + googleGemini3_5FlashLite: { + value: 'gemini-3.5-flash-lite', + desc: 'Google (Gemini 3.5 Flash-Lite)', + }, + googleGemini3_6Flash: { + value: 'gemini-3.6-flash', + desc: 'Google (Gemini 3.6 Flash)', + }, + googleGemini3_7Flash: { + value: 'gemini-3.7-flash', + desc: 'Google (Gemini 3.7 Flash)', + }, googleGemini3Flash: { value: 'gemini-3-flash-preview', desc: 'Google (Gemini 3 Flash Preview)', @@ -734,7 +749,7 @@ export const defaultApiModeIds = [ 'claudeSonnet5Api', 'claudeHaiku45Api', 'googleGemini3_1Pro', - 'googleGemini3_5Flash', + 'googleGemini3_7Flash', 'mistralMediumLatest', 'openRouter_auto', 'openRouter_free',