|
|
|
@@ -86,17 +86,7 @@ export default [ |
|
|
|
{ |
|
|
|
name: '数据准备', |
|
|
|
path: '/datasetPreparation', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
path: '', |
|
|
|
redirect: '/datasetPreparation/datasetAnnotation', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '数据标注', |
|
|
|
path: 'datasetAnnotation', |
|
|
|
component: './DatasetPreparation/DatasetAnnotation/index', |
|
|
|
}, |
|
|
|
], |
|
|
|
component: './DatasetPreparation/DatasetAnnotation/index', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '开发环境', |
|
|
|
@@ -452,13 +442,53 @@ export default [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '应用开发', |
|
|
|
path: '/appsDeployment', |
|
|
|
path: '/apps', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
name: '应用开发', |
|
|
|
name: '模型部署', |
|
|
|
path: '', |
|
|
|
key: 'appsDeployment', |
|
|
|
component: './Application', |
|
|
|
component: './ModelDeployment/List', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '创建推理服务', |
|
|
|
path: 'createService', |
|
|
|
component: './ModelDeployment/CreateService', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '编辑推理服务', |
|
|
|
path: 'editService/:serviceId', |
|
|
|
component: './ModelDeployment/CreateService', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '服务详情', |
|
|
|
path: 'serviceInfo/:serviceId', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
name: '服务详情', |
|
|
|
path: '', |
|
|
|
component: './ModelDeployment/ServiceInfo', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '新增服务版本', |
|
|
|
path: 'createVersion', |
|
|
|
component: './ModelDeployment/CreateVersion', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '更新服务版本', |
|
|
|
path: 'updateVersion', |
|
|
|
component: './ModelDeployment/CreateVersion', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '重启服务版本', |
|
|
|
path: 'restartVersion', |
|
|
|
component: './ModelDeployment/CreateVersion', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '服务版本详情', |
|
|
|
path: 'versionInfo/:id', |
|
|
|
component: './ModelDeployment/VersionInfo', |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
@@ -619,6 +649,48 @@ export default [ |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'agent', |
|
|
|
path: '/agent', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
name: '智能体', |
|
|
|
path: '', |
|
|
|
key: 'agent', |
|
|
|
redirect: '/agent/mine', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '发布管理', |
|
|
|
path: 'publish', |
|
|
|
key: 'publish', |
|
|
|
component: './Agent/Publish', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '模型管理', |
|
|
|
path: 'model', |
|
|
|
key: 'model', |
|
|
|
component: './Agent/Model', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '我的智能体', |
|
|
|
path: 'mine', |
|
|
|
key: 'mine', |
|
|
|
component: './Agent/Mine', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '资源管理', |
|
|
|
path: 'resource', |
|
|
|
key: 'resource', |
|
|
|
component: './Agent/Resource', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '插件市场', |
|
|
|
path: 'plugin', |
|
|
|
key: 'plugin', |
|
|
|
component: './Agent/Plugin', |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'mixed', |
|
|
|
path: '/mixed', |
|
|
|
|