branch: externals/minuet
commit 64bf340be09fd666a501869eefb3f523a12fc5f6
Author: Milan Glacier <d...@milanglacier.com>
Commit: Milan Glacier <d...@milanglacier.com>

    chore: change openai provider's default model to gpt-4.1-mini.
---
 README.md | 6 +++---
 minuet.el | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 81eccce957..1e66b7ee59 100644
--- a/README.md
+++ b/README.md
@@ -370,8 +370,8 @@ You can customize the provider options using `plist-put`, 
for example:
 
 ```lisp
 (with-eval-after-load 'minuet
-    ;; change openai model to gpt-4o
-    (plist-put minuet-openai-options :model "gpt-4o")
+    ;; change openai model to gpt-4.1
+    (plist-put minuet-openai-options :model "gpt-4.1")
 
     ;; change openai-compatible provider to use fireworks
     (setq minuet-provider 'openai-compatible)
@@ -397,7 +397,7 @@ Below is the default value:
 
 ```lisp
 (defvar minuet-openai-options
-    `(:model "gpt-4o-mini"
+    `(:model "gpt-4.1-mini"
       :api-key "OPENAI_API_KEY"
       :system
       (:template minuet-default-system-template
diff --git a/minuet.el b/minuet.el
index 6c5c5b81f8..ac393c37b0 100644
--- a/minuet.el
+++ b/minuet.el
@@ -285,7 +285,7 @@ fib(5)")
   "Config options for Minuet Claude provider.")
 
 (defvar minuet-openai-options
-  `(:model "gpt-4o-mini"
+  `(:model "gpt-4.1-mini"
     :api-key "OPENAI_API_KEY"
     :system
     (:template minuet-default-system-template

Reply via email to