|
|
@ -1,6 +1,5 @@
|
|
|
|
package cn.teammodel.service.impl;
|
|
|
|
package cn.teammodel.service.impl;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.lang.UUID;
|
|
|
|
|
|
|
|
import cn.teammodel.ai.SparkGptClient;
|
|
|
|
import cn.teammodel.ai.SparkGptClient;
|
|
|
|
import cn.teammodel.ai.SseHelper;
|
|
|
|
import cn.teammodel.ai.SseHelper;
|
|
|
|
import cn.teammodel.ai.cache.HistoryCache;
|
|
|
|
import cn.teammodel.ai.cache.HistoryCache;
|
|
|
@ -9,15 +8,22 @@ import cn.teammodel.ai.listener.SparkGptStreamListener;
|
|
|
|
import cn.teammodel.common.ErrorCode;
|
|
|
|
import cn.teammodel.common.ErrorCode;
|
|
|
|
import cn.teammodel.common.PK;
|
|
|
|
import cn.teammodel.common.PK;
|
|
|
|
import cn.teammodel.config.exception.ServiceException;
|
|
|
|
import cn.teammodel.config.exception.ServiceException;
|
|
|
|
|
|
|
|
import cn.teammodel.model.dto.ai.*;
|
|
|
|
|
|
|
|
import cn.teammodel.model.dto.ai.comment.ChatCommentsDto;
|
|
|
|
|
|
|
|
import cn.teammodel.model.dto.ai.comment.WisdomCommentsDto;
|
|
|
|
|
|
|
|
import cn.teammodel.model.dto.ai.comment.WisdomExamCommentsDto;
|
|
|
|
|
|
|
|
import cn.teammodel.model.dto.ai.comment.WisdomSubjectComments;
|
|
|
|
import cn.teammodel.model.entity.ai.ChatApp;
|
|
|
|
import cn.teammodel.model.entity.ai.ChatApp;
|
|
|
|
import cn.teammodel.repository.ChatAppRepository;
|
|
|
|
import cn.teammodel.repository.ChatAppRepository;
|
|
|
|
import cn.teammodel.repository.ChatSessionRepository;
|
|
|
|
import cn.teammodel.repository.ChatSessionRepository;
|
|
|
|
import cn.teammodel.model.dto.ai.ChatCompletionReqDto;
|
|
|
|
|
|
|
|
import cn.teammodel.model.entity.User;
|
|
|
|
import cn.teammodel.model.entity.User;
|
|
|
|
import cn.teammodel.model.entity.ai.ChatSession;
|
|
|
|
import cn.teammodel.model.entity.ai.ChatSession;
|
|
|
|
import cn.teammodel.security.utils.SecurityUtil;
|
|
|
|
import cn.teammodel.security.utils.SecurityUtil;
|
|
|
|
import cn.teammodel.service.ChatMessageService;
|
|
|
|
import cn.teammodel.service.ChatMessageService;
|
|
|
|
|
|
|
|
import cn.teammodel.utils.FileUtil;
|
|
|
|
import cn.teammodel.utils.RepositoryUtil;
|
|
|
|
import cn.teammodel.utils.RepositoryUtil;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSON;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson2.TypeReference;
|
|
|
|
import com.azure.cosmos.models.CosmosPatchOperations;
|
|
|
|
import com.azure.cosmos.models.CosmosPatchOperations;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import org.apache.commons.lang3.ObjectUtils;
|
|
|
|
import org.apache.commons.lang3.ObjectUtils;
|
|
|
@ -26,10 +32,9 @@ import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;
|
|
|
|
import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
import java.time.Instant;
|
|
|
|
import java.time.Instant;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.Collections;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @author winter
|
|
|
|
* @author winter
|
|
|
@ -61,26 +66,39 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 评语调用 聊天模型
|
|
|
|
* 评语调用 聊天模型
|
|
|
|
* @param chatCompletionReqDto
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param chatCommentsDto
|
|
|
|
* @param userId
|
|
|
|
* @param userId
|
|
|
|
|
|
|
|
* @param userName
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public SseEmitter chatComments(ChatCompletionReqDto chatCompletionReqDto, String userId,String userName) {
|
|
|
|
public SseEmitter chatComments(ChatCommentsDto chatCommentsDto, String userId, String userName) {
|
|
|
|
// 目前仅使用讯飞星火大模型
|
|
|
|
// 目前仅使用讯飞星火大模型
|
|
|
|
String appId = chatCompletionReqDto.getAppId();
|
|
|
|
String appId = chatCommentsDto.getAppId();
|
|
|
|
|
|
|
|
String text = commentsTemplate(chatCommentsDto);
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(text)) {
|
|
|
|
|
|
|
|
chatCommentsDto.setText(text);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "参数错误");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SseEmitter sseEmitter;
|
|
|
|
SseEmitter sseEmitter;
|
|
|
|
if (StringUtils.isEmpty(appId)) {
|
|
|
|
if (StringUtils.isEmpty(appId)) {
|
|
|
|
sseEmitter = commentsBySession(chatCompletionReqDto, userId,userName);
|
|
|
|
sseEmitter = commentsBySession(chatCommentsDto, userId, userName);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
ChatCompletionReqDto chatCompletionReqDto = new ChatCompletionReqDto();
|
|
|
|
|
|
|
|
chatCompletionReqDto.setAppId(chatCommentsDto.getAppId());
|
|
|
|
|
|
|
|
chatCompletionReqDto.setSessionId(chatCommentsDto.getSessionId());
|
|
|
|
|
|
|
|
chatCompletionReqDto.setText(chatCommentsDto.getText());
|
|
|
|
sseEmitter = completionByApp(chatCompletionReqDto, false);
|
|
|
|
sseEmitter = completionByApp(chatCompletionReqDto, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sseEmitter;
|
|
|
|
return sseEmitter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 面具模式(暂时不存储聊天记录)
|
|
|
|
* 面具模式(暂时不存储聊天记录)
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private SseEmitter completionByApp(ChatCompletionReqDto chatCompletionReqDto, boolean justApi) {
|
|
|
|
private SseEmitter completionByApp(ChatCompletionReqDto chatCompletionReqDto, boolean justApi) {
|
|
|
|
String appId = chatCompletionReqDto.getAppId();
|
|
|
|
String appId = chatCompletionReqDto.getAppId();
|
|
|
|
String userPrompt = chatCompletionReqDto.getText();
|
|
|
|
String userPrompt = chatCompletionReqDto.getText();
|
|
|
@ -133,8 +151,8 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 会话模式
|
|
|
|
* 会话模式
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private SseEmitter completionBySession(ChatCompletionReqDto chatCompletionReqDto, String userId) {
|
|
|
|
private SseEmitter completionBySession(ChatCompletionReqDto chatCompletionReqDto, String userId) {
|
|
|
|
String userPrompt = chatCompletionReqDto.getText();
|
|
|
|
String userPrompt = chatCompletionReqDto.getText();
|
|
|
|
String sessionId = chatCompletionReqDto.getSessionId();
|
|
|
|
String sessionId = chatCompletionReqDto.getSessionId();
|
|
|
@ -182,18 +200,20 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 评语 会话模式
|
|
|
|
* 评语 会话模式
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private SseEmitter commentsBySession(ChatCompletionReqDto chatCompletionReqDto, String userId,String userName) {
|
|
|
|
private SseEmitter commentsBySession(ChatCommentsDto chatCommentsDto, String userId, String userName) {
|
|
|
|
String userPrompt = chatCompletionReqDto.getText();
|
|
|
|
String userPrompt = chatCommentsDto.getText();
|
|
|
|
String sessionId = chatCompletionReqDto.getSessionId();
|
|
|
|
Object data = chatCommentsDto.getData();
|
|
|
|
|
|
|
|
//获取会话id 看是否有sessionId 有则直接赋值 没有则赋值userId
|
|
|
|
|
|
|
|
String sessionId = chatCommentsDto.getSessionId();
|
|
|
|
ChatSession session = null;
|
|
|
|
ChatSession session = null;
|
|
|
|
List<ChatSession> sessions = chatSessionRepository.findCommentsById(userId);
|
|
|
|
List<ChatSession> sessions = chatSessionRepository.findCommentsById(sessionId);
|
|
|
|
if (sessions.size() == 0) {
|
|
|
|
if (sessions.size() == 0) {
|
|
|
|
// 初始化欢迎语
|
|
|
|
// 初始化欢迎语
|
|
|
|
ChatSession.Message message = ChatSession.Message.of("", "你好" + userName + " ,我是你的私人 AI 助手小豆,你可以问我任何包括但不仅限于教育的问题,我会尽力为您解答!");
|
|
|
|
ChatSession.Message message = ChatSession.Message.of("", "你好" + userName + " ,我是你的私人 AI 助手小豆," +
|
|
|
|
|
|
|
|
"你可以问我任何包括但不仅限于教育的问题,我会尽力为您解答!");
|
|
|
|
List<ChatSession.Message> history = Collections.singletonList(message);
|
|
|
|
List<ChatSession.Message> history = Collections.singletonList(message);
|
|
|
|
session = new ChatSession();
|
|
|
|
session = new ChatSession();
|
|
|
|
session.setId(userId);
|
|
|
|
session.setId(sessionId);
|
|
|
|
session.setCode(PK.CHAT_SESSION);
|
|
|
|
session.setCode(PK.CHAT_SESSION);
|
|
|
|
session.setTitle("评语");
|
|
|
|
session.setTitle("评语");
|
|
|
|
session.setUserId(userId);
|
|
|
|
session.setUserId(userId);
|
|
|
@ -201,8 +221,8 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
session.setUpdateTime(Instant.now().toEpochMilli());
|
|
|
|
session.setUpdateTime(Instant.now().toEpochMilli());
|
|
|
|
session.setHistory(history);
|
|
|
|
session.setHistory(history);
|
|
|
|
chatSessionRepository.save(session);
|
|
|
|
chatSessionRepository.save(session);
|
|
|
|
}else {
|
|
|
|
} else {
|
|
|
|
session = RepositoryUtil.findOne(chatSessionRepository.findBySessionId(userId), "该会话不存在");
|
|
|
|
session = RepositoryUtil.findOne(chatSessionRepository.findBySessionId(sessionId), "该会话不存在");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
@ -224,11 +244,11 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
SseHelper.send(sseEmitter, "[DONE]");
|
|
|
|
SseHelper.send(sseEmitter, "[DONE]");
|
|
|
|
// 处理完成后的事件: 保存消息记录, 缓存更改
|
|
|
|
// 处理完成后的事件: 保存消息记录, 缓存更改
|
|
|
|
ChatSession.Message message = ChatSession.Message.of(userPrompt, s);
|
|
|
|
ChatSession.Message message = ChatSession.Message.of(userPrompt, s);
|
|
|
|
HistoryCache.updateContext(userId, message);
|
|
|
|
HistoryCache.updateContext(sessionId, message);
|
|
|
|
CosmosPatchOperations options = CosmosPatchOperations.create()
|
|
|
|
CosmosPatchOperations options = CosmosPatchOperations.create()
|
|
|
|
.replace("/updateTime", Instant.now().toEpochMilli())
|
|
|
|
.replace("/updateTime", Instant.now().toEpochMilli())
|
|
|
|
.add("/history/-", message);
|
|
|
|
.add("/history/-", message);
|
|
|
|
chatSessionRepository.save(userId, PK.of(PK.CHAT_SESSION), ChatSession.class, options);
|
|
|
|
chatSessionRepository.save(sessionId, PK.of(PK.CHAT_SESSION), ChatSession.class, options);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// 错误的回调
|
|
|
|
// 错误的回调
|
|
|
|
listener.setOnError((s) -> {
|
|
|
|
listener.setOnError((s) -> {
|
|
|
@ -266,4 +286,197 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
paramMessages.add(SparkChatRequestParam.Message.ofUser(prompt));
|
|
|
|
paramMessages.add(SparkChatRequestParam.Message.ofUser(prompt));
|
|
|
|
return paramMessages;
|
|
|
|
return paramMessages;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 评语调用 聊天模型
|
|
|
|
|
|
|
|
* 待优化
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String commentsTemplate(ChatCommentsDto chatCommentsDto) {
|
|
|
|
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
|
|
|
|
String strData = JSON.toJSONString(chatCommentsDto.getData());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File file = new File("src/main/resources/Json/ChatModel.json");
|
|
|
|
|
|
|
|
List<ChatModelDto> chatModels = new ArrayList<>();
|
|
|
|
|
|
|
|
ChatModelDto chatModel = null;
|
|
|
|
|
|
|
|
//chatModel = readerMethod(file);
|
|
|
|
|
|
|
|
chatModels = readerMethod(file);
|
|
|
|
|
|
|
|
if(chatModels.size() <= 0)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.NOT_FOUND_ERROR.getCode(), "评语模版未配置");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//循环查找对应的模型数据
|
|
|
|
|
|
|
|
for(ChatModelDto chatModelTemp : chatModels)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
//判断评语类型
|
|
|
|
|
|
|
|
if(chatCommentsDto.getType().equals(chatModelTemp.getType()))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
chatModel = chatModelTemp;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(chatModel != null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
//角色条件
|
|
|
|
|
|
|
|
builder.append(String.format(chatModel.getRole(),chatCommentsDto.getPeriod(),chatCommentsDto.getSubject()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ChatModelDto finalChatModel = chatModel;
|
|
|
|
|
|
|
|
//模版
|
|
|
|
|
|
|
|
switch (chatCommentsDto.getType()) {
|
|
|
|
|
|
|
|
//智育 总体评语模版
|
|
|
|
|
|
|
|
case "wisdom":
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
WisdomCommentsDto wisdomComments;
|
|
|
|
|
|
|
|
//转换问题
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
//转换方式
|
|
|
|
|
|
|
|
wisdomComments = JSON.parseObject(strData, WisdomCommentsDto.class);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "类型转换失败");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(wisdomComments.getName() == null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 使用String.format方法生成最终的字符串
|
|
|
|
|
|
|
|
builder.append(String.format(
|
|
|
|
|
|
|
|
finalChatModel.getChat(),
|
|
|
|
|
|
|
|
wisdomComments.getName(),
|
|
|
|
|
|
|
|
wisdomComments.getYear(),
|
|
|
|
|
|
|
|
wisdomComments.getSemester(),
|
|
|
|
|
|
|
|
wisdomComments.getJoinAll(),
|
|
|
|
|
|
|
|
wisdomComments.getLessonMiddle(),
|
|
|
|
|
|
|
|
wisdomComments.getOnLine(),
|
|
|
|
|
|
|
|
wisdomComments.getMarking(),
|
|
|
|
|
|
|
|
wisdomComments.getAverage(),
|
|
|
|
|
|
|
|
wisdomComments.getLevel(),
|
|
|
|
|
|
|
|
wisdomComments.getProportion(),
|
|
|
|
|
|
|
|
wisdomComments.getName()
|
|
|
|
|
|
|
|
));
|
|
|
|
|
|
|
|
wisdomComments.getDims().forEach(item -> {
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(0),
|
|
|
|
|
|
|
|
item.name,
|
|
|
|
|
|
|
|
item.data[0],
|
|
|
|
|
|
|
|
item.data[1],
|
|
|
|
|
|
|
|
item.data[2],
|
|
|
|
|
|
|
|
item.data[3],
|
|
|
|
|
|
|
|
item.data[4]
|
|
|
|
|
|
|
|
));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getEnd(),wisdomComments.getName()));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//智育 表现模版
|
|
|
|
|
|
|
|
case "wisdomExam":
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
List<WisdomExamCommentsDto> examComments = new ArrayList<>();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
examComments = JSON.parseObject(strData, new TypeReference<List<WisdomExamCommentsDto>>() {});
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "类型转换失败");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(examComments.size() <= 1){
|
|
|
|
|
|
|
|
if (examComments.isEmpty()){
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (examComments.get(0).name == null){
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int count = 1;
|
|
|
|
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(0), count, examComment.getName(), examComment.getTime(), examComment.getScore(), examComment.getScoreRate(), examComment.getBanking()));
|
|
|
|
|
|
|
|
if (count < examComments.size())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
count++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getEnd(),count));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// 智育 学科评语模版
|
|
|
|
|
|
|
|
case "windomSubject":
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
List<WisdomSubjectComments> subjectComments;
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
subjectComments = JSON.parseObject(strData, new TypeReference<List<WisdomSubjectComments>>() {});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (Exception e) {
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(subjectComments.size() <= 1){
|
|
|
|
|
|
|
|
if (subjectComments.isEmpty()){
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.append(finalChatModel.getChat());
|
|
|
|
|
|
|
|
//拼接学科数组
|
|
|
|
|
|
|
|
for (WisdomSubjectComments comments : subjectComments){
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(0), comments.subjectName));
|
|
|
|
|
|
|
|
for (WisdomSubjectComments.StuInfo stuInfo : comments.getRankings()){
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(1), stuInfo.ranking, stuInfo.name, stuInfo.scoreRate));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(2), comments.getClaasRanking().ranking, comments.getClaasRanking().scoreRate,comments.getClaasRanking().average));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.append(String.format(finalChatModel.getEnd(),subjectComments.size()));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//艺术 考核指标纬度评语
|
|
|
|
|
|
|
|
case "artDimensions":
|
|
|
|
|
|
|
|
builder.append("请按照以下格式回复:\n");
|
|
|
|
|
|
|
|
builder.append("1. 艺术作品:\n");
|
|
|
|
|
|
|
|
builder.append("2. 艺术作品说明:\n");
|
|
|
|
|
|
|
|
builder.append("3. 艺术作品示例:\n");
|
|
|
|
|
|
|
|
builder.append("4. 艺术作品示例说明:\n");
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "sport":
|
|
|
|
|
|
|
|
builder.append("请按照以下格式回复:\n");
|
|
|
|
|
|
|
|
builder.append("1. 运动作品:\n");
|
|
|
|
|
|
|
|
builder.append("2. 运动作品说明:\n");
|
|
|
|
|
|
|
|
builder.append("3. 运动作品示例:\n");
|
|
|
|
|
|
|
|
builder.append("4. 运动作品示例说明:\n");
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "评语类型异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (chatCommentsDto.getSize() > 0 ){
|
|
|
|
|
|
|
|
builder.append("字数限制在:")
|
|
|
|
|
|
|
|
.append(chatCommentsDto.getSize())
|
|
|
|
|
|
|
|
.append("字左右");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return builder.toString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 读取文件信息并转换为智能对话模型数组对象
|
|
|
|
|
|
|
|
* @param file
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private static List<ChatModelDto> readerMethod(File file) {
|
|
|
|
|
|
|
|
//读取文件信息,并返回string字符串 ,并改成json格式
|
|
|
|
|
|
|
|
String fileTxt = FileUtil.readFile(file);
|
|
|
|
|
|
|
|
String strData =JSON.toJSONString(fileTxt);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取聊天字段中的数据
|
|
|
|
|
|
|
|
Object str = JSON.parseObject(strData).get("chatModel");
|
|
|
|
|
|
|
|
String strData2 = JSON.toJSONString(str);
|
|
|
|
|
|
|
|
List<ChatModelDto> chatModelDtos = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//转换问题
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
//转换方式
|
|
|
|
|
|
|
|
chatModelDtos = JSON.parseObject(strData2, new TypeReference<List<ChatModelDto>>() {});
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
throw new ServiceException(ErrorCode.OPERATION_ERROR.getCode(), "类型转换失败");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return chatModelDtos;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|