|
@@ -1,6 +1,7 @@
|
|
|
package com.rf.AIquantum.dialogue.rest;
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.auth0.jwt.interfaces.DecodedJWT;
|
|
|
import com.rf.AIquantum.base.rest.BaseController;
|
|
@@ -21,10 +22,13 @@ import org.springframework.util.DigestUtils;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
+import static com.rf.AIquantum.dialogue.rest.DialogueController.HttpClientChat;
|
|
|
+
|
|
|
/**
|
|
|
* @Description: 聊天记录相关接口
|
|
|
* @Author: zsy
|
|
@@ -40,9 +44,70 @@ public class ChatHistoryController extends BaseController {
|
|
|
|
|
|
@GetMapping("/findChats")
|
|
|
@ApiOperation(value = "查询聊天记录",notes = "参数包括:pageNum:页码, pageSize:数量, dialogueId:对话id")
|
|
|
- public Result findDialogues(@RequestParam int pageNum, @RequestParam int pageSize, @RequestParam String dialogueId){
|
|
|
+ public Result findChatHistorys(@RequestParam int pageNum, @RequestParam int pageSize, @RequestParam String dialogueId){
|
|
|
Page<ChatHistoryEntity> chatHistoryEntities = chatHistoryService.findByDialogueIdAndStatus(pageNum,pageSize,dialogueId,1);
|
|
|
return success(chatHistoryEntities);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/updateChatHistory")
|
|
|
+ @ApiOperation(value = "修改聊天记录信息(点赞、点踩)",notes = "ChatHistory对象,点赞时只需将endorse的值改为2;点赞时只需将endorse的值改为3,如果有反馈意见放到feedback字段;endorse:1:未评价(默认);2:赞同;3:不赞同")
|
|
|
+ public Result updateChatHistory(@RequestBody String json) {
|
|
|
+ ChatHistoryEntity chatHistoryEntity = JSONObject.parseObject(json,ChatHistoryEntity.class);
|
|
|
+ chatHistoryEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
+ this.chatHistoryService.save(chatHistoryEntity);
|
|
|
+ return success("修改成功");
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/refresh")
|
|
|
+ @ApiOperation(value = "刷新某条回答",notes = "ChatHistory对象")
|
|
|
+ public Result refresh(@RequestBody String json) throws UnsupportedEncodingException {
|
|
|
+ ChatHistoryEntity chatHistoryEntity = JSONObject.parseObject(json,ChatHistoryEntity.class);
|
|
|
+ String dialogueId = chatHistoryEntity.getDialogueId();
|
|
|
+ String createTime = chatHistoryEntity.getCreateTime();
|
|
|
+ this.chatHistoryService.deleteByDialogueIdAndCreateTime(dialogueId,createTime);
|
|
|
+ //调用模型相关操作
|
|
|
+ List<ChatHistoryEntity> chatHistoryEntities = this.chatHistoryService.findChatHistoryByDialogueIdAndStatus(dialogueId);
|
|
|
+ JSONArray messages = new JSONArray();
|
|
|
+ for (ChatHistoryEntity chatHistory : chatHistoryEntities) {
|
|
|
+ JSONArray contents = new JSONArray();
|
|
|
+ JSONObject jsonText = new JSONObject();
|
|
|
+ jsonText.put("type","text");
|
|
|
+ jsonText.put("text",chatHistory.getContent());
|
|
|
+ if (chatHistory.getImage() != null && !chatHistory.getImage().equals("")) {
|
|
|
+ JSONObject jsonImage = new JSONObject();
|
|
|
+ jsonImage.put("type","image_url");
|
|
|
+ JSONObject jsonUrl = new JSONObject();
|
|
|
+ jsonUrl.put("url",chatHistory.getImage());
|
|
|
+ jsonImage.put("image_url",jsonUrl);
|
|
|
+ contents.add(jsonImage);
|
|
|
+ }
|
|
|
+ contents.add(jsonText);
|
|
|
+ JSONObject jsonRole = new JSONObject();
|
|
|
+ jsonRole.put("role",chatHistory.getRole());
|
|
|
+ jsonRole.put("content",contents);
|
|
|
+ messages.add(jsonRole);
|
|
|
+ }
|
|
|
+ JSONObject jsonChat = new JSONObject();
|
|
|
+ jsonChat.put("messages",messages);
|
|
|
+
|
|
|
+ String url = Constant.INVOKE_IP_PROT + Constant.CHAT_PATH;
|
|
|
+ String data = HttpClientChat(jsonChat,url);
|
|
|
+ JSONObject jsonSystem = JSONObject.parseObject(data);
|
|
|
+ if (jsonSystem == null || !jsonSystem.containsKey("response")) {
|
|
|
+ return fail("", "模型服务内部错误");
|
|
|
+ }
|
|
|
+ String content = jsonSystem.getString("response");
|
|
|
+ chatHistoryEntity = new ChatHistoryEntity();
|
|
|
+ chatHistoryEntity.setDialogueId(dialogueId);
|
|
|
+ chatHistoryEntity.setRole("system");
|
|
|
+ chatHistoryEntity.setContent(content);
|
|
|
+ chatHistoryEntity.setStatus(1);
|
|
|
+ chatHistoryEntity.setEndorse(1);
|
|
|
+ chatHistoryEntity.setCreateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
+ chatHistoryEntity.setUpdateTime(DateUtil.format(new Date(), "yyyy-MM-dd HH:mm:ss.SSS"));
|
|
|
+ chatHistoryEntity = this.chatHistoryService.save(chatHistoryEntity);
|
|
|
+
|
|
|
+ return success(chatHistoryEntity);
|
|
|
+ }
|
|
|
+
|
|
|
}
|