branch: externals/llm
commit 8de12e9a9dee0f18b5d69838fbdfcd9baedcb5d6
Author: Andrew Hyatt <[email protected]>
Commit: GitHub <[email protected]>

    Add Gemini 3 Flash (#223)
---
 NEWS.org      | 2 ++
 llm-models.el | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/NEWS.org b/NEWS.org
index 98b7235982..d8e18eeb25 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,3 +1,5 @@
+* Version 0.28.3
+- Add Gemini 3 Flash
 * Version 0.28.2
 - Add Chat GPT post 5.0 series models, such as 5.1 and 5.2
 * Version 0.28.1
diff --git a/llm-models.el b/llm-models.el
index 39feaa0872..5c999f9b2e 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -235,6 +235,12 @@ REGEX is a regular expression that can be used to identify 
the model, uniquely (
                                pdf-input caching reasoning)
     :context-length 1048576
     :regex "gemini-3-pro")
+   (make-llm-model
+    :name "Gemini 3 Flash" :symbol 'gemini-3-flash
+    :capabilities '(generation tool-use image-input audio-input video-input 
json-response
+                               pdf-input caching reasoning)
+    :context-length 1048576
+    :regex "gemini-3-flash")
    (make-llm-model
     :name "Gemini 2.0 Pro" :symbol 'gemini-2.0-pro
     :capabilities '(generation tool-use image-input audio-input video-input)

Reply via email to