dev-chenjiajian #1

Merged
ChenJiaJian merged 8 commits from dev-chenjiajian into master 2026-01-17 16:31:39 +08:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 082a6ad7be - Show all commits

View File

@ -18,4 +18,7 @@ public class TestChildCharacterResp {
@Schema(description = "性格类型")
private String characterType;
@Schema(description = "星座")
private String constellation;
}

View File

@ -184,6 +184,7 @@ public class AppParentAgentActivityService implements IAppParentAgentActivitySer
// 获取AI返回的内容
String content = response.getChoices().get(0).getMessage().getContent();
result = parseAiResponse(content);
result.setConstellation(request.getConstellation());
// 如果AI调用成功则将测试结果保存到数据库中
MpTestChildCharacterEntity entity = getCharacterEntity(request, parentId, result);