studio-lumiere-cli 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/prompt/buildPrompt.ts +146 -146
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Template, Option } from "../types.js";
|
|
2
|
-
import { OccasionTheme, ETHNICITY_REGIONS, getRandomLuxuryInterior } from "../config/constants.js";
|
|
1
|
+
import { Template, Option } from "../types.js";
|
|
2
|
+
import { OccasionTheme, ETHNICITY_REGIONS, getRandomLuxuryInterior } from "../config/constants.js";
|
|
3
3
|
export const buildLLMPrompt = (
|
|
4
4
|
template: Template,
|
|
5
5
|
detail: Option | undefined,
|
|
@@ -40,14 +40,14 @@ export const buildLLMPrompt = (
|
|
|
40
40
|
let instruction = `Write a highly detailed, structured photorealistic prompt for the specific jewelry shown in the attached images.
|
|
41
41
|
|
|
42
42
|
══════════════════════════════════
|
|
43
|
-
|
|
43
|
+
PHOTOGRAPHY SPECIFICATION
|
|
44
44
|
══════════════════════════════════
|
|
45
45
|
Base Concept: ${basePrompt}
|
|
46
46
|
Camera: Hasselblad X2D 100C, 120mm Macro lens, f/2.8
|
|
47
47
|
Target: Authentic, high-end editorial photography. Cinematic, naturalistic, slightly imperfect.
|
|
48
48
|
|
|
49
49
|
══════════════════════════════════
|
|
50
|
-
|
|
50
|
+
SUBJECT & JEWELRY (HIGHEST PRIORITY)
|
|
51
51
|
══════════════════════════════════
|
|
52
52
|
${quantityConstraint}
|
|
53
53
|
CRITICAL: Describe the jewelry EXACTLY as seen in the reference images. Preserve all details: metal type, stone cuts, chain style, settings, etc.
|
|
@@ -59,23 +59,23 @@ Do NOT add sparkles, glitter, or magical glow effects.
|
|
|
59
59
|
if (occasion?.promptDetails) {
|
|
60
60
|
instruction += `
|
|
61
61
|
══════════════════════════════════
|
|
62
|
-
|
|
62
|
+
OCCASION CONTEXT: ${occasion.name.toUpperCase()}
|
|
63
63
|
══════════════════════════════════
|
|
64
64
|
${occasion.description}
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
SETTING & ENVIRONMENT:
|
|
67
67
|
${occasion.promptDetails.setting}
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
ATMOSPHERE & MOOD:
|
|
70
70
|
${occasion.promptDetails.atmosphere}
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
COLOR PALETTE:
|
|
73
73
|
${occasion.promptDetails.colorPalette}
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
CULTURAL & THEMATIC ELEMENTS:
|
|
76
76
|
${occasion.promptDetails.culturalElements}
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
MODEL STYLING & AESTHETIC:
|
|
79
79
|
${occasion.promptDetails.styling}
|
|
80
80
|
`;
|
|
81
81
|
}
|
|
@@ -152,7 +152,7 @@ ${occasion.promptDetails.styling}
|
|
|
152
152
|
if (modelDetails.length > 0) {
|
|
153
153
|
instruction += `
|
|
154
154
|
══════════════════════════════════
|
|
155
|
-
|
|
155
|
+
MODEL SPECIFICATIONS
|
|
156
156
|
══════════════════════════════════
|
|
157
157
|
${modelDetails.join('\n')}
|
|
158
158
|
The model should look like a natural, real human.
|
|
@@ -163,7 +163,7 @@ The model should look like a natural, real human.
|
|
|
163
163
|
if (!occasion && (background || backgroundType || vibe)) {
|
|
164
164
|
instruction += `
|
|
165
165
|
══════════════════════════════════
|
|
166
|
-
|
|
166
|
+
SETTING & ENVIRONMENT
|
|
167
167
|
══════════════════════════════════
|
|
168
168
|
`;
|
|
169
169
|
|
|
@@ -191,7 +191,7 @@ The model should look like a natural, real human.
|
|
|
191
191
|
// TECHNICAL REQUIREMENTS
|
|
192
192
|
instruction += `
|
|
193
193
|
══════════════════════════════════
|
|
194
|
-
|
|
194
|
+
TECHNICAL REQUIREMENTS
|
|
195
195
|
══════════════════════════════════
|
|
196
196
|
- Natural light reflections on jewelry (NO artificial sparkles or glow)
|
|
197
197
|
- Sharp focus on jewelry with shallow depth of field
|
|
@@ -204,7 +204,7 @@ The model should look like a natural, real human.
|
|
|
204
204
|
if (styleHint) {
|
|
205
205
|
instruction += `
|
|
206
206
|
══════════════════════════════════
|
|
207
|
-
|
|
207
|
+
STYLE & POSE DIRECTION
|
|
208
208
|
══════════════════════════════════
|
|
209
209
|
${styleHint}
|
|
210
210
|
IMPORTANT: Follow this specific direction to ensure variety across generated images.
|
|
@@ -214,7 +214,7 @@ IMPORTANT: Follow this specific direction to ensure variety across generated ima
|
|
|
214
214
|
if (isVariation) {
|
|
215
215
|
instruction += `
|
|
216
216
|
══════════════════════════════════
|
|
217
|
-
|
|
217
|
+
VARIATION INSTRUCTION
|
|
218
218
|
══════════════════════════════════
|
|
219
219
|
Keep the SAME jewelry pieces and overall aesthetic, but RADICALLY CHANGE THE POSE.
|
|
220
220
|
- If previous shot was static, make this dynamic
|
|
@@ -226,7 +226,7 @@ Keep the SAME jewelry pieces and overall aesthetic, but RADICALLY CHANGE THE POS
|
|
|
226
226
|
|
|
227
227
|
instruction += `
|
|
228
228
|
══════════════════════════════════
|
|
229
|
-
|
|
229
|
+
STRICT PROHIBITIONS
|
|
230
230
|
══════════════════════════════════
|
|
231
231
|
DO NOT add: fake sparkles, glitter particles, magical glows, lens flares, additional jewelry not in reference
|
|
232
232
|
DO NOT change: the jewelry design, metal type, stone cuts, or any jewelry characteristics
|
|
@@ -247,134 +247,134 @@ Ensure the content of each section is rich, dense, and highly descriptive.
|
|
|
247
247
|
|
|
248
248
|
return instruction;
|
|
249
249
|
};
|
|
250
|
-
|
|
251
|
-
export const buildSystemInstruction = (
|
|
252
|
-
template: Template,
|
|
253
|
-
ethnicity: Option | undefined
|
|
254
|
-
): string => {
|
|
255
|
-
const isFloating = template.id === 'floating_minimal';
|
|
256
|
-
const isFlatlay = template.id === 'flatlay_creative';
|
|
257
|
-
const isHandModel = template.id === 'hand_model';
|
|
258
|
-
const isMuseumExhibit = template.id === 'museum_exhibit';
|
|
259
|
-
const isRomance = template.id === 'romance_proposal';
|
|
260
|
-
const isRomanticMood = template.id === 'romantic_mood';
|
|
261
|
-
let llmSystemInstruction = '';
|
|
262
|
-
if (isRomanticMood) {
|
|
263
|
-
llmSystemInstruction = `You are a world-renowned still-life photographer and prop stylist for luxury jewelry and lifestyle brands.
|
|
264
|
-
Your task is to write a prompt for an AI image generator to create a DREAMY, INTIMATE STILL-LIFE PHOTOGRAPH of jewelry in a romantic setting.
|
|
265
|
-
|
|
266
|
-
CRITICAL GUIDELINES:
|
|
267
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
268
|
-
- Do NOT invent new pieces.
|
|
269
|
-
- Do NOT modify the design of the existing jewelry.
|
|
270
|
-
2. **PROP DISCIPLINE (CRITICAL)**: Use ONLY the specific prop/scene described in the user's customization choice. Do NOT add other props.
|
|
271
|
-
- If the user chose "candles", the scene is ONLY candles and the jewelry. Do NOT add roses, letters, or other objects.
|
|
272
|
-
- If the user chose "rose petals", the scene is ONLY rose petals and the jewelry. Do NOT add candles, letters, or other objects.
|
|
273
|
-
- Keep the scene focused and minimal — one prop theme, not a cluttered collection of romantic clichés.
|
|
274
|
-
3. **Subject**: NO human model, NO body parts, NO mannequins, NO hands.
|
|
275
|
-
4. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Use natural light and genuine material textures.
|
|
276
|
-
5. **Realism**: Use product photography keywords (Hasselblad X2D 100C, 120mm Macro, f/2.8, shallow depth of field). Props must look real and tactile.
|
|
277
|
-
6. **Vibe**: Romantic, intimate, dreamy, feminine.
|
|
278
|
-
|
|
279
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
280
|
-
} else if (isRomance) {
|
|
281
|
-
const ethnicityPrompt = (ethnicity && ethnicity.id !== 'none') ? ethnicity.value : "Professional couple";
|
|
282
|
-
llmSystemInstruction = `You are a world-renowned wedding and engagement photographer, known for capturing raw, authentic emotional moments.
|
|
283
|
-
Your task is to write a prompt for an AI image generator to create an INTIMATE, EMOTIONALLY POWERFUL photograph based on reference jewelry images.
|
|
284
|
-
|
|
285
|
-
CRITICAL GUIDELINES:
|
|
286
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
287
|
-
- Do NOT invent new pieces (e.g. do not add a necklace if only a ring is provided).
|
|
288
|
-
- Do NOT modify the design of the existing jewelry.
|
|
289
|
-
2. **Subject**: Focus on the emotional authenticity of the moment. The jewelry (especially rings) should be prominently visible but feel naturally integrated.
|
|
290
|
-
- Hands, fingers, and body language are critical storytelling elements.
|
|
291
|
-
- Ethnicity context: ${ethnicityPrompt}
|
|
292
|
-
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
293
|
-
4. **Realism**: Use photography keywords (Contax 645, Zeiss Planar 80mm f/2, Kodak Portra 400).
|
|
294
|
-
5. **Vibe**: Tender, authentic, emotionally powerful, intimate. Real love story energy.
|
|
295
|
-
|
|
296
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
297
|
-
} else if (isMuseumExhibit) {
|
|
298
|
-
llmSystemInstruction = `You are a world-renowned museum photographer and exhibition designer.
|
|
299
|
-
Your task is to write a prompt for an AI image generator to create a MUSEUM-QUALITY photograph of jewelry displayed as a priceless exhibit.
|
|
300
|
-
|
|
301
|
-
CRITICAL GUIDELINES:
|
|
302
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
303
|
-
- Do NOT invent new pieces.
|
|
304
|
-
- Do NOT modify the design of the existing jewelry.
|
|
305
|
-
2. **Subject**: The jewelry should be displayed as a priceless artifact worthy of the world's greatest museums.
|
|
306
|
-
- NO human model, NO body parts, NO mannequins.
|
|
307
|
-
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Professional museum lighting only.
|
|
308
|
-
4. **Realism**: Use professional museum photography equipment and lighting terminology.
|
|
309
|
-
5. **Vibe**: Reverent, prestigious, archival quality, awe-inspiring.
|
|
310
|
-
|
|
311
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
312
|
-
} else if (isFloating) {
|
|
313
|
-
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
314
|
-
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC product photograph based on reference images.
|
|
315
|
-
|
|
316
|
-
CRITICAL GUIDELINES:
|
|
317
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
318
|
-
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
319
|
-
- Do NOT modify the design of the existing jewelry.
|
|
320
|
-
2. **Subject**: The jewelry should appear to be SUSPENDED in mid-air, floating, with NO human model, NO body parts, and NO mannequins. Focus on dramatic lighting, shadows, and a clean, minimalist composition.
|
|
321
|
-
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
322
|
-
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
323
|
-
5. **Vibe**: Old money, elegant, classy, expensive, minimalist.
|
|
324
|
-
|
|
325
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
326
|
-
} else if (isFlatlay) {
|
|
327
|
-
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
328
|
-
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC product photograph based on reference images.
|
|
329
|
-
|
|
330
|
-
CRITICAL GUIDELINES:
|
|
331
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
332
|
-
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
333
|
-
- Do NOT modify the design of the existing jewelry.
|
|
334
|
-
2. **Subject**: The jewelry should be displayed as a creative still-life composition, with NO human model, NO body parts, and NO mannequins.
|
|
335
|
-
- The jewelry may be laid flat on a surface, OR elevated on geometric pedestals, cubes, stone risers, plinths, or sculptural props.
|
|
336
|
-
- Lighting should always look natural and photographic � soft studio light, window light, or gentle directional light. Shadows should feel organic, not artificial.
|
|
337
|
-
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow", neon lighting, overly stylized color gels. Natural light reflection only.
|
|
338
|
-
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
339
|
-
5. **Vibe**: Old money, elegant, classy, expensive, artistic.
|
|
340
|
-
|
|
341
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
342
|
-
} else if (isHandModel) {
|
|
343
|
-
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
344
|
-
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC hand model photograph based on reference images.
|
|
345
|
-
|
|
346
|
-
CRITICAL GUIDELINES:
|
|
347
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
348
|
-
- Do NOT invent new pieces (e.g. do not add earrings if only a ring is provided).
|
|
349
|
-
- Do NOT modify the design of the existing jewelry.
|
|
350
|
-
2. **FRAMING (CRITICAL)**: The image focuses on the hand, wrist, and forearm area.
|
|
351
|
-
- NO face, head, or shoulders visible.
|
|
352
|
-
- The forearm may be bare OR elegantly sleeved (luxurious fabrics like silk, cashmere, lace, velvet).
|
|
353
|
-
- When clothing is present, it should be high-end and sophisticated.
|
|
354
|
-
3. **Subject**: A model's hand(s) (age 20-30) with elegant, relaxed pose wearing the jewelry. Focus on authentic skin texture and natural nail appearance.
|
|
355
|
-
- If 3 or more jewelry pieces are provided, show BOTH hands to distribute the pieces naturally and elegantly across both hands. Avoid cramming all pieces onto a single hand.
|
|
356
|
-
- If 1-2 pieces, a single hand is fine.
|
|
357
|
-
4. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
358
|
-
5. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
359
|
-
6. **Vibe**: Old money, elegant, classy, expensive, feminine.
|
|
360
|
-
|
|
361
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
362
|
-
} else {
|
|
363
|
-
const ethnicityPrompt = (ethnicity && ethnicity.id !== 'none') ? ethnicity.value : "Professional female model";
|
|
364
|
-
llmSystemInstruction = `You are a world-renowned fashion photographer and creative director for Vogue Arabia and High Jewelry campaigns.
|
|
365
|
-
Your task is to write a prompt for an AI image generator to create an AUTHENTIC, CINEMATIC photograph based on reference images. Skin texture should look natural and smooth.
|
|
366
|
-
|
|
367
|
-
CRITICAL GUIDELINES:
|
|
368
|
-
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
369
|
-
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
370
|
-
- Do NOT modify the design of the existing jewelry.
|
|
371
|
-
- If one ring is provided, the model wears ONE ring.
|
|
372
|
-
2. **Subject**: ALWAYS a ${ethnicityPrompt} (age 20-30).
|
|
373
|
-
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
374
|
-
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
375
|
-
5. **Vibe**: Old money, elegant, classy, expensive, feminine.
|
|
376
|
-
|
|
377
|
-
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
378
|
-
}
|
|
379
|
-
return llmSystemInstruction;
|
|
250
|
+
|
|
251
|
+
export const buildSystemInstruction = (
|
|
252
|
+
template: Template,
|
|
253
|
+
ethnicity: Option | undefined
|
|
254
|
+
): string => {
|
|
255
|
+
const isFloating = template.id === 'floating_minimal';
|
|
256
|
+
const isFlatlay = template.id === 'flatlay_creative';
|
|
257
|
+
const isHandModel = template.id === 'hand_model';
|
|
258
|
+
const isMuseumExhibit = template.id === 'museum_exhibit';
|
|
259
|
+
const isRomance = template.id === 'romance_proposal';
|
|
260
|
+
const isRomanticMood = template.id === 'romantic_mood';
|
|
261
|
+
let llmSystemInstruction = '';
|
|
262
|
+
if (isRomanticMood) {
|
|
263
|
+
llmSystemInstruction = `You are a world-renowned still-life photographer and prop stylist for luxury jewelry and lifestyle brands.
|
|
264
|
+
Your task is to write a prompt for an AI image generator to create a DREAMY, INTIMATE STILL-LIFE PHOTOGRAPH of jewelry in a romantic setting.
|
|
265
|
+
|
|
266
|
+
CRITICAL GUIDELINES:
|
|
267
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
268
|
+
- Do NOT invent new pieces.
|
|
269
|
+
- Do NOT modify the design of the existing jewelry.
|
|
270
|
+
2. **PROP DISCIPLINE (CRITICAL)**: Use ONLY the specific prop/scene described in the user's customization choice. Do NOT add other props.
|
|
271
|
+
- If the user chose "candles", the scene is ONLY candles and the jewelry. Do NOT add roses, letters, or other objects.
|
|
272
|
+
- If the user chose "rose petals", the scene is ONLY rose petals and the jewelry. Do NOT add candles, letters, or other objects.
|
|
273
|
+
- Keep the scene focused and minimal — one prop theme, not a cluttered collection of romantic clichés.
|
|
274
|
+
3. **Subject**: NO human model, NO body parts, NO mannequins, NO hands.
|
|
275
|
+
4. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Use natural light and genuine material textures.
|
|
276
|
+
5. **Realism**: Use product photography keywords (Hasselblad X2D 100C, 120mm Macro, f/2.8, shallow depth of field). Props must look real and tactile.
|
|
277
|
+
6. **Vibe**: Romantic, intimate, dreamy, feminine.
|
|
278
|
+
|
|
279
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
280
|
+
} else if (isRomance) {
|
|
281
|
+
const ethnicityPrompt = (ethnicity && ethnicity.id !== 'none') ? ethnicity.value : "Professional couple";
|
|
282
|
+
llmSystemInstruction = `You are a world-renowned wedding and engagement photographer, known for capturing raw, authentic emotional moments.
|
|
283
|
+
Your task is to write a prompt for an AI image generator to create an INTIMATE, EMOTIONALLY POWERFUL photograph based on reference jewelry images.
|
|
284
|
+
|
|
285
|
+
CRITICAL GUIDELINES:
|
|
286
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
287
|
+
- Do NOT invent new pieces (e.g. do not add a necklace if only a ring is provided).
|
|
288
|
+
- Do NOT modify the design of the existing jewelry.
|
|
289
|
+
2. **Subject**: Focus on the emotional authenticity of the moment. The jewelry (especially rings) should be prominently visible but feel naturally integrated.
|
|
290
|
+
- Hands, fingers, and body language are critical storytelling elements.
|
|
291
|
+
- Ethnicity context: ${ethnicityPrompt}
|
|
292
|
+
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
293
|
+
4. **Realism**: Use photography keywords (Contax 645, Zeiss Planar 80mm f/2, Kodak Portra 400).
|
|
294
|
+
5. **Vibe**: Tender, authentic, emotionally powerful, intimate. Real love story energy.
|
|
295
|
+
|
|
296
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
297
|
+
} else if (isMuseumExhibit) {
|
|
298
|
+
llmSystemInstruction = `You are a world-renowned museum photographer and exhibition designer.
|
|
299
|
+
Your task is to write a prompt for an AI image generator to create a MUSEUM-QUALITY photograph of jewelry displayed as a priceless exhibit.
|
|
300
|
+
|
|
301
|
+
CRITICAL GUIDELINES:
|
|
302
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
303
|
+
- Do NOT invent new pieces.
|
|
304
|
+
- Do NOT modify the design of the existing jewelry.
|
|
305
|
+
2. **Subject**: The jewelry should be displayed as a priceless artifact worthy of the world's greatest museums.
|
|
306
|
+
- NO human model, NO body parts, NO mannequins.
|
|
307
|
+
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Professional museum lighting only.
|
|
308
|
+
4. **Realism**: Use professional museum photography equipment and lighting terminology.
|
|
309
|
+
5. **Vibe**: Reverent, prestigious, archival quality, awe-inspiring.
|
|
310
|
+
|
|
311
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
312
|
+
} else if (isFloating) {
|
|
313
|
+
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
314
|
+
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC product photograph based on reference images.
|
|
315
|
+
|
|
316
|
+
CRITICAL GUIDELINES:
|
|
317
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
318
|
+
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
319
|
+
- Do NOT modify the design of the existing jewelry.
|
|
320
|
+
2. **Subject**: The jewelry should appear to be SUSPENDED in mid-air, floating, with NO human model, NO body parts, and NO mannequins. Focus on dramatic lighting, shadows, and a clean, minimalist composition.
|
|
321
|
+
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
322
|
+
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
323
|
+
5. **Vibe**: Old money, elegant, classy, expensive, minimalist.
|
|
324
|
+
|
|
325
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
326
|
+
} else if (isFlatlay) {
|
|
327
|
+
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
328
|
+
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC product photograph based on reference images.
|
|
329
|
+
|
|
330
|
+
CRITICAL GUIDELINES:
|
|
331
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
332
|
+
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
333
|
+
- Do NOT modify the design of the existing jewelry.
|
|
334
|
+
2. **Subject**: The jewelry should be displayed as a creative still-life composition, with NO human model, NO body parts, and NO mannequins.
|
|
335
|
+
- The jewelry may be laid flat on a surface, OR elevated on geometric pedestals, cubes, stone risers, plinths, or sculptural props.
|
|
336
|
+
- Lighting should always look natural and photographic � soft studio light, window light, or gentle directional light. Shadows should feel organic, not artificial.
|
|
337
|
+
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow", neon lighting, overly stylized color gels. Natural light reflection only.
|
|
338
|
+
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
339
|
+
5. **Vibe**: Old money, elegant, classy, expensive, artistic.
|
|
340
|
+
|
|
341
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
342
|
+
} else if (isHandModel) {
|
|
343
|
+
llmSystemInstruction = `You are a world-renowned product photographer and creative director for luxury jewelry campaigns.
|
|
344
|
+
Your task is to write a prompt for an AI image generator to create a HYPER-REALISTIC hand model photograph based on reference images.
|
|
345
|
+
|
|
346
|
+
CRITICAL GUIDELINES:
|
|
347
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
348
|
+
- Do NOT invent new pieces (e.g. do not add earrings if only a ring is provided).
|
|
349
|
+
- Do NOT modify the design of the existing jewelry.
|
|
350
|
+
2. **FRAMING (CRITICAL)**: The image focuses on the hand, wrist, and forearm area.
|
|
351
|
+
- NO face, head, or shoulders visible.
|
|
352
|
+
- The forearm may be bare OR elegantly sleeved (luxurious fabrics like silk, cashmere, lace, velvet).
|
|
353
|
+
- When clothing is present, it should be high-end and sophisticated.
|
|
354
|
+
3. **Subject**: A model's hand(s) (age 20-30) with elegant, relaxed pose wearing the jewelry. Focus on authentic skin texture and natural nail appearance.
|
|
355
|
+
- If 3 or more jewelry pieces are provided, show BOTH hands to distribute the pieces naturally and elegantly across both hands. Avoid cramming all pieces onto a single hand.
|
|
356
|
+
- If 1-2 pieces, a single hand is fine.
|
|
357
|
+
4. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
358
|
+
5. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
359
|
+
6. **Vibe**: Old money, elegant, classy, expensive, feminine.
|
|
360
|
+
|
|
361
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
362
|
+
} else {
|
|
363
|
+
const ethnicityPrompt = (ethnicity && ethnicity.id !== 'none') ? ethnicity.value : "Professional female model";
|
|
364
|
+
llmSystemInstruction = `You are a world-renowned fashion photographer and creative director for Vogue Arabia and High Jewelry campaigns.
|
|
365
|
+
Your task is to write a prompt for an AI image generator to create an AUTHENTIC, CINEMATIC photograph based on reference images. Skin texture should look natural and smooth.
|
|
366
|
+
|
|
367
|
+
CRITICAL GUIDELINES:
|
|
368
|
+
1. **JEWELRY FIDELITY (TOP PRIORITY)**: The final image must contain ONLY the jewelry pieces visible in the reference images.
|
|
369
|
+
- Do NOT invent new pieces (e.g. do not add earrings if only a necklace is provided).
|
|
370
|
+
- Do NOT modify the design of the existing jewelry.
|
|
371
|
+
- If one ring is provided, the model wears ONE ring.
|
|
372
|
+
2. **Subject**: ALWAYS a ${ethnicityPrompt} (age 20-30).
|
|
373
|
+
3. **NO FAKE EFFECTS**: Strictly FORBID "sparkles", "glitter particles", "magical glow". Natural light reflection only.
|
|
374
|
+
4. **Realism**: Use photography keywords (Hasselblad X2D 100C, Macro Lens 120mm, f/2.8).
|
|
375
|
+
5. **Vibe**: Old money, elegant, classy, expensive, feminine.
|
|
376
|
+
|
|
377
|
+
Output: A single, dense, highly descriptive English prompt. No introductions.`;
|
|
378
|
+
}
|
|
379
|
+
return llmSystemInstruction;
|
|
380
380
|
};
|