You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
711 B
25 lines
711 B
/**
|
|
* 文件作用:superAgent 超级智能体模块文件
|
|
* 职责范围:
|
|
* 1. 承载 superAgent 新入口下的聊天、任务与智能体广场能力
|
|
* 2. 在不影响 newAiChat 的前提下复用现有组件和接口
|
|
* 3. 支撑标书任务工作区的前端编排
|
|
*
|
|
* 不负责:
|
|
* - 修改 newAiChat 原有页面行为
|
|
* - 实现后端标书解析、正文生成或导出接口
|
|
*
|
|
* 维护说明:
|
|
* - 本目录来自 newAiChat 基础能力复制,后续改动应限定在 superAgent 模块内
|
|
*/
|
|
import SuperAgent from "./container";
|
|
|
|
export default {
|
|
type: "outer",
|
|
route: {
|
|
key: "superAgent",
|
|
path: "/aichat",
|
|
component: SuperAgent,
|
|
nav: false,
|
|
},
|
|
};
|
|
|