|
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.auth0.jwt.interfaces.DecodedJWT;
|
|
|
import com.rf.AIquantum.base.rest.BaseController;
|
|
|
+import com.rf.AIquantum.dao.dto.SseResultDataDto;
|
|
|
import com.rf.AIquantum.dialogue.dao.model.ChatHistoryEntity;
|
|
|
import com.rf.AIquantum.dialogue.dao.model.DialogueEntity;
|
|
|
import com.rf.AIquantum.dialogue.service.ChatHistoryService;
|
|
@@ -89,19 +90,20 @@ public class DialogueController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (dialogueId == null || dialogueId.equals("")){
|
|
|
+ List<ChatHistoryEntity> chatHistoryEntities = chatHistoryService.findChatHistoryByDialogueIdAndStatus(dialogueId);
|
|
|
+ if (chatHistoryEntities.size() < 1 ){
|
|
|
if (content.length() > 50){
|
|
|
content = content.substring(0,50);
|
|
|
}
|
|
|
//新建对话
|
|
|
DialogueEntity dialogueEntity = new DialogueEntity();
|
|
|
+ dialogueEntity.setId(dialogueId);
|
|
|
dialogueEntity.setDialogueName(content);
|
|
|
dialogueEntity.setPhone(phone);
|
|
|
dialogueEntity.setStatus(1);
|
|
|
dialogueEntity.setCreateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
dialogueEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
- dialogueEntity = this.dialogueService.save(dialogueEntity);
|
|
|
- dialogueId = dialogueEntity.getId();
|
|
|
+ this.dialogueService.insert(dialogueEntity);
|
|
|
}
|
|
|
ChatHistoryEntity chatHistoryEntity = new ChatHistoryEntity();
|
|
|
chatHistoryEntity.setDialogueId(dialogueId);
|
|
@@ -114,7 +116,7 @@ public class DialogueController extends BaseController {
|
|
|
chatHistoryEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
this.chatHistoryService.save(chatHistoryEntity);
|
|
|
//调用模型相关操作
|
|
|
- /*List<ChatHistoryEntity> chatHistoryEntities = this.chatHistoryService.findChatHistoryByDialogueIdAndStatus(dialogueId);
|
|
|
+ /*chatHistoryEntities = this.chatHistoryService.findChatHistoryByDialogueIdAndStatus(dialogueId);
|
|
|
JSONArray messages = new JSONArray();
|
|
|
for (ChatHistoryEntity chatHistory : chatHistoryEntities) {
|
|
|
JSONArray contents = new JSONArray();
|
|
@@ -147,12 +149,30 @@ public class DialogueController extends BaseController {
|
|
|
}
|
|
|
content = jsonSystem.getString("response");*/
|
|
|
String sseContent = "";
|
|
|
- content = "";
|
|
|
- for (int i = 0; i < 10; i++) {
|
|
|
- sseContent = "消息"+i;
|
|
|
+ content = "<think>";
|
|
|
+ SseResultDataDto sseResultDataDto = new SseResultDataDto();
|
|
|
+ sseResultDataDto.setDialogueId(dialogueId);
|
|
|
+ String i0 = " 我是深度思考的内容,我是深度思考的内容,深度思考的内容 # 占位回复\n\n当前服务尚未部署实际的语言模型。\n\n## 您的选择\n- **模型**: `default`\n- **上传的图片数量**: 0\n\n## 示例 Markdown 样式\n- **加粗**: `**加粗文本**`\n- *斜体*: `*斜体文本*`\n- ~~删除线~~: `~~删除线文本~~`\n- [超链接](https://www.bing.com): `[超链接](URL)`\n- 图片:\n\n\n\n## 列表示例\n1. 第一项\n2. 第二项\n - 子项 1\n - 子项 2\n\n> 引用示例:这是一个引用块。\n\n```python\n# 代码块示例\ndef hello():\n print('Hello, World!')\n```\n\n- 行内公式: `$E = mc^2$` 显示为 $E = mc^2$\n- 块级公式:\n\n$$\n\\int_a^b f(x) \\ dx = F(b) - F(a)\n$$\n\n上述公式显示为:\n\n$$\n\\int_a^b f(x) \\ dx = F(b) - F(a)\n$$\n`";
|
|
|
+ String[] i1= i0.split("");
|
|
|
+ boolean think = true;
|
|
|
+ for (int i = 0; i < i1.length; i++) {
|
|
|
+ sseContent = i1[i];
|
|
|
+ if (think) {
|
|
|
+ if (i == 15) {
|
|
|
+ content = content + "</think>";
|
|
|
+ think = false;
|
|
|
+ sseResultDataDto.setType("text");
|
|
|
+ }else {
|
|
|
+ sseResultDataDto.setType("think");
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ sseResultDataDto.setType("text");
|
|
|
+ }
|
|
|
+ sseResultDataDto.setContent(sseContent);
|
|
|
+
|
|
|
content = content + sseContent;
|
|
|
- sseEmitterService.sendMessage(dialogueId,sseContent);
|
|
|
- Thread.sleep(1000);
|
|
|
+ sseEmitterService.sendMessage(dialogueId, sseResultDataDto);
|
|
|
+ Thread.sleep(100);
|
|
|
}
|
|
|
chatHistoryEntity = new ChatHistoryEntity();
|
|
|
chatHistoryEntity.setDialogueId(dialogueId);
|
|
@@ -245,6 +265,7 @@ public class DialogueController extends BaseController {
|
|
|
response = httpclient.execute(httpPost);
|
|
|
if (response.getStatusLine().getStatusCode() == 200){
|
|
|
responseData = EntityUtils.toString(response.getEntity());
|
|
|
+ System.out.println("22:"+responseData);
|
|
|
}
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|