AI 候选人面试综合评估

This commit is contained in:
2026-01-26 23:48:20 +08:00
parent b4e950a522
commit cc5dbd7c5e
10 changed files with 177 additions and 69 deletions

View File

@@ -88,6 +88,9 @@ public class ChatGPTClient {
@Value("${chatGpt.modelAiCac}")
private String modelAiCac;
@Value("${chatGpt.modelAiCiv}")
private String modelAiCiv;
@Value("${chatGpt.role}")
private String role;
@@ -158,6 +161,9 @@ public class ChatGPTClient {
}else if("AICAC".equals(type)){
//招聘者查看候选人匹配度
resultText = sendMessage(promptText, modelAiCac,objectMapper,client,role);
}else if("AICIV".equals(type)){
//候选人面试综合评估
resultText = sendMessage(promptText, modelAiCiv,objectMapper,client,role);
}else {
resultText = sendMessage(promptText, modelQuestion,objectMapper,client,role);
}