mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-20 01:02:02 +00:00
feat: add gemini 2.5 pro (exp) model (closes #959)
This commit is contained in:
parent
a8d5ca7ce7
commit
a293c9d5bc
3 changed files with 3 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue