提交 82008ce5 编写于 作者: DCloud_JSON's avatar DCloud_JSON

1.2.9

上级 a5b93508
## 1.2.9(2023-07-10)
- 修复 因某次更新引起的:非流式响应模式下,未自动过滤历史消息中的涉敏内容,导致因上文涉敏而造成后续对话都涉敏的问题 [相关问题](https://ask.dcloud.net.cn/question/173701?notification_id-1286470__rf-false__item_id-246057#!answer_246057)
## 1.2.8(2023-07-07)
- 优化 部分图标样式在,不同平台下,大小不一致的问题
## 1.2.7(2023-07-03)
......
{
"id": "uni-ai-chat",
"name": "uni-ai-chat",
"version": "1.2.8",
"version": "1.2.9",
"description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体",
"main": "main.js",
"scripts": {
......
......@@ -707,6 +707,15 @@
}
// 特殊处理 - end
// 非流式模式 && 内容涉及敏感
if (this.enableStream == false && illegal) {
console.error('内容涉及敏感');
this.updateLastMsg({
// 添加消息涉敏标记
illegal: true
})
}
// 非流式模式 或者流式模式,但列表还没有数据且已经进入异常的情况下
if (this.enableStream == false || this.sseIndex == 0 && (illegal||insufficientScore)) {
// 将从云端接收到的消息添加到消息列表中
......@@ -747,13 +756,7 @@
this.msgList.splice(index, 1, msg)
// console.log('setSummarize this.msgList',this.msgList,this.msgList.length-1,index);
}
if (illegal) {
console.error('内容涉及敏感');
this.updateLastMsg({
// 添加消息涉敏标记
illegal: true
})
}
},
complete:e=>{
if (this.enableStream) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册