处理评语智育

develop
PL 2 months ago
parent b68b576b8c
commit 8c2a543bbb

@ -12,10 +12,10 @@ import java.util.List;
public class ChatModelDto { public class ChatModelDto {
public String type; public String type;
public String name; public String name;
public String role; public ArrayList<String> role;
public String chat; public ArrayList<String> chat;
public ArrayList<String> cycleChats; public ArrayList<String> cycleChats;
public String end; public ArrayList<String> end;
} }

@ -32,6 +32,12 @@ public class ChatCommentsDto {
* *
*/ */
private int repeat; private int repeat;
/*
*
*/
private int phase;
/** /**
* *
*/ */

@ -76,6 +76,7 @@ public class ChatMessageServiceImpl implements ChatMessageService {
try { try {
// 目前仅使用讯飞星火大模型 // 目前仅使用讯飞星火大模型
String appId = chatCommentsDto.getAppId(); String appId = chatCommentsDto.getAppId();
// 获取模板文本
String text = commentsTemplate(chatCommentsDto); String text = commentsTemplate(chatCommentsDto);
if (!StringUtils.isEmpty(text)) { if (!StringUtils.isEmpty(text)) {
chatCommentsDto.setText(text); chatCommentsDto.setText(text);
@ -300,232 +301,220 @@ public class ChatMessageServiceImpl implements ChatMessageService {
* @return * @return
*/ */
private String commentsTemplate(ChatCommentsDto chatCommentsDto) { private String commentsTemplate(ChatCommentsDto chatCommentsDto) {
StringBuilder builder = new StringBuilder();
String strData = JSON.toJSONString(chatCommentsDto.getData());
List<ChatModelDto> chatModels = new ArrayList<>();
ChatModelDto chatModel = null;
// 获取模型数据
chatModels = jsonLoader.myJsonDataBean();
/*
//验证获取模型数据 异常问题
try { try {
String fileText = FileUtil.getFileText("Json/ChatModel.json"); StringBuilder builder = new StringBuilder();
String jsonData = JSON.toJSONString(fileText); String strData = JSON.toJSONString(chatCommentsDto.getData());
//获取聊天字段中的数据 //检查是否角色
Object obj = JSON.parseObject(jsonData).get("chatModel"); int phase = Math.max(chatCommentsDto.getPhase(), 0);
String jsonData01 = JSON.toJSONString(obj); List<ChatModelDto> chatModels = new ArrayList<>();
//转换方式 ChatModelDto chatModel = null;
chatModels = JSON.parseObject(jsonData01, new TypeReference<List<ChatModelDto>>() {}); // 获取模型数据
chatModels = jsonLoader.myJsonDataBean();
//循环查找对应的模型数据
for (ChatModelDto chatModelTemp : chatModels) {
//判断评语类型
if (chatCommentsDto.getType().equals(chatModelTemp.getType())) {
chatModel = chatModelTemp;
break;
}
}
log.info("获取地址fileText"+fileText+"----文件内容Data:"+ jsonData +"----获取模型集合Object" + obj +"----获取模型集合String"+ jsonData01 +"----获取模型集合机构:"+chatModels); if (chatModel != null) {
} catch (Exception e) { String role = "";
throw new ServiceException(ErrorCode.OPERATION_ERROR.getCode(), "读取文件" + Arrays.toString(e.getStackTrace()) + e.getMessage()); if (phase > 2){
}*/ role = chatModel.getRole().get(0);
}else
{
role = chatModel.getRole().get(1);
}
//循环查找对应的模型数据 //角色条件
for (ChatModelDto chatModelTemp : chatModels) { builder.append(String.format(chatModel.getRole().get(phase), chatCommentsDto.getPeriod(), chatCommentsDto.getSubject()));
//判断评语类型
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; ChatModelDto finalChatModel = chatModel;
//模版 //模版
switch (chatCommentsDto.getType()) { switch (chatCommentsDto.getType()) {
//智育 总体评语模版 //智育 总体评语模版
case "wisdom": { case "wisdom": {
WisdomCommentsDto wisdomComments; WisdomCommentsDto wisdomComments;
//转换问题 //转换问题
try { try {
//转换方式 //转换方式
wisdomComments = JSON.parseObject(strData, WisdomCommentsDto.class); wisdomComments = JSON.parseObject(strData, WisdomCommentsDto.class);
} catch (Exception e) { } catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "类型转换失败"); throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "类型转换失败");
} }
if (wisdomComments.getName() == null) { if (wisdomComments.getName() == null) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
// 使用String.format方法生成最终的字符串 String chat = phase > 0 ? finalChatModel.getChat().get(1) : finalChatModel.getChat().get(0);
builder.append(String.format( String cycleChat = finalChatModel.getCycleChats().get(0);
finalChatModel.getChat(),
wisdomComments.getName(), // 使用String.format方法生成最终的字符串
wisdomComments.getYear(), builder.append(String.format(
wisdomComments.getSemester(), chat,
wisdomComments.getJoinAll(), wisdomComments.getName(),
wisdomComments.getLessonMiddle(), wisdomComments.getYear(),
wisdomComments.getOnLine(), wisdomComments.getSemester(),
wisdomComments.getMarking(), wisdomComments.getJoinAll(),
wisdomComments.getLevel(), wisdomComments.getLessonMiddle(),
wisdomComments.getProportion(), wisdomComments.getOnLine(),
wisdomComments.getName() wisdomComments.getMarking(),
)); wisdomComments.getLevel(),
/* wisdomComments.getProportion(),
//有平均分 wisdomComments.getName()
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]
)); ));
}); wisdomComments.getDims().forEach(item -> {
builder.append(String.format(finalChatModel.getEnd(), wisdomComments.getName())); if(item.data.length >= 4)
break; {
} builder.append(String.format(cycleChat,
//智育 表现模版 item.name,
case "wisdomExam": { item.data[0],
List<WisdomExamCommentsDto> examComments = new ArrayList<>(); item.data[1],
try { item.data[2],
examComments = JSON.parseObject(strData, new TypeReference<List<WisdomExamCommentsDto>>() { item.data[3],
item.data[4]
));
}
}); });
} catch (Exception e) { builder.append(String.format(finalChatModel.getEnd().get(0), wisdomComments.getDims().size()));
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "类型转换失败"); break;
} }
if (examComments.size() <= 1) { //智育 表现模版
if (examComments.isEmpty()) { case "wisdomExam": {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); 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.get(0).name == null) { if (examComments.size() <= 1) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); 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;
int count = 1; for (WisdomExamCommentsDto examComment : examComments) {
for (WisdomExamCommentsDto examComment : examComments) { builder.append(String.format(finalChatModel.getCycleChats().get(0), count, examComment.getName(),
builder.append(String.format(finalChatModel.getCycleChats().get(0), count, examComment.getName(), examComment.getTime(), examComment.getScore(), examComment.getScoreRate(),
examComment.getTime(), examComment.getScore(), examComment.getScoreRate(), examComment.getRanking()));
examComment.getRanking())); if (count < examComments.size()) {
if (count < examComments.size()) { count++;
count++; }
} }
builder.append(String.format(finalChatModel.getEnd().get(0), count));
break;
} }
builder.append(String.format(finalChatModel.getEnd(), count)); // 智育 学科评语模版
break; case "wisdomSubject": {
} List<WisdomSubjectComments> subjectComments;
// 智育 学科评语模版 try {
case "windomSubject": { subjectComments = JSON.parseObject(strData, new TypeReference<List<WisdomSubjectComments>>() {
List<WisdomSubjectComments> subjectComments; });
try { } catch (Exception e) {
subjectComments = JSON.parseObject(strData, new TypeReference<List<WisdomSubjectComments>>() { throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
}); }
} catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
}
if (subjectComments.size() <= 1) {
if (subjectComments.isEmpty()) { if (subjectComments.isEmpty()) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
} builder.append(finalChatModel.getChat());
builder.append(finalChatModel.getChat()); String name = "";
String name = ""; //拼接学科数组
//拼接学科数组 for (WisdomSubjectComments comments : subjectComments) {
for (WisdomSubjectComments comments : subjectComments) { builder.append(String.format(finalChatModel.getCycleChats().get(0), comments.subjectName));
builder.append(String.format(finalChatModel.getCycleChats().get(0), comments.subjectName)); for (WisdomSubjectComments.StuInfo stuInfo : comments.getRankings()) {
for (WisdomSubjectComments.StuInfo stuInfo : comments.getRankings()) { builder.append(String.format(finalChatModel.getCycleChats().get(1), stuInfo.ranking,stuInfo.name, stuInfo.scoreRate*100));
builder.append(String.format(finalChatModel.getCycleChats().get(1), stuInfo.ranking,stuInfo.name, stuInfo.scoreRate*100)); }
if (phase == 0) {
name = comments.getClaasRanking().name;
builder.append(String.format(finalChatModel.getCycleChats().get(2), name, comments.getClaasRanking().ranking, comments.getClaasRanking().scoreRate * 100, comments.getClaasRanking().average * 100));
}
} }
name = comments.getClaasRanking().name; builder.append(String.format(finalChatModel.getEnd().get(0), subjectComments.size(),name));
builder.append(String.format(finalChatModel.getCycleChats().get(2),name,comments.getClaasRanking().ranking, comments.getClaasRanking().scoreRate * 100,comments.getClaasRanking().average * 100)); break;
}
builder.append(String.format(finalChatModel.getEnd(), subjectComments.size(),name));
break;
}
//艺术 考核指标纬度评语
case "artLatitude":{
List<ArtLatitudeDto> artLatitudes;
try {
artLatitudes = JSON.parseObject(strData, new TypeReference<List<ArtLatitudeDto>>() {
});
} catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
if (artLatitudes.size() <= 1) { //艺术 考核指标纬度评语
if (artLatitudes.isEmpty()) { case "artLatitude":{
List<ArtLatitudeDto> artLatitudes;
try {
artLatitudes = JSON.parseObject(strData, new TypeReference<List<ArtLatitudeDto>>() {
});
} catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
} if (artLatitudes.size() <= 1) {
builder.append(finalChatModel.getChat()); if (artLatitudes.isEmpty()) {
for (ArtLatitudeDto artLatitude : artLatitudes) throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
{ }
builder.append(String.format(finalChatModel.getCycleChats().get(0), artLatitude.getQuotaN1(),artLatitude.getQuotaP1(), artLatitude.getQuotaN2(),artLatitude.getQuotaP2(), artLatitude.getQuotaN3(),artLatitude.getQuotaP3(), artLatitude.getPercent(),artLatitude.getLevel())); }
} builder.append(finalChatModel.getChat());
for (ArtLatitudeDto artLatitude : artLatitudes)
{
builder.append(String.format(finalChatModel.getCycleChats().get(0), artLatitude.getQuotaN1(),artLatitude.getQuotaP1(), artLatitude.getQuotaN2(),artLatitude.getQuotaP2(), artLatitude.getQuotaN3(),artLatitude.getQuotaP3(), artLatitude.getPercent(),artLatitude.getLevel()));
}
builder.append(finalChatModel.getEnd()); builder.append(finalChatModel.getEnd());
break; break;
}
//艺术 学科评语模版
case "artSubject":{
List<ArtSubjectDto> artSubjects;
try {
artSubjects = JSON.parseObject(strData, new TypeReference<List<ArtSubjectDto>>() {
});
} catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
if (artSubjects.size() <= 1) { //艺术 学科评语模版
if (artSubjects.isEmpty()) { case "artSubject":{
List<ArtSubjectDto> artSubjects;
try {
artSubjects = JSON.parseObject(strData, new TypeReference<List<ArtSubjectDto>>() {
});
} catch (Exception e) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常"); throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
} }
if (artSubjects.size() <= 1) {
if (artSubjects.isEmpty()) {
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "请求参数异常");
}
}
builder.append(finalChatModel.getChat());
for (ArtSubjectDto artSubject : artSubjects){
builder.append(String.format(finalChatModel.getCycleChats().get(0), artSubject.getDimension(),artSubject.getBlock(), artSubject.getPoint(),artSubject.getScore(), artSubject.getTotalScore(),artSubject.getPercent()));
}
builder.append(String.format(finalChatModel.getEnd().get(0),chatCommentsDto.getSubject()));
break;
} }
builder.append(finalChatModel.getChat()); //体育
for (ArtSubjectDto artSubject : artSubjects){ case "sport":{
builder.append(String.format(finalChatModel.getCycleChats().get(0), artSubject.getDimension(),artSubject.getBlock(), artSubject.getPoint(),artSubject.getScore(), artSubject.getTotalScore(),artSubject.getPercent())); builder.append("请按照以下格式回复:\n");
builder.append("1. 运动作品:\n");
builder.append("2. 运动作品说明:\n");
builder.append("3. 运动作品示例:\n");
builder.append("4. 运动作品示例说明:\n");
break;
} }
//德育
case "moral":{
builder.append(finalChatModel.getChat());
builder.append(String.format(finalChatModel.getEnd(),chatCommentsDto.getSubject())); break;
break; }
} default:
//体育 throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "评语类型异常");
case "sport":{
builder.append("请按照以下格式回复:\n");
builder.append("1. 运动作品:\n");
builder.append("2. 运动作品说明:\n");
builder.append("3. 运动作品示例:\n");
builder.append("4. 运动作品示例说明:\n");
break;
} }
//德育
case "moral":{
builder.append(finalChatModel.getChat());
break; if (chatCommentsDto.getSize() > 0) {
builder.append("限制条件:")
.append(chatCommentsDto.getSize())
.append("字左右;【返回评语内容#不要开头提示语#】。");
} else {
builder.append("字数限制在200字左右【#返回评语内容#,#不要内容提示语#】。");
} }
default: return builder.toString();
throw new ServiceException(ErrorCode.PARAMS_ERROR.getCode(), "评语类型异常"); } catch (Exception e) {
} log.info(Arrays.toString(e.getStackTrace()));
log.error("{}-{}", e.getMessage(), Arrays.toString(e.getStackTrace()));
if (chatCommentsDto.getSize() > 0) { throw new ServiceException(ErrorCode.OPERATION_ERROR.getCode(), Arrays.toString(e.getStackTrace()));
builder.append("字数限制在:")
.append(chatCommentsDto.getSize())
.append("字左右");
} else {
builder.append("字数限制在200字左右");
} }
return builder.toString();
} }
} }

@ -3,42 +3,44 @@
{ {
"type": "wisdom", "type": "wisdom",
"name": "智育 总体评语模版", "name": "智育 总体评语模版",
"role": "请扮演[%s%s]老师角色\n", "role": ["请扮演[%s%s]老师角色\n","请扮演[%s%s]老师角色\n"],
"chat": "%s同学在%s学年度第%s学期中共计参加了%s次评测其中课中评测%s次、线上评测%s次、阅卷评测%s次素养等级为%s已超过班级%s%% 同学。\n %s同学总体表现", "chat": ["%s同学在%s学年度第%s学期中共计参加了%s次评测其中课中评测%s次、线上评测%s次、阅卷评测%s次素养等级为%s已超过班级%s%% 的同学。\n %s同学的总体表现",
"%s在%s学年度第%s学期共计参加了%s次评测其中课中评测%s次、线上评测%s次、阅卷评测%s次总体表现"
],
"cycleChats": ["在%s中学习态度为%s、学习成效%s、合作能力%s、评价能力%s、评价能力%s ;\n"], "cycleChats": ["在%s中学习态度为%s、学习成效%s、合作能力%s、评价能力%s、评价能力%s ;\n"],
"end": "根据我提供的数据,对这 %s 次考试成绩表现做一个评价\n" "end": ["根据我提供的数据,对这 %s 次考试成绩表现做一个评价\n"]
}, },
{ {
"type": "wisdomExam", "type": "wisdomExam",
"name": "智育 成绩表现模版", "name": "智育 成绩表现模版",
"role": "请扮演[%s%s]老师角色\n", "role": ["请扮演[%s%s]老师角色\n","请扮演[%s%s]老师角色\n"],
"chat": "", "chat": [""],
"cycleChats": ["参加第%s次考试结果名称:%s时间:%s得分%s考试得分率%s %% 排名:%s ;\n"], "cycleChats": ["参加第%s次考试结果名称:%s时间:%s得分%s考试得分率%s %% 排名:%s ;\n"],
"end": "根据我提供的数据,对这 %s 次考试成绩表现做一个评价。\n" "end": ["根据我提供的数据,对这 %s 次考试成绩表现做一个评价。\n"]
}, },
{ {
"type": "windomSubject", "type": "wisdomSubject",
"name": "智育 学科评语模版", "name": "智育 学科评语模版",
"role": "请扮演[%s%s]老师角色\n ", "role": ["请扮演[%s%s]老师角色\n ","请扮演[%s%s]老师角色\n"],
"chat": "各科评测表现", "chat": ["各科评测表现"],
"cycleChats":["科目:%s 班级top10"," 排名:%s姓名%s得分率%s %% ,\n " ,"%s在班级排名%s,得分率:%s %%,排在班级平均得分率:(%s %%)"], "cycleChats":["科目:%s 班级top10"," 排名:%s姓名%s得分率%s %% ,\n " ,"%s在班级排名%s,得分率:%s %%,排在班级平均得分率:(%s %%)"],
"end": "根据我提供的数据,对这%s门学科【%s】在班级中的表现做一个评价。 \n" "end": ["根据我提供的数据,对这%s门学科【%s】在班级中的表现做一个评价。 \n"]
}, },
{ {
"type": "artLatitude", "type": "artLatitude",
"name": "艺术 考核指标评语模版", "name": "艺术 考核指标评语模版",
"role": "请扮演[%s%s]老师角色\n ", "role": ["请扮演[%s%s]老师角色\n ","请扮演[%s%s]老师角色\n"],
"chat": "考核指标评纬度\n", "chat": ["考核指标评纬度\n"],
"cycleChats": [" 一级指标:%s %s %%);二级指标:%s %s %%);三级指标 %s %s %% ;得分率:%s %% 等级:%s\n"], "cycleChats": [" 一级指标:%s %s %%);二级指标:%s %s %%);三级指标 %s %s %% ;得分率:%s %% 等级:%s\n"],
"end": "根据我提供的【考核指标纬度】做一个整体的评价。 \n" "end": ["根据我提供的【考核指标纬度】做一个整体的评价。 \n"]
}, },
{ {
"type": "artSubject", "type": "artSubject",
"name": "艺术 学科评语模版", "name": "艺术 学科评语模版",
"role": "请扮演[%s%s]老师角色\n ", "role": ["请扮演[%s%s]老师角色\n ","请扮演[%s%s]年级老师角色\n"],
"chat": "%s学科\n", "chat": ["%s学科\n"],
"cycleChats": [" 考核纬度:%s一级知识点%s二级知识点 %s得分%s/%s 得分率:%s\n"], "cycleChats": [" 考核纬度:%s一级知识点%s二级知识点 %s得分%s/%s 得分率:%s\n"],
"end": "根据我提供的【%s学科】的表现做一个整体的评价。 \n" "end": ["根据我提供的【%s学科】的表现做一个整体的评价。 \n"]
} }
] ]
} }

Loading…
Cancel
Save