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

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

[elpa] externals/llm 0cea38595a: Add BGE-M3 multilingual embedding model


From: ELPA Syncer
Subject: [elpa] externals/llm 0cea38595a: Add BGE-M3 multilingual embedding model (#109)
Date: Sat, 23 Nov 2024 15:58:09 -0500 (EST)

branch: externals/llm
commit 0cea38595a4569471c07080ab53067fd66aa9f4d
Author: Sergey Kostyaev <s-kostyaev@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    Add BGE-M3 multilingual embedding model (#109)
    
    Add https://ollama.com/library/bge-m3/blobs/daec91ffb5dd model to model
    list to provide correct assumptions about model capabilities.
---
 llm-models.el | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/llm-models.el b/llm-models.el
index 6ac4c02860..44307b798f 100644
--- a/llm-models.el
+++ b/llm-models.el
@@ -206,7 +206,12 @@ REGEX is a regular expression that can be used to identify 
the model, uniquely (
     :name "Nemotron Mini" :symbol 'nemotron-mini
     :capabilities '(generation tool-use)
     :context-length 4096
-    :regex "nemotron-mini")))
+    :regex "nemotron-mini")
+   (make-llm-model
+    :name "BGE-M3" :symbol 'bge-m3
+    :capabilities '(embedding free-software)  ;; MIT license
+    :context-length 8192
+    :regex "bge-m3")))
 
 (defun llm-models-by-symbol (symbol)
   "Return the model with SYMBOL."



reply via email to

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