feat: add gemini 2.5 pro (exp) model (closes #959)

This commit is contained in:
Carl-Robert Linnupuu 2025-04-02 00:23:37 +01:00
parent a8d5ca7ce7
commit a293c9d5bc
3 changed files with 3 additions and 1 deletions

View file

@ -12,7 +12,7 @@ jsoup = "1.17.2"
jtokkit = "1.1.0"
junit = "5.12.1"
kotlin = "2.0.0"
llm-client = "0.8.37"
llm-client = "0.8.38"
okio = "3.10.2"
tree-sitter = "0.24.5"
grpc = "1.71.0"

View file

@ -179,6 +179,7 @@ public class ModelComboBoxAction extends ComboBoxAction {
var googleGroup = DefaultActionGroup.createPopupGroup(() -> "Google (Gemini)");
googleGroup.getTemplatePresentation().setIcon(Icons.Google);
List.of(
GoogleModel.GEMINI_2_5_PRO_EXP,
GoogleModel.GEMINI_2_0_PRO_EXP,
GoogleModel.GEMINI_2_0_FLASH_THINKING_EXP,
GoogleModel.GEMINI_2_0_FLASH,

View file

@ -28,6 +28,7 @@ class GoogleSettingsForm {
completionModelComboBox = ComboBox(
DefaultComboBoxModel(
arrayOf(
GoogleModel.GEMINI_2_5_PRO_EXP,
GoogleModel.GEMINI_2_0_PRO_EXP,
GoogleModel.GEMINI_2_0_FLASH_THINKING_EXP,
GoogleModel.GEMINI_2_0_FLASH,