增加 ai modal 添加模型

This commit is contained in:
cherishsince
2024-04-24 20:20:51 +08:00
parent 2fde9b124d
commit 77f3226d27
6 changed files with 69 additions and 7 deletions

View File

@ -0,0 +1,26 @@
package cn.iocoder.yudao.module.ai.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* ai modal disable
*
* @author fansili
* @time 2024/4/24 20:15
* @since 1.0
*/
@AllArgsConstructor
@Getter
public enum AiChatModalDisableEnum {
NO(0, "未禁用"),
YES(1, "禁用"),
;
private Integer value;
private String name;
}