mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-15 13:56:50 +08:00
15 lines
479 B
Java
15 lines
479 B
Java
package com.xboe.constants;
|
|
|
|
public class CaseAiConstants {
|
|
|
|
public static final String CASE_AI_INDEX_NAME = "ai_chat_messages";
|
|
|
|
public static final String CASE_DOC_UPLOAD_INTERFACE_NAME = "文档上传";
|
|
|
|
public static final String CASE_DOC_DELETE_INTERFACE_NAME = "文档删除";
|
|
|
|
public static final String CHAT_SYS_ERR_MSG = "当前无法获取回答,请稍后重试";
|
|
|
|
public static final String CHAT_NET_ERR_MSG = "网络异常,请稍后再试";
|
|
}
|