Skip to content

Commit

Permalink
Add BGE-M3 multilingual embedding model (#109)
Browse files Browse the repository at this point in the history
Add https://ollama.com/library/bge-m3/blobs/daec91ffb5dd model to model
list to provide correct assumptions about model capabilities.
  • Loading branch information
s-kostyaev authored Nov 23, 2024
1 parent 90c2451 commit 0cea385
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion llm-models.el
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 0cea385

Please sign in to comment.