提交 4876c8ea 编写于 作者: DCloud_JSON's avatar DCloud_JSON

1.1.4

上级 5edce570
## 1.1.4(2023-06-13)
- 更新 当内容长度超过800再执行总结
## 1.1.3(2023-06-12) ## 1.1.3(2023-06-12)
- 修复 流式响应模式 响应包含`insufficientScore`时客户端未显示广告位的问题 - 修复 流式响应模式 响应包含`insufficientScore`时客户端未显示广告位的问题
## 1.1.2(2023-06-12) ## 1.1.2(2023-06-12)
......
{ {
"id": "uni-ai-chat", "id": "uni-ai-chat",
"name": "uni-ai-chat", "name": "uni-ai-chat",
"version": "1.1.3", "version": "1.1.4",
"description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体", "description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
......
...@@ -228,7 +228,7 @@ module.exports = { ...@@ -228,7 +228,7 @@ module.exports = {
// 判断是否需要总结,如果需要就开始总结 // 判断是否需要总结,如果需要就开始总结
// 计算消息总长度,判断是否需要总结 // 计算消息总长度,判断是否需要总结
let needSummarize = messages.map(i => i.content).join('').length > 50, let needSummarize = messages.map(i => i.content).join('').length > 800,
// 总结的内容默认为 false 表示没有内容或者暂未拿到 // 总结的内容默认为 false 表示没有内容或者暂未拿到
summarizeData = false, summarizeData = false,
//成功拿到总结内容的回调函数列表 //成功拿到总结内容的回调函数列表
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册