From 5e30426916b45059645ebb04b5a3da1bc127933e Mon Sep 17 00:00:00 2001 From: Yongteng Lei Date: Wed, 11 Jun 2025 15:32:05 +0800 Subject: [PATCH] Feat: add Qwen3-Embedding text-embedding-v4 (#8184) ### What problem does this PR solve? Add Qwen3-Embedding text-embedding-v4. ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index f2ce7ada1..5e02696e6 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -360,6 +360,12 @@ "max_tokens": 8192, "model_type": "embedding" }, + { + "llm_name": "text-embedding-v4", + "tags": "TEXT EMBEDDING,8K", + "max_tokens": 8192, + "model_type": "embedding" + }, { "llm_name": "qwen-vl-max", "tags": "LLM,CHAT,IMAGE2TEXT",