This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenums.go
87 lines (68 loc) · 2.57 KB
/
enums.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package wujiesdk
// @Title enums.go
// @Description enums
// @Create XdpCs 2023-10-17 20:48
// @Update XdpCs 2023-11-26 15:08
// PromptSubmitType prompt submit type /ai/optimize/prompt/submit
type PromptSubmitType int8
const (
CommonPromptSubmitType PromptSubmitType = iota + 1
ColorPromptSubmitType
AnimePromptSubmitType
)
// PromptSubmitLanguage prompt submit language /ai/optimize/prompt/submit
type PromptSubmitLanguage int8
const (
ChinesePromptSubmitLanguage PromptSubmitLanguage = iota
EnglishPromptSubmitLanguage
)
// CreateMagicDiceType create magic dice type /ai/magic_dice/search
type CreateMagicDiceType string
const (
MagicDicCreateMagicDiceType CreateMagicDiceType = "MAGIC_DICE"
SmartMagicCreateMagicDiceType CreateMagicDiceType = "SMART_MAGIC"
)
// CreateMagicDiceModel create magic dice model /ai/magic_dice/search
type CreateMagicDiceModel string
const (
StableDiffusionCreateMagicDiceModel CreateMagicDiceModel = "STABLE_DIFFUSION"
AnimeDiffusionCreateMagicDiceModel CreateMagicDiceModel = "ANIME_DIFFUSION"
StyleCreateMagicDiceModel CreateMagicDiceModel = "STYLE"
)
// CreateMagicDiceLanguage create magic dice language /ai/magic_dice/search
type CreateMagicDiceLanguage string
const (
ChineseCreateMagicDiceLanguage CreateMagicDiceLanguage = "CHINESE"
EnglishCreateMagicDiceLanguage CreateMagicDiceLanguage = "ENGLISH"
)
// SuperSizeType super size type /ai/supersize
type SuperSizeType string
const (
GeneralSuperSizeType SuperSizeType = "GENERAL"
AnimeSuperSizeType SuperSizeType = "ANIME"
)
// SuperSizeCostType super size cost type /ai/supersize
type SuperSizeCostType string
const (
IntegralSuperSizeCostType SuperSizeCostType = "INTEGRAL"
DurationSuperSizeCostType SuperSizeCostType = "DURATION"
)
// LabOptionType lab option type /ai/pro/lab/options
type LabOptionType string
const (
InfiniteZoomModelLabOptionType LabOptionType = "INFINITE_ZOOM_MODEL"
InfiniteZoomSamplerLabOptionType LabOptionType = "INFINITE_ZOOM_SAMPLER"
SegmentAnythingModelLabOptionType LabOptionType = "SEGMENT_ANYTHING_MODEL"
VectorStudioStyleLabOptionType LabOptionType = "VECTOR_STUDIO_STYLE"
)
// LabInfoType lab info type /ai/pro/lab/info
type LabInfoType string
const (
InfiniteZoomLabInfoType LabInfoType = "AI_LAB_INFINITE_ZOOM"
SegmentationLabInfoType LabInfoType = "AI_LAB_SEGMENTATION"
MjDescribeLabInfoType LabInfoType = "MJ_DESCRIBE"
PictureLabInfoType LabInfoType = "PICTURE"
SuperSizeLabInfoType LabInfoType = "SUPER_SIZE"
VectorLabInfoType LabInfoType = "VECTOR"
VideoLabInfoType LabInfoType = "VIDEO"
)