| 12345678910 |
- import { FlowType } from '@/types/common'
-
- export const flowPrefixMap = {
- [FlowType.appFlow]: 'apps',
- [FlowType.ragPipeline]: 'rag/pipelines',
- }
-
- export const getFlowPrefix = (type?: FlowType) => {
- return flowPrefixMap[type!] || flowPrefixMap[FlowType.appFlow]
- }
|