From a313b77cdd31aaead91aa262932ced04ec80b1b6 Mon Sep 17 00:00:00 2001 From: Kevin Hu Date: Fri, 9 Aug 2024 18:41:44 +0800 Subject: [PATCH] rm qwen-v1-max (#1894) ### What problem does this PR solve? #1748 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- api/db/init_data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/db/init_data.py b/api/db/init_data.py index d838966b..cc337cce 100644 --- a/api/db/init_data.py +++ b/api/db/init_data.py @@ -116,6 +116,7 @@ def init_llm_factory(): LLMFactoriesService.filter_delete([LLMFactories.name == "Local"]) LLMService.filter_delete([LLM.fid == "Local"]) + LLMService.filter_delete([LLM.llm_name == "qwen-vl-max"]) LLMService.filter_delete([LLM.fid == "Moonshot", LLM.llm_name == "flag-embedding"]) TenantLLMService.filter_delete([TenantLLM.llm_factory == "Moonshot", TenantLLM.llm_name == "flag-embedding"]) LLMFactoriesService.filter_delete([LLMFactoriesService.model.name == "QAnything"])