浏览代码

Adds new Voyage embedding models (#8845)

### What problem does this PR solve?
This PR enhances the application's capabilities by adding support for
four new Voyage embedding models (voyage-3-large, voyage-3.5,
voyage-3.5-lite, and voyage-code-3) to the `llm_factories.json`
configuration file. These models expand the available options for text
embedding tasks, enabling improved processing of text data with a
maximum token limit of 32,000. This addition addresses the need for more
diverse and specialized embedding models to support various use cases
without altering existing functionality.

### Type of change
- [x] New Feature (non-breaking change which adds functionality)
tags/v0.20.0
Tuan Le 3 个月前
父节点
当前提交
a9abf9df48
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24
    0
      conf/llm_factories.json

+ 24
- 0
conf/llm_factories.json 查看文件

"tags": "TEXT EMBEDDING, TEXT RE-RANK", "tags": "TEXT EMBEDDING, TEXT RE-RANK",
"status": "1", "status": "1",
"llm": [ "llm": [
{
"llm_name": "voyage-3-large",
"tags": "TEXT EMBEDDING,32000",
"max_tokens": 32000,
"model_type": "embedding"
},
{
"llm_name": "voyage-3.5",
"tags": "TEXT EMBEDDING,32000",
"max_tokens": 32000,
"model_type": "embedding"
},
{
"llm_name": "voyage-3.5-lite",
"tags": "TEXT EMBEDDING,32000",
"max_tokens": 32000,
"model_type": "embedding"
},
{
"llm_name": "voyage-code-3",
"tags": "TEXT EMBEDDING,32000",
"max_tokens": 32000,
"model_type": "embedding"
},
{ {
"llm_name": "voyage-multimodal-3", "llm_name": "voyage-multimodal-3",
"tags": "TEXT EMBEDDING,Chat,IMAGE2TEXT,32000", "tags": "TEXT EMBEDDING,Chat,IMAGE2TEXT,32000",

正在加载...
取消
保存