|
@@ -235,7 +235,7 @@ export default defineComponent({
|
|
|
const historyMode = ref(false);
|
|
const historyMode = ref(false);
|
|
|
const dialogList = ref([]);
|
|
const dialogList = ref([]);
|
|
|
|
|
|
|
|
- const selectId = ref("");
|
|
|
|
|
|
|
+ const selectId = ref(""); // 当前选择的 agent_id 或者 历史记录的 ID
|
|
|
const real_agent_id = ref(""); // 实际的agent_id,此值仅在 点击侧边栏具体功能时更改,例如点击 知识问答、文档智能按钮时更改
|
|
const real_agent_id = ref(""); // 实际的agent_id,此值仅在 点击侧边栏具体功能时更改,例如点击 知识问答、文档智能按钮时更改
|
|
|
const agentIds = ref([]); // agent ID的列表
|
|
const agentIds = ref([]); // agent ID的列表
|
|
|
|
|
|
|
@@ -244,7 +244,8 @@ export default defineComponent({
|
|
|
const variables = ref([]);
|
|
const variables = ref([]);
|
|
|
const textValue = ref("");
|
|
const textValue = ref("");
|
|
|
const parseStatus = ref(false);
|
|
const parseStatus = ref(false);
|
|
|
- const maxLength = ref(6000);
|
|
|
|
|
|
|
+ const maxLength = ref(6000); // 允许输入的最大长度
|
|
|
|
|
+
|
|
|
let reportData = {};
|
|
let reportData = {};
|
|
|
let agents = {}
|
|
let agents = {}
|
|
|
|
|
|