branch: externals/minuet commit 78175bf60b4536ef1d64a0c7405fb575d4ef8f66 Author: Milan Glacier <d...@milanglacier.com> Commit: Milan Glacier <d...@milanglacier.com>
feat!: change default openai_compatible service to openrouter. Also change the default model used by `openai_compatible` to `qwen2.5-32b-instruct`. --- README.md | 6 +++--- minuet.el | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3180051fe5..9eaa1b95cc 100644 --- a/README.md +++ b/README.md @@ -524,9 +524,9 @@ The following config is the default. ```lisp (defvar minuet-openai-compatible-options - `(:end-point "https://api.groq.com/openai/v1/chat/completions" - :api-key "GROQ_API_KEY" - :model "llama-3.3-70b-versatile" + `(:end-point "https://openrouter.ai/api/v1/chat/completions" + :api-key "OPENROUTER_API_KEY" + :model "qwen/qwen2.5-32b-instruct" :system (:template minuet-default-system-template :prompt minuet-default-prompt diff --git a/minuet.el b/minuet.el index 0f8250fd27..556302895b 100644 --- a/minuet.el +++ b/minuet.el @@ -302,9 +302,9 @@ fib(5)") "Config options for Minuet Codestral provider.") (defvar minuet-openai-compatible-options - `(:end-point "https://api.groq.com/openai/v1/chat/completions" - :api-key "GROQ_API_KEY" - :model "llama-3.3-70b-versatile" + `(:end-point "https://openrouter.ai/api/v1/chat/completions" + :api-key "OPENROUTER_API_KEY" + :model "qwen/qwen2.5-32b-instruct" :system (:template minuet-default-system-template :prompt minuet-default-prompt