nomic-embed-text:v2: model implementation (#13162)

This commit is contained in:
nicole pardal
2025-12-09 14:24:51 -08:00
committed by GitHub
parent 2bccf8c624
commit 76f88caf43
3 changed files with 304 additions and 18 deletions

View File

@@ -202,6 +202,8 @@ func ConvertModel(fsys fs.FS, f *os.File) error {
conv = &qwen3VLModel{}
case "BertModel":
conv = &bertModel{}
case "NomicBertModel", "NomicBertMoEModel":
conv = &nomicbertModel{}
case "CohereForCausalLM":
conv = &commandrModel{}
case "GptOssForCausalLM":