adding a new goody and a good oldie
Browse files
app.py
CHANGED
|
@@ -118,6 +118,12 @@ def query(prompt, model, custom_lora, is_negative=False, steps=35, cfg_scale=7,
|
|
| 118 |
if model == 'Flux Game Assets V2':
|
| 119 |
API_URL = "https://api-inference.huggingface.co/models/gokaygokay/Flux-Game-Assets-LoRA-v2"
|
| 120 |
prompt = f"wbgmsst, white background, {prompt}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
if model == 'SoftPasty Flux':
|
| 122 |
API_URL = "https://api-inference.huggingface.co/models/alvdansen/softpasty-flux-dev"
|
| 123 |
prompt = f"araminta_illus illustration style, {prompt}"
|
|
@@ -434,6 +440,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme_5') as dalle:
|
|
| 434 |
"PS1 Style Flux",
|
| 435 |
"Redmond SDXL",
|
| 436 |
"Retro Comic Flux",
|
|
|
|
| 437 |
"Sketch Smudge",
|
| 438 |
"Shou Xin",
|
| 439 |
"Softserve Anime",
|
|
@@ -441,6 +448,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme_5') as dalle:
|
|
| 441 |
"Soviet Diffusion XL",
|
| 442 |
"Sketched Out Manga",
|
| 443 |
"Sketch Paint",
|
|
|
|
| 444 |
"Selfie Photography",
|
| 445 |
"Stable Diffusion 2-1",
|
| 446 |
"Stable Diffusion XL",
|
|
|
|
| 118 |
if model == 'Flux Game Assets V2':
|
| 119 |
API_URL = "https://api-inference.huggingface.co/models/gokaygokay/Flux-Game-Assets-LoRA-v2"
|
| 120 |
prompt = f"wbgmsst, white background, {prompt}"
|
| 121 |
+
if model == 'SDXL HS Card Style':
|
| 122 |
+
API_URL = "https://api-inference.huggingface.co/models/Norod78/sdxl-hearthstone-card-style-lora"
|
| 123 |
+
prompt = f"Aa, {prompt}"
|
| 124 |
+
if model == 'SLDR FLUX NSFW v2 Studio':
|
| 125 |
+
API_URL = "https://api-inference.huggingface.co/models/xey/sldr_flux_nsfw_v2-studio"
|
| 126 |
+
prompt = f"Aa, {prompt}"
|
| 127 |
if model == 'SoftPasty Flux':
|
| 128 |
API_URL = "https://api-inference.huggingface.co/models/alvdansen/softpasty-flux-dev"
|
| 129 |
prompt = f"araminta_illus illustration style, {prompt}"
|
|
|
|
| 440 |
"PS1 Style Flux",
|
| 441 |
"Redmond SDXL",
|
| 442 |
"Retro Comic Flux",
|
| 443 |
+
"SDXL HS Card Style",
|
| 444 |
"Sketch Smudge",
|
| 445 |
"Shou Xin",
|
| 446 |
"Softserve Anime",
|
|
|
|
| 448 |
"Soviet Diffusion XL",
|
| 449 |
"Sketched Out Manga",
|
| 450 |
"Sketch Paint",
|
| 451 |
+
"SLDR FLUX NSFW v2 Studio",
|
| 452 |
"Selfie Photography",
|
| 453 |
"Stable Diffusion 2-1",
|
| 454 |
"Stable Diffusion XL",
|