From 1b3b0e14d6e0f37220d77f08b6eaec3b6f169196 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Wed, 26 Mar 2025 20:46:34 +0900 Subject: [PATCH] Add gemini 2.5 exp --- src/ts/model/modellist.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ts/model/modellist.ts b/src/ts/model/modellist.ts index 8551e266..d4054a42 100644 --- a/src/ts/model/modellist.ts +++ b/src/ts/model/modellist.ts @@ -974,6 +974,15 @@ export const LLMModels: LLMModel[] = [ parameters: ['temperature', 'top_k', 'top_p', 'presence_penalty', 'frequency_penalty'], tokenizer: LLMTokenizer.GoogleCloud, }, + { + name: "Gemini Pro 2.5 Exp", + id: 'gemini-2.5-pro-exp', + provider: LLMProvider.GoogleCloud, + format: LLMFormat.GoogleCloud, + flags: [LLMFlags.geminiBlockOff,LLMFlags.hasImageInput, LLMFlags.hasImageOutput, LLMFlags.poolSupported, LLMFlags.hasAudioInput, LLMFlags.hasVideoInput, LLMFlags.hasStreaming, LLMFlags.requiresAlternateRole], + parameters: ['temperature', 'top_k', 'top_p', 'presence_penalty', 'frequency_penalty'], + tokenizer: LLMTokenizer.GoogleCloud, + }, { name: "Gemini Flash 2.0 Thinking 1219", id: 'gemini-2.0-flash-thinking-exp-1219',