branch: externals/llm
commit 0e5d4dee6e48a86a700ccc8cb202a4fc0703ff93
Author: Andrew Hyatt <[email protected]>
Commit: GitHub <[email protected]>
Add Claude Sonnet 4.6 (#256)
---
NEWS.org | 2 ++
llm-models.el | 5 +++++
2 files changed, 7 insertions(+)
diff --git a/NEWS.org b/NEWS.org
index 1a92f0be99..4a3a6880a1 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,3 +1,5 @@
+* Version 0.30.1
+- Add Claude Sonnet 4.6
* Version 0.30.0
- Add =:input-tokens= and =:output-tokens= to multioutput result.
- Added Qwen 3.5, LFM2 and LFM 2.5 Thinking
diff --git a/llm-models.el b/llm-models.el
index 49e5a2dbd7..2c378e15cc 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -171,6 +171,11 @@ REGEX is a regular expression that can be used to identify
the model, uniquely (
:capabilities '(generation tool-use image-input pdf-input caching
json-response)
:context-length 200000
:regex "claude-opus-4-6")
+ (make-llm-model
+ :name "Claude 4.6 Sonnet" :symbol 'claude-4-6-sonnet
+ :capabilities '(generation tool-use image-input pdf-input caching
json-response)
+ :context-length 200000
+ :regex "claude-sonnet-4-6")
(make-llm-model
:name "Claude 4.1 Opus" :symbol 'claude-4-1-opus
:capabilities '(generation tool-use image-input pdf-input caching
json-response)