From ab94f655e2332bbe297fbee31c630fafce45745d Mon Sep 17 00:00:00 2001 From: loveTsong <271667068@qq.com> Date: Mon, 9 Feb 2026 15:23:04 +0800 Subject: [PATCH] [frontend] remove unused plugin categories --- frontend/src/pages/plugin/helper.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frontend/src/pages/plugin/helper.tsx b/frontend/src/pages/plugin/helper.tsx index 18caf41bdb..4e07e0d569 100644 --- a/frontend/src/pages/plugin/helper.tsx +++ b/frontend/src/pages/plugin/helper.tsx @@ -34,9 +34,6 @@ export const IconMap = { export const sourceTabs = [ { key: 'APP', label: i18n.t('all') }, { key: 'HTTP', label: 'Http' }, - { key: 'HUGGINGFACE', label: 'HuggingFace' }, - { key: 'LANGCHAIN', label: 'LangChain' }, - { key: 'LLAMAINDEX', label: 'LlamaIndex' }, { key: 'WATERFLOW', label: i18n.t('workflow') }, { key: 'MINE', label: i18n.t('mine') }, ]; @@ -64,12 +61,10 @@ export const minePluginCategories = [ { key: 'APP', label: i18n.t('all') }, { key: 'TOOL', label: i18n.t('tool') }, { key: 'HTTP', label: 'Http' }, - { key: 'LANGCHAIN', label: 'LangChain' }, - { key: 'LLAMAINDEX', label: 'LlamaIndex' }, { key: 'WORKFLOW', label: i18n.t('workFlow') }, ]; -export const generalPluginCategories = ['APP', 'TOOL', 'HTTP', 'HUGGINGFACE', 'LLAMAINDEX', 'LANGCHAIN']; +export const generalPluginCategories = ['APP', 'TOOL', 'HTTP']; export const chatbotPluginCategories = ['CHATBOT', 'AGENT', 'WORKFLOW'];