From 7e89be5ed19ceceb56f4e34a443467da822ff3b7 Mon Sep 17 00:00:00 2001 From: Yangong Date: Tue, 5 Nov 2024 13:58:29 +0800 Subject: [PATCH] feat: add qwen 2.5 models for silicon flow (#3203) ### What problem does this PR solve? add qwen 2.5 models for silicon flow ### Type of change - [X] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 68 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 61 insertions(+), 7 deletions(-) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index ae23ce4e9f4..d67e3bb8fda 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -2017,6 +2017,60 @@ "max_tokens": 32768, "model_type": "chat" }, + { + "llm_name": "Qwen/Qwen2.5-72B-Instruct-128K", + "tags": "LLM,CHAT,128k", + "max_tokens": 131072, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-72B-Instruct", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-7B-Instruct", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-14B-Instruct", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-32B-Instruct", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-Math-72B-Instruct", + "tags": "LLM,CHAT,Math,4k", + "max_tokens": 4096, + "model_type": "chat" + }, + { + "llm_name": "Qwen/Qwen2.5-Coder-7B-Instruct", + "tags": "LLM,CHAT,FIM,Coder,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Pro/Qwen/Qwen2.5-7B-Instruct", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat" + }, + { + "llm_name": "Pro/Qwen/Qwen2.5-Coder-7B-Instruct", + "tags": "LLM,CHAT,FIM,Coder,32k", + "max_tokens": 32768, + "model_type": "chat" + }, { "llm_name": "01-ai/Yi-1.5-34B-Chat-16K", "tags": "LLM,CHAT,16k", @@ -2376,11 +2430,11 @@ "llm": [] }, { - "name": "HuggingFace", - "logo": "", - "tags": "TEXT EMBEDDING", - "status": "1", - "llm": [] - } + "name": "HuggingFace", + "logo": "", + "tags": "TEXT EMBEDDING", + "status": "1", + "llm": [] + } ] -} +} \ No newline at end of file