Files
urbanLifeline/dify/web/app/components/plugins/constants.ts

33 lines
528 B
TypeScript
Raw Normal View History

2025-12-01 17:21:38 +08:00
import { PluginCategoryEnum } from './types'
export const tagKeys = [
'agent',
'rag',
'search',
'image',
'videos',
'weather',
'finance',
'design',
'travel',
'social',
'news',
'medical',
'productivity',
'education',
'business',
'entertainment',
'utilities',
'other',
]
export const categoryKeys = [
PluginCategoryEnum.model,
PluginCategoryEnum.tool,
PluginCategoryEnum.datasource,
PluginCategoryEnum.agent,
PluginCategoryEnum.extension,
'bundle',
PluginCategoryEnum.trigger,
]