mj 命令类型

This commit is contained in:
cherishsince 2024-04-01 22:12:23 +08:00
parent 9cd97a77e0
commit e7e5b729a6

View File

@ -0,0 +1,28 @@
package cn.iocoder.yudao.framework.ai.Midjourney;
import lombok.Getter;
/**
* MJ 命令类型
*/
@Getter
public enum MjCommandEnum {
IMAGINE("imagine", "生成图片"),
DESCRIBE("describe", "生成描述"),
FAST("fast", "快速生成"),
SETTINGS("settings", "设置"),
ASK("ask", "提问"),
BLEND("blend", "融合"),
;
MjCommandEnum(String value, String message) {
this.value =value;
this.message =message;
}
private String value;
private String message;
}