Nymbo commited on
Commit
8788aad
·
verified ·
1 Parent(s): 4ff7235

LoRAs added: Icons, Pixelart, nsfwmodel, genmoji, ebook cover, isometric 3D, meme, pepe, chill guy, logos

Browse files
Files changed (1) hide show
  1. app.py +44 -0
app.py CHANGED
@@ -54,6 +54,39 @@ def query(prompt, model, custom_lora, is_negative=False, steps=35, cfg_scale=7,
54
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-dev"
55
  if model == 'FLUX.1 [Schnell]':
56
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  if model == 'Flux Condensation':
58
  API_URL = "https://api-inference.huggingface.co/models/fofr/flux-condensation"
59
  prompt = f"CONDENSATION, {prompt}"
@@ -380,11 +413,14 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme_5') as dalle:
380
  "Collage Flux",
381
  "Coloring Book Flux",
382
  "Character Design",
 
 
383
  "Coloring Book Generator",
384
  "Cyborg Style XL",
385
  "Disney",
386
  "DreamPhotoGASM",
387
  "Duchaiten Real3D NSFW XL",
 
388
  "EpiCPhotoGasm",
389
  "Fashion Hut Modeling LoRA",
390
  "Filmgrain",
@@ -397,6 +433,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme_5') as dalle:
397
  "Flux Uncensored",
398
  "Flux Uncensored V2",
399
  "Flux Game Assets V2",
 
400
  "Flux Ghibsky Illustration",
401
  "Flux Animex V2",
402
  "Flux Animeo V1",
@@ -410,28 +447,35 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme_5') as dalle:
410
  "Flux Midjourney Anime",
411
  "Flux Miniature LoRA",
412
  "Flux Logo Design",
 
413
  "Flux Product Ad Backdrop",
414
  "Flux Outfit Generator",
415
  "Frosting Lane Flux",
416
  "Half Illustration",
417
  "How2Draw",
418
  "Huggieverse",
 
419
  "Leonardo AI Style Illustration",
420
  "Little Tinies",
421
  "Lofi Cuties",
422
  "Lustly Flux Uncensored v1",
423
  "Maple Syrup",
 
424
  "Midjourney",
425
  "Midjourney Mix",
426
  "Midjourney Mix 2",
427
  "Movie Board",
 
428
  "NSFW Master Flux",
429
  "NSFW XL",
430
  "OpenDalle v1.1",
 
 
431
  "Perfect Lewd Fantasy",
432
  "Pixel Art Redmond",
433
  "Pixel Art XL",
434
  "Pixel Art Sprites",
 
435
  "Product Design",
436
  "Propaganda Poster",
437
  "Purple Dreamy",
 
54
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-dev"
55
  if model == 'FLUX.1 [Schnell]':
56
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
57
+ if model == 'Flux Icon Kit':
58
+ API_URL = "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Icon-Kit-LoRA"
59
+ prompt = f"Icon Kit, {prompt}"
60
+ if model == 'Pixel Background':
61
+ API_URL = "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Pixel-Background-LoRA"
62
+ prompt = f"Pixel Background, {prompt}"
63
+ if model == 'Meme XD':
64
+ API_URL = "https://api-inference.huggingface.co/models/prithivMLmods/Flux-Meme-Xd-LoRA"
65
+ prompt = f"meme, {prompt}"
66
+ if model == 'Chill Guy':
67
+ API_URL = "https://api-inference.huggingface.co/models/prithivMLmods/Flux-Chill-Guy-Zone"
68
+ prompt = f"chill guy, {prompt}"
69
+ if model == 'Pepe':
70
+ API_URL = "https://api-inference.huggingface.co/models/openfree/pepe"
71
+ prompt = f"pepe, {prompt}"
72
+ if model == 'NSFWmodel':
73
+ API_URL = "https://api-inference.huggingface.co/models/lexa862/NSFWmodel"
74
+ prompt = f"nude, {prompt}"
75
+ if model == 'Claude Art':
76
+ API_URL = "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Claude-Art"
77
+ prompt = f"claude art, {prompt}"
78
+ if model == 'Open Genmoji':
79
+ API_URL = "https://api-inference.huggingface.co/models/EvanZhouDev/open-genmoji"
80
+ prompt = f"emoji, {prompt}"
81
+ if model == 'EBook Creative Cover':
82
+ API_URL = "https://api-inference.huggingface.co/models/prithivMLmods/EBook-Creative-Cover-Flux-LoRA"
83
+ prompt = f"EBook Cover, {prompt}"
84
+ if model == 'Flux Logo Design 2':
85
+ API_URL = "https://api-inference.huggingface.co/models/prithivMLmods/Logo-Design-Flux-LoRA"
86
+ prompt = f"Logo Design, {prompt}"
87
+ if model == 'Isometric 3D':
88
+ API_URL = "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Isometric-3D-LoRA"
89
+ prompt = f"Isometric 3D, {prompt}"
90
  if model == 'Flux Condensation':
91
  API_URL = "https://api-inference.huggingface.co/models/fofr/flux-condensation"
92
  prompt = f"CONDENSATION, {prompt}"
 
413
  "Collage Flux",
414
  "Coloring Book Flux",
415
  "Character Design",
416
+ "Chill Guy",
417
+ "Claude Art",
418
  "Coloring Book Generator",
419
  "Cyborg Style XL",
420
  "Disney",
421
  "DreamPhotoGASM",
422
  "Duchaiten Real3D NSFW XL",
423
+ "EBook Creative Cover",
424
  "EpiCPhotoGasm",
425
  "Fashion Hut Modeling LoRA",
426
  "Filmgrain",
 
433
  "Flux Uncensored",
434
  "Flux Uncensored V2",
435
  "Flux Game Assets V2",
436
+ "Flux Icon Kit",
437
  "Flux Ghibsky Illustration",
438
  "Flux Animex V2",
439
  "Flux Animeo V1",
 
447
  "Flux Midjourney Anime",
448
  "Flux Miniature LoRA",
449
  "Flux Logo Design",
450
+ "Flux Logo Design 2",
451
  "Flux Product Ad Backdrop",
452
  "Flux Outfit Generator",
453
  "Frosting Lane Flux",
454
  "Half Illustration",
455
  "How2Draw",
456
  "Huggieverse",
457
+ "Isometric 3D",
458
  "Leonardo AI Style Illustration",
459
  "Little Tinies",
460
  "Lofi Cuties",
461
  "Lustly Flux Uncensored v1",
462
  "Maple Syrup",
463
+ "Meme XD",
464
  "Midjourney",
465
  "Midjourney Mix",
466
  "Midjourney Mix 2",
467
  "Movie Board",
468
+ "NSFWmodel",
469
  "NSFW Master Flux",
470
  "NSFW XL",
471
  "OpenDalle v1.1",
472
+ "Open Genmoji",
473
+ "Pepe",
474
  "Perfect Lewd Fantasy",
475
  "Pixel Art Redmond",
476
  "Pixel Art XL",
477
  "Pixel Art Sprites",
478
+ "Pixel Background",
479
  "Product Design",
480
  "Propaganda Poster",
481
  "Purple Dreamy",