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

    feat: change default openai_compatible model to `devstral-small-2505`.
    
    As `devstral-small-2505` is significantly cheaper and faster than
    `deepseek-v3-0324`, and provides comparable performance.
---
 README.md | 2 +-
 minuet.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 81b9f961cc..3ebe312ff1 100644
--- a/README.md
+++ b/README.md
@@ -596,7 +596,7 @@ The following config is the default.
 (defvar minuet-openai-compatible-options
     `(:end-point "https://openrouter.ai/api/v1/chat/completions";
       :api-key "OPENROUTER_API_KEY"
-      :model "qwen/qwen2.5-32b-instruct"
+      :model "mistralai/devstral-small-2505"
       :system
       (:template minuet-default-system-template
        :prompt minuet-default-prompt
diff --git a/minuet.el b/minuet.el
index 8e754c688d..9b548d2626 100644
--- a/minuet.el
+++ b/minuet.el
@@ -318,7 +318,7 @@ fib(5)")
 (defvar minuet-openai-compatible-options
   `(:end-point "https://openrouter.ai/api/v1/chat/completions";
     :api-key "OPENROUTER_API_KEY"
-    :model "deepseek/deepseek-chat-v3-0324"
+    :model "mistralai/devstral-small-2505"
     :system
     (:template minuet-default-system-template
      :prompt minuet-default-prompt

Reply via email to