give everyone loras too

This commit is contained in:
Luke Robles 2023-10-25 14:40:53 -07:00
parent 7f1369e738
commit cdcf17b0fd

View File

@ -37,15 +37,15 @@ class StableDiffusion(commands.Cog):
ip = "192.168.1.5"
steps = 120
enable_upscale = "false"
if "lora" not in positive_prompt:
positive_prompt = (
positive_prompt
+ " <lora:bimbostyleThreeU:0.3> <lora:gigatitums:0.3> <lora:add_detail:1>"
)
# Send my requests to my gaming computer with the 3080 (if its up)
if ctx.author.id == core_utils.my_id:
ip = "192.168.1.19"
if "lora" not in positive_prompt:
positive_prompt = (
positive_prompt
+ " <lora:bimbostyleThreeU:0.3> <lora:gigatitums:0.3> <lora:add_detail:1>"
)
enable_upscale = "true"
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(1)