Bookmark this tip and repost !
Hi everyone!
If you're having a hard time using different Custom Instructions for DALL-E 3, this is the best way.
I got this idea from something else I was doing at work.
We will tell the ChatGPT which instruction to use. This way, only one instruction will be used at a time, so there won't be any mix-ups.
To do this, we'll use JSON object. Key-value pairs that contain the instructions and activation commands
Basic Struture :
{
"KeyName1": {
"Instruction": "Your Instructions",
"Activation Command": "/activate KeyName1"
},
"KeyName2": {
"Instruction": "Your Instructions",
"Activation Command": "/activate KeyName2"
},
"KeyNameN": {
"Instruction": "Your Instructions",
"Activation Command": "/activate KeyNameN"
}
}
// My Custom instructions based on above structure :
{
"Default": {
"Instruction": "DALL-E can modify and update prompts to create 4 variations of a new prompt. Based on these different variations, it should always generate 4 images. Always use a wide aspect ratio by default, and you must provide the seed number details for each image after it's rendered.",
"Activation Command": "/activate Default"
},
"DMP": {
"Instruction": "Do not modify my prompt under any circumstances. Please create an image using this exact prompt. Always use a wide aspect ratio by default. When you generate an image, you must always provide the seed number details for that image after it's rendered",
"Activation Command": "/activate DMP"
}
}
I have two keys: 'Default' and 'DMP.' You can read the instructions and watch the video to see this in action. Feel free to use by yourself.
If you found this cool and useful, follow me for more AI-related content.