自动面试流程优化以及修改

This commit is contained in:
2025-11-06 00:41:21 +08:00
parent 6f2689fd1e
commit e1db50003e
10 changed files with 1017 additions and 366 deletions

View File

@@ -33,7 +33,7 @@ public class OpenAiStreamClient {
private String role;
// 定义作为分割点的标点符号集合
private final String punctuationStr = ",,,,\\.,\\?,!,;";
private final String punctuationStr = ".?!;";
/**
* 发送流式请求

View File

@@ -0,0 +1,30 @@
package com.vetti.common.enums;
/**
* 是否可以参加面试
*/
public enum IsInterviewEnum {
INTERVIEW_0("0", "不可以"),
INTERVIEW_1("1", "可以"),
;
private final String code;
private final String info;
IsInterviewEnum(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}