增加 对话异常、role异常

This commit is contained in:
cherishsince 2024-04-14 18:39:30 +08:00
parent be0c81458d
commit a2bd9b710e
1 changed files with 2 additions and 0 deletions

View File

@ -14,4 +14,6 @@ public interface ErrorCodeConstants {
// TODO @fansili1类注释不太对2中英文之间有个空格例如说 AI 模型
ErrorCode AI_MODULE_NOT_SUPPORTED = new ErrorCode(1_022_000_000, "AI模型暂不支持!");
ErrorCode AI_CHAT_ROLE_NOT_EXISTENT = new ErrorCode(1_022_000_001, "AI Role 不存在!");;
ErrorCode AI_CHAT_CONTINUE_CONVERSATION_ID_NOT_NULL = new ErrorCode(1_022_000_002, "chat 继续对话对话id不能为空!");;
}