@@ -24,6 +24,7 @@ export type Lora = {
24
24
refinement : string | boolean ;
25
25
height ?: number ;
26
26
width ?: number ;
27
+ suggestions : { prompt : string ; label : string } [ ] ;
27
28
} ;
28
29
29
30
export const LORAS : Lora [ ] = [
@@ -42,6 +43,11 @@ export const LORAS: Lora[] = [
42
43
steps : 33 ,
43
44
height : 832 ,
44
45
width : 1280 ,
46
+ suggestions : [
47
+ { label : "Flaming red torch" , prompt : "A flaming red torch" } ,
48
+ { label : "Brown briefcase" , prompt : "A brown briefcase" } ,
49
+ { label : "Snow globe" , prompt : "A snow globe" } ,
50
+ ] ,
45
51
} ,
46
52
{
47
53
id : 6 ,
@@ -56,6 +62,7 @@ export const LORAS: Lora[] = [
56
62
"Refine the prompt so that it describes a professional and minimalist logo. If the prompt describes two items, then just return those two items." ,
57
63
scale : 0.8 ,
58
64
steps : 28 ,
65
+ suggestions : [ { label : "Cat and flame" , prompt : "cat and flame" } ] ,
59
66
} ,
60
67
{
61
68
id : 1 ,
@@ -72,6 +79,10 @@ export const LORAS: Lora[] = [
72
79
steps : 33 ,
73
80
height : 832 ,
74
81
width : 1280 ,
82
+ suggestions : [
83
+ { label : "Albert Einstein" , prompt : "Albert Einstein" } ,
84
+ { label : "New York City" , prompt : "New York City" } ,
85
+ ] ,
75
86
} ,
76
87
{
77
88
id : 7 ,
@@ -87,6 +98,7 @@ export const LORAS: Lora[] = [
87
98
"Refine that prompt so it mimics MidJourney's style, blending intricate and artistic designs. Edit for photorealism and close-up shots." ,
88
99
scale : 1 ,
89
100
steps : 28 ,
101
+ suggestions : [ { label : "A flaming red torch" , prompt : "" } ] ,
90
102
} ,
91
103
92
104
{
@@ -103,6 +115,11 @@ export const LORAS: Lora[] = [
103
115
"Change the prompt does that it describes a piece of clothing. You need to include each of the following details: color, pattern, fit, style, material, and type." ,
104
116
scale : 1 ,
105
117
steps : 28 ,
118
+ suggestions : [
119
+ { label : "A flaming red torch" , prompt : "" } ,
120
+ { label : "A brown briefcase" , prompt : "" } ,
121
+ { label : "A snow globe" , prompt : "" } ,
122
+ ] ,
106
123
} ,
107
124
{
108
125
id : 2 ,
@@ -117,6 +134,11 @@ export const LORAS: Lora[] = [
117
134
refinement : false ,
118
135
scale : 1 ,
119
136
steps : 28 ,
137
+ suggestions : [
138
+ { label : "A flaming red torch" , prompt : "" } ,
139
+ { label : "A brown briefcase" , prompt : "" } ,
140
+ { label : "A snow globe" , prompt : "" } ,
141
+ ] ,
120
142
} ,
121
143
{
122
144
id : 3 ,
@@ -133,6 +155,11 @@ export const LORAS: Lora[] = [
133
155
"Refine the prompt so that it describes a smooth, scalable vector-style sketch that is ideal for digital designs." ,
134
156
scale : 1 ,
135
157
steps : 28 ,
158
+ suggestions : [
159
+ { label : "A flaming red torch" , prompt : "" } ,
160
+ { label : "A brown briefcase" , prompt : "" } ,
161
+ { label : "A snow globe" , prompt : "" } ,
162
+ ] ,
136
163
} ,
137
164
{
138
165
id : 4 ,
@@ -146,6 +173,11 @@ export const LORAS: Lora[] = [
146
173
refinement : false ,
147
174
scale : 1 ,
148
175
steps : 28 ,
176
+ suggestions : [
177
+ { label : "A flaming red torch" , prompt : "" } ,
178
+ { label : "A brown briefcase" , prompt : "" } ,
179
+ { label : "A snow globe" , prompt : "" } ,
180
+ ] ,
149
181
} ,
150
182
{
151
183
id : 5 ,
@@ -161,6 +193,11 @@ export const LORAS: Lora[] = [
161
193
"Refine the prompt so that it combines anime inspired designs with textured block print aesthetics. The refinement should only include a description that would exist in both anime and block print." ,
162
194
scale : 1 ,
163
195
steps : 28 ,
196
+ suggestions : [
197
+ { label : "A flaming red torch" , prompt : "" } ,
198
+ { label : "A brown briefcase" , prompt : "" } ,
199
+ { label : "A snow globe" , prompt : "" } ,
200
+ ] ,
164
201
} ,
165
202
{
166
203
id : 10 ,
@@ -175,5 +212,10 @@ export const LORAS: Lora[] = [
175
212
refinement : false ,
176
213
scale : 1 ,
177
214
steps : 28 ,
215
+ suggestions : [
216
+ { label : "A flaming red torch" , prompt : "" } ,
217
+ { label : "A brown briefcase" , prompt : "" } ,
218
+ { label : "A snow globe" , prompt : "" } ,
219
+ ] ,
178
220
} ,
179
221
] ;
0 commit comments