branch: externals/llm commit 286b1cf18eb358ac9c208a709a625f3ee19ae451 Author: Andrew Hyatt <ahy...@gmail.com> Commit: GitHub <nore...@github.com>
Add o3 mini model (#157) --- NEWS.org | 1 + llm-models.el | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/NEWS.org b/NEWS.org index b4668d0fa7..75a4cfa89f 100644 --- a/NEWS.org +++ b/NEWS.org @@ -1,5 +1,6 @@ * Version 0.23.1 - Add Gemini 2.0 pro experimental model, default to 2.0 flash +- Add Open AI's o3 mini model * Version 0.23.0 - Add GitHub's GitHub Models - Accept lists as nonstandard diff --git a/llm-models.el b/llm-models.el index 72b2c7b275..e766dc715a 100644 --- a/llm-models.el +++ b/llm-models.el @@ -75,6 +75,11 @@ REGEX is a regular expression that can be used to identify the model, uniquely ( :capabilities '(generation) :context-length 30000 :regex "o1-mini") + (make-llm-model + :name "o3 Mini" :symbol 'o3-mini + :capabilities '(generation) + :context-length 30000 + :regex "o3-mini") (make-llm-model :name "GPT-4 Turbo" :symbol 'gpt-4-turbo :capabilities '(generation tool-use image-input)