Bobby commited on
Commit
08a9a80
·
1 Parent(s): db09a78
Files changed (1) hide show
  1. app.py +22 -14
app.py CHANGED
@@ -151,63 +151,71 @@ def get_prompt(prompt, additional_prompt):
151
  # prompt = default2
152
  return f"{prompt} f{additional_prompt}"
153
 
154
- style_list = [
155
  {
156
  "name": "None",
157
  "prompt": ""
158
  },
159
  {
160
  "name": "Minimalistic",
161
- "prompt": "Minimalistic"
162
  },
163
  {
164
  "name": "Boho Chic",
165
- "prompt": "boho chic"
166
  },
167
  {
168
  "name": "Saudi Prince Gold",
169
- "prompt": "saudi prince gold",
170
  },
171
  {
172
  "name": "Modern Farmhouse",
173
- "prompt": "modern farmhouse",
174
  },
175
  {
176
  "name": "Neoclassical",
177
- "prompt": "Neoclassical",
178
  },
179
  {
180
  "name": "Eclectic",
181
- "prompt": "Eclectic",
182
  },
183
  {
184
  "name": "Parisian White",
185
- "prompt": "Parisian White",
186
  },
187
  {
188
  "name": "Hollywood Glam",
189
- "prompt": "Hollywood Glam",
190
  },
191
  {
192
  "name": "Scandinavian",
193
- "prompt": "Scandinavian",
194
  },
195
  {
196
  "name": "Japanese",
197
- "prompt": "Japanese",
198
  },
199
  {
200
  "name": "Texas Cowboy",
201
- "prompt": "Texas Cowboy",
202
  },
203
  {
204
  "name": "Midcentury Modern",
205
- "prompt": "Midcentury Modern",
206
  },
207
  {
208
  "name": "Beach",
209
- "prompt": "Beach",
210
  },
 
 
 
 
 
 
 
 
211
  ]
212
 
213
  styles = {k["name"]: (k["prompt"]) for k in style_list}
 
151
  # prompt = default2
152
  return f"{prompt} f{additional_prompt}"
153
 
154
+ style_list = [
155
  {
156
  "name": "None",
157
  "prompt": ""
158
  },
159
  {
160
  "name": "Minimalistic",
161
+ "prompt": "Minimalist interior design, clean lines, neutral colors, uncluttered space, functional furniture, lots of natural light"
162
  },
163
  {
164
  "name": "Boho Chic",
165
+ "prompt": "Bohemian chic interior, eclectic mix of patterns and textures, vintage furniture, plants, woven textiles, warm earthy colors"
166
  },
167
  {
168
  "name": "Saudi Prince Gold",
169
+ "prompt": "Opulent gold interior, luxurious ornate furniture, crystal chandeliers, rich fabrics, marble floors, intricate Arabic patterns"
170
  },
171
  {
172
  "name": "Modern Farmhouse",
173
+ "prompt": "Modern farmhouse interior, rustic wood elements, shiplap walls, neutral color palette, industrial accents, cozy textiles"
174
  },
175
  {
176
  "name": "Neoclassical",
177
+ "prompt": "Neoclassical interior design, elegant columns, ornate moldings, symmetrical layout, refined furniture, muted color palette"
178
  },
179
  {
180
  "name": "Eclectic",
181
+ "prompt": "Eclectic interior design, mix of styles and eras, bold color combinations, diverse furniture pieces, unique art objects"
182
  },
183
  {
184
  "name": "Parisian White",
185
+ "prompt": "Parisian apartment interior, all-white color scheme, ornate moldings, herringbone wood floors, elegant furniture, large windows"
186
  },
187
  {
188
  "name": "Hollywood Glam",
189
+ "prompt": "Hollywood Regency interior, glamorous and luxurious, bold colors, mirrored surfaces, velvet upholstery, gold accents"
190
  },
191
  {
192
  "name": "Scandinavian",
193
+ "prompt": "Scandinavian interior design, light wood tones, white walls, minimalist furniture, cozy textiles, hygge atmosphere"
194
  },
195
  {
196
  "name": "Japanese",
197
+ "prompt": "Traditional Japanese interior, tatami mats, shoji screens, low furniture, zen garden view, minimalist decor, natural materials"
198
  },
199
  {
200
  "name": "Texas Cowboy",
201
+ "prompt": "Western cowboy interior, rustic wood beams, leather furniture, cowhide rugs, antler chandeliers, southwestern patterns"
202
  },
203
  {
204
  "name": "Midcentury Modern",
205
+ "prompt": "Mid-century modern interior, 1950s-60s style furniture, organic shapes, warm wood tones, bold accent colors, large windows"
206
  },
207
  {
208
  "name": "Beach",
209
+ "prompt": "Coastal beach house interior, light blue and white color scheme, weathered wood, nautical accents, sheer curtains, ocean view"
210
  },
211
+ {
212
+ "name": "Retro Futurism",
213
+ "prompt": "Neon (atompunk world) retro cyberpunk background",
214
+ },
215
+ {
216
+ "name": "The Matrix",
217
+ "prompt": "Futuristic cyberpunk interior, neon accent lighting, holographic plants, sleek black surfaces, advanced gaming setup, transparent screens, Blade Runner inspired decor, high-tech minimalist furniture, subtle Matrix green code effects, ceiling-to-floor digital displays, automated smart home features, hidden LED strips, metallic and glass materials, floating furniture pieces, ambient blue lighting"
218
+ }
219
  ]
220
 
221
  styles = {k["name"]: (k["prompt"]) for k in style_list}