emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/llm 5e13a609ba 2/2: Add llama-3.3 and QwQ models (#122)


From: ELPA Syncer
Subject: [elpa] externals/llm 5e13a609ba 2/2: Add llama-3.3 and QwQ models (#122)
Date: Fri, 13 Dec 2024 03:59:01 -0500 (EST)

branch: externals/llm
commit 5e13a609baea25daef6eb08c78dc1225e6884741
Author: Andrew Hyatt <ahyatt@gmail.com>
Commit: GitHub <noreply@github.com>

    Add llama-3.3 and QwQ models (#122)
---
 NEWS.org      |  2 ++
 llm-models.el | 10 ++++++++++
 2 files changed, 12 insertions(+)

diff --git a/NEWS.org b/NEWS.org
index 0d417ae62a..b026b7e5a3 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,3 +1,5 @@
+* Version 0.19.2
+- Add Gemini 2.0 Flash and Llama 3.3 and QwQ models.
 * Version 0.19.1
 - Fix Open AI context length sizes, which are mostly smaller than advertised.
 * Version 0.19.0
diff --git a/llm-models.el b/llm-models.el
index c0c7e3a92a..b03dd8b246 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -169,6 +169,16 @@ REGEX is a regular expression that can be used to identify 
the model, uniquely (
     :capabilities '(generation tool-use)
     :context-length 128000
     :regex "llama-?3\\.2")
+   (make-llm-model
+    :name "Llama 3.3" :symbol 'llama-3.3
+    :capabilities '(generation tool-use)
+    :context-length 128000
+    :regex "llama-?3\\.3")
+   (make-llm-model
+    :name "qwq" :symbol 'qwq
+    :capabilities '(generation tool-use)
+    :context-length 32768
+    :regex "qwq")
    (make-llm-model
     :name "Gemma 2" :symbol 'gemma-2
     :capabilities '(generation free-software)  ;; Apache license



reply via email to

[Prev in Thread] Current Thread [Next in Thread]