|
@@ -118,6 +118,7 @@ export default {
|
|
|
loading: false,
|
|
|
chatLoading:false,
|
|
|
userId:this.$route.query['userid'],
|
|
|
+ cid: this.$route.query.cid,
|
|
|
chatList: [],
|
|
|
textValue: "",
|
|
|
};
|
|
@@ -269,7 +270,7 @@ export default {
|
|
|
alltext: _data.aiContent,
|
|
|
type: "chat",
|
|
|
filename: _data.filename,
|
|
|
- session_name: `${this.userId}-pblCourse`,
|
|
|
+ session_name: `${this.userId}-${this.cid}-pblCourse`,
|
|
|
};
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/insert_chat", params)
|
|
@@ -287,7 +288,7 @@ export default {
|
|
|
userid: this.userId,
|
|
|
groupid: "602def61-005d-11ee-91d8-005056b8q12w",
|
|
|
// session_name:``
|
|
|
- session_name: `${this.userId}-pblCourse`,
|
|
|
+ session_name: `${this.userId}-${this.cid}-pblCourse`,
|
|
|
};
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/get_agent_park_chat", params)
|