🍹 Usage of custom settings.json file

🚀 Look at config/settings.json as template

🚨 Default values are used in previews

🏵️ Cell color 🛸 If not properly configured
Red Gives whole generation error
Blue Repair or fallback to default value
Normal Fallback to default value
📖 Variables

📔 Types of data

🔢 Input 🛸 Type 🔥 Inputs 💬 Examples
bool boolean true or false true
int integer any number 69
str string any characters "some input thingy"
arr array array of some inputs
["hello", "there"]
More
[2, 1, 3, 7]
[true, false]
["hello", 69, false]

💬 Input strings

🌐 Example use:


            "input": "{txt2img.models}"
        
txt2txt

                "input": "{txt2txt.Input}"
            

🚀 Generated during workflow

🔢 Input 🛸 Meaning 🔥 Notes
Requirements

                                "txt2txt": {
                                    "active": true
                                }
                            
out Generated AI optimized prompt str
Example
"Generate prompt for AI image generator, make sure it's between \" marks. Subject: XD"
txt2img

                "input": "{txt2img.Input}"
            
🔢 Input 🛸 Meaning 🔥 Notes
models txt2img supported AI models arr
Example
["sd-xl-v1.0"]
Requirements

                                "txt2img": {
                                    "active": true
                                }
                            
out Generated by this function images artifact name str
Example
"txt2img"

        {
            "global": {},
            "txt2txt": {},
            "txt2img": {},
            "img2img": {},
            "img_upscale": {},
            "img2vid": {}
        }
    
global

            "global": {
                "clean_artifacts": true,
                "out_amount": 1
            }
        
⚡ Setting 🔢 Input 🔥 Description
clean_artifacts bool Delete temporary artifacts?
out_amount
int

                                in range 1 - 10
                            
How many prompts should be called?