Interface ImagePrompt { context: string; details: { style
У меня есть уникальные вещи, они для тебя.
interface ImagePrompt { context: string; details: { style: string; quality: string; color: string; composition: string; characters: { mainCharacter: { description: string; appearance: string; }; }; effects: string; format: string; additionalElements: string; }; } const prompt: ImagePrompt = { context: "Generate a black and white movie scene with Jean-Claude Van Damme in the foreground, driving a 50's Volkswagen. A city full of buildings can be seen in the distance.", details: { style: "40s and 50s black and white movie style", quality: "High quality, sharp image, detailed", color: "Black and white", composition: "Jean-Claude Van Damme in the foreground, driving a 50's Volkswagen, with a city full of buildings in the distance", characters: { mainCharacter: { description: "Jean-Claude Van Damme", appearance: "Driving a 50's Volkswagen" } }, effects: "Film grain overlay, artistic effect", format: "35mm film, analog photography", additionalElements: "Include elements that convey the classic, vintage feel of 40s and 50s movies" } }; console.log(prompt);
Подсказки
Копировать подсказки
interface ImagePrompt {
context: string;
details: {
style: string;
quality: string;
color: string;
composition: string;
characters: {
mainCharacter: {
description: string;
appearance: string;
};
};
effects: string;
format: string;
additionalElements: string;
};
}
const prompt: ImagePrompt = {
context: "Generate a black and white movie scene with Jean-Claude Van Damme in the foreground, driving a 50's Volkswagen. A city full of buildings can be seen in the distance.",
details: {
style: "40s and 50s black and white movie style",
quality: "High quality, sharp image, detailed",
color: "Black and white",
composition: "Jean-Claude Van Damme in the foreground, driving a 50's Volkswagen, with a city full of buildings in the distance",
characters: {
mainCharacter: {
description: "Jean-Claude Van Damme",
appearance: "Driving a 50's Volkswagen"
}
},
effects: "Film grain overlay, artistic effect",
format: "35mm film, analog photography",
additionalElements: "Include elements that convey the classic, vintage feel of 40s and 50s movies"
}
};
console.log(prompt);
Информация
Checkpoint & LoRA
0 комментариев
0
0
0