33 lines
528 B
TypeScript
33 lines
528 B
TypeScript
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,
|
|
]
|