[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/llm 14af3e3aae 2/2: Add Gemini 2.5 Pro model support (#
From: |
ELPA Syncer |
Subject: |
[elpa] externals/llm 14af3e3aae 2/2: Add Gemini 2.5 Pro model support (#179) |
Date: |
Wed, 26 Mar 2025 21:58:58 -0400 (EDT) |
branch: externals/llm
commit 14af3e3aae33e8c9320f296bcadfa7ee22517e78
Author: Andrew Hyatt <ahyatt@gmail.com>
Commit: GitHub <noreply@github.com>
Add Gemini 2.5 Pro model support (#179)
---
NEWS.org | 1 +
llm-models.el | 5 +++++
2 files changed, 6 insertions(+)
diff --git a/NEWS.org b/NEWS.org
index 33c0cbda90..5412ce31f7 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,6 +1,7 @@
* Version 0.24.2
- Fix issue with some Open AI compatible providers needing models to be passed
by giving a non-nil default.
* Version 0.24.1
+- Add Gemini 2.5 Pro
- Fix issue with Ollama incorrect requests when passing non-standard params.
- Fix issue with JSON return specs which pass booleans
* Version 0.24.0
diff --git a/llm-models.el b/llm-models.el
index 8015dbac54..dbedeced80 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -142,6 +142,11 @@ REGEX is a regular expression that can be used to identify
the model, uniquely (
:capabilities '(generation)
:context-length 32768
:regex "gemini-2\\.0-flash-thinking")
+ (make-llm-model
+ :name "Gemini 2.5 Pro" :symbol 'gemini-2.5-pro
+ :capabilities '(generation tool-use image-input audio-input video-input)
+ :context-length 1048576
+ :regex "gemini-2\\.5-pro")
(make-llm-model
:name "Gemini 2.0 Pro" :symbol 'gemini-2.0-pro
:capabilities '(generation tool-use image-input audio-input video-input)