branch: externals/llm
commit 3f68b8b8378bae53c07735c8b1d3fbc8e9e66b51
Author: Andrew Hyatt <[email protected]>
Commit: GitHub <[email protected]>
Add Qwen 3 Coder Next (#249)
---
NEWS.org | 2 +-
llm-models.el | 5 +++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/NEWS.org b/NEWS.org
index 548f651d11..c61cec088d 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -4,7 +4,7 @@
- Add Claude Opus 4.6
- Fix bug running two async calls in parallel
- Set Gemini default to 3.0 pro
-- Added Kimi k2.5 and GLM-5
+- Added Kimi k2.5, GLM-5, and Qwen 3 Coder Next
- Increased the default context length for unknown models to be more up to date
- Allow Ollama authed keys to be functions
* Version 0.28.5
diff --git a/llm-models.el b/llm-models.el
index 7436f1af7b..516775520c 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -368,6 +368,11 @@ REGEX is a regular expression that can be used to identify
the model, uniquely (
:capabilities '(generation tool-use) ;; Apache license for some
variations only
:context-length 128000
:regex "qwen-?2\\.5")
+ (make-llm-model
+ :name "Qwen 3 Coder Next" :symbol 'qwen-3-coder-next
+ :capabilities '(generation tool-use free-software) ;; Apache 2 license
+ :context-length 256000
+ :regex "qwen-?3-coder-next")
(make-llm-model
:name "Qwen 3" :symbol 'qwen-3
:capabilities '(generation tool-use) ;; Apache license for some
variations only