1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
| import type { RouteRecordRaw } from 'vue-router';
|
| const routes: RouteRecordRaw[] = [
| {
| path: '/ai',
| name: 'Ai',
| meta: {
| title: 'Ai',
| hideInMenu: true,
| },
| children: [
| {
| path: 'image/square',
| component: () => import('#/views/ai/image/square/index.vue'),
| name: 'AiImageSquare',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '绘图作品',
| activePath: '/ai/image',
| },
| },
| {
| path: 'knowledge/document',
| component: () => import('#/views/ai/knowledge/document/index.vue'),
| name: 'AiKnowledgeDocument',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '知识库文档',
| activePath: '/ai/knowledge',
| },
| },
| {
| path: 'knowledge/document/create',
| component: () => import('#/views/ai/knowledge/document/form/index.vue'),
| name: 'AiKnowledgeDocumentCreate',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '创建文档',
| activePath: '/ai/knowledge',
| },
| },
| {
| path: 'knowledge/document/update',
| component: () => import('#/views/ai/knowledge/document/form/index.vue'),
| name: 'AiKnowledgeDocumentUpdate',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '修改文档',
| activePath: '/ai/knowledge',
| },
| },
| {
| path: 'knowledge/retrieval',
| component: () =>
| import('#/views/ai/knowledge/knowledge/retrieval/index.vue'),
| name: 'AiKnowledgeRetrieval',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '文档召回测试',
| activePath: '/ai/knowledge',
| },
| },
| {
| path: 'knowledge/segment',
| component: () => import('#/views/ai/knowledge/segment/index.vue'),
| name: 'AiKnowledgeSegment',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '知识库分段',
| activePath: '/ai/knowledge',
| },
| },
| {
| path: String.raw`workflow/create/:id(\d+)/:type(update|create)`,
| component: () => import('#/views/ai/workflow/form/index.vue'),
| name: 'AiWorkflowCreate',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '设计 AI 工作流',
| activePath: '/ai/workflow',
| },
| },
| {
| path: 'console/workflow/:type/:id',
| component: () => import('#/views/ai/workflow/form/index.vue'),
| name: 'AiWorkflowUpdate',
| meta: {
| noCache: true,
| hidden: true,
| canTo: true,
| title: '设计 AI 工作流',
| activePath: '/ai/workflow',
| },
| },
| ],
| },
| ];
|
| export default routes;
|
|