26 lines
444 B
TypeScript
26 lines
444 B
TypeScript
|
|
/**
|
|
* Flux 调用API时候的 生图模型
|
|
*/
|
|
export enum FLxuAPIImageType {
|
|
FLUX = "flux",
|
|
FLUX_PRO = "flux-pro",
|
|
FLUX_DEV = "flux-dev",
|
|
FLUX_SCHNELL = "flux-schnell",
|
|
FLUX_PRO_MAX = "flux-pro-max"
|
|
}
|
|
|
|
|
|
export enum PresetType {
|
|
// 角色
|
|
CHARACTER = 'character',
|
|
|
|
// 本地风格
|
|
LOCAL_STYLE = 'localStyle',
|
|
|
|
// 自定义风格
|
|
CUSTOM_STYLE = 'customStyle',
|
|
|
|
// laitool预设风格
|
|
LAITOOL_STYLE = 'laitoolStyle',
|
|
} |