mirror of
https://github.com/Sygil-Dev/sygil-webui.git
synced 2024-12-15 14:31:44 +03:00
17 lines
897 B
Python
17 lines
897 B
Python
|
# The horde url
|
||
|
horde_url = "https://stablehorde.net"
|
||
|
# Give a cool name to your instance
|
||
|
horde_name = "My Awesome Instance"
|
||
|
# The api_key identifies a unique user in the horde
|
||
|
# Visit https://stablehorde.net/register to create one before you can join
|
||
|
horde_api_key = "0000000000"
|
||
|
# Put other users whose prompts you want to prioritize.
|
||
|
# The owner's username is always included so you don't need to add it here, unless you want it to have lower priority than another user
|
||
|
horde_priority_usernames = []
|
||
|
# The amount of power your system can handle
|
||
|
# 8 means 512*512. Each increase increases the possible resoluion by 64 pixes
|
||
|
# So if you put this to 2 (the minimum, your SD can only generate 64x64 pixels
|
||
|
# If you put this to 32, it is equivalent to 1024x1024 pixels
|
||
|
horde_max_power = 8
|
||
|
# Set this to false, if you do not want your worker to receive requests for NSFW generations
|
||
|
horde_nsfw = True
|