From bd19656c8fcfe5243d86d89ae477e72b0cd7b054 Mon Sep 17 00:00:00 2001 From: Morler <478444+morler@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:39:44 +0800 Subject: [PATCH] Correct the incorrect description of the pre-installed models on the SILICONFLOW platform. (#1956) ### What problem does this PR solve? Removed extraneous spaces and corrected a misspelling of a model name. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- conf/llm_factories.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index 4d7ee1df8..0947dbe3c 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -3015,25 +3015,25 @@ "model_type": "chat" }, { - "llm_name": "BAAI/bge-m3 ", + "llm_name": "BAAI/bge-m3", "tags": "TEXT EMBEDDING,8K", "max_tokens": 8192, "model_type": "embedding" }, { - "llm_name": "BAAI/bge-large-en-v1.5 ", + "llm_name": "BAAI/bge-large-en-v1.5", "tags": "TEXT EMBEDDING,512", "max_tokens": 512, "model_type": "embedding" }, { - "llm_name": "BAAI/bge-large-zh-v1.5 ", + "llm_name": "BAAI/bge-large-zh-v1.5", "tags": "TEXT EMBEDDING,512", "max_tokens": 512, "model_type": "embedding" }, { - "llm_name": "netease-youdao/bce-embedding-base_vl", + "llm_name": "netease-youdao/bce-embedding-base_v1", "tags": "TEXT EMBEDDING,512", "max_tokens": 512, "model_type": "embedding" @@ -3113,6 +3113,6 @@ "model_type": "image2text" } ] - } + } ] }