ICONIC
Browse files
src/lib/components/PicletGenerator/PicletGenerator.svelte
CHANGED
@@ -438,15 +438,15 @@ Create a concise visual description (1-3 sentences, max 100 words). Focus only o
|
|
438 |
// Get tier for image quality enhancement
|
439 |
const tier = workflowState.picletStats.tier || 'medium';
|
440 |
const tierDescriptions = {
|
441 |
-
low: 'simple and
|
442 |
medium: 'detailed and well-crafted design',
|
443 |
high: 'highly detailed and impressive design with special effects',
|
444 |
-
legendary: '
|
445 |
};
|
446 |
|
447 |
try {
|
448 |
const output = await fluxClient.predict("/infer", [
|
449 |
-
`${workflowState.imagePrompt}\nNow generate a Pokémon
|
450 |
0, // seed
|
451 |
true, // randomizeSeed
|
452 |
1024, // width
|
|
|
438 |
// Get tier for image quality enhancement
|
439 |
const tier = workflowState.picletStats.tier || 'medium';
|
440 |
const tierDescriptions = {
|
441 |
+
low: 'simple and iconic design',
|
442 |
medium: 'detailed and well-crafted design',
|
443 |
high: 'highly detailed and impressive design with special effects',
|
444 |
+
legendary: 'highly detailed and majestic design with dramatic lighting and aura effects'
|
445 |
};
|
446 |
|
447 |
try {
|
448 |
const output = await fluxClient.predict("/infer", [
|
449 |
+
`${workflowState.imagePrompt}\nNow generate a Pokémon Anime image of the monster in an idle pose with a plain grey background. This is a ${tier} tier monster with a ${tierDescriptions[tier as keyof typeof tierDescriptions]}. The monster should not be attacking or in motion. The full monster must be visible within the frame.`,
|
450 |
0, // seed
|
451 |
true, // randomizeSeed
|
452 |
1024, // width
|