branch: externals/llm
commit 4c0fb61e9e54a3bfbedb39a97a5a86df2edc0445
Author: Andrew Hyatt <[email protected]>
Commit: GitHub <[email protected]>
Added Kimi K3 model (#295)
---
NEWS.org | 2 ++
llm-models.el | 5 +++++
2 files changed, 7 insertions(+)
diff --git a/NEWS.org b/NEWS.org
index ececd8a8ab4..e954d0b6928 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,3 +1,5 @@
+* Version 0.31.3
+- Added Kimi K3.
* Version 0.31.2
- Fixed Deepseek streaming tool calling, by [[https://github.com/isamert][İsa
Mert Gürbüz]].
* Version 0.31.1
diff --git a/llm-models.el b/llm-models.el
index 0f911ca013d..7b9a58aea20 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -517,6 +517,11 @@ REGEX is a regular expression that can be used to identify
the model, uniquely (
:capabilities '(generation free-software reasoning tool-use json-response)
;; Modified MIT license
:context-length 256000
:regex "kimi-k2\\.6")
+ (make-llm-model
+ :name "Kimi K3" :symbol 'kimi-k3
+ :capabilities '(generation free-software reasoning tool-use json-response)
;; Modified MIT license
+ :context-length 1000000
+ :regex "kimi-k3")
(make-llm-model
:name "StepFun 3.7 Flash" :symbol 'stepfun-3.7-flash
:capabilities '(generation reasoning tool-use json-response)