Upload 16 files
Browse files- app.py +0 -0
- color_image.png +0 -0
- env.py +4 -36
- image.webp +0 -0
- lora_dict.json +112 -0
- modutils.py +1 -1
- requirements.txt +5 -12
- spiral_no_transparent.png +0 -0
app.py
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
color_image.png
ADDED
env.py
CHANGED
@@ -1,53 +1,21 @@
|
|
1 |
import os
|
2 |
from constants import LOAD_DIFFUSERS_FORMAT_MODEL as LOAD_DIFFUSERS_FORMAT_MODEL_DC
|
3 |
-
|
4 |
CIVITAI_API_KEY = os.environ.get("CIVITAI_API_KEY")
|
5 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
6 |
HF_READ_TOKEN = os.environ.get('HF_READ_TOKEN') # only use for private repo
|
7 |
|
8 |
# - **List Models**
|
9 |
LOAD_DIFFUSERS_FORMAT_MODEL = [
|
10 |
-
'
|
11 |
-
'
|
12 |
-
'votepurchase/kivotos-xl-2.0',
|
13 |
-
'votepurchase/holodayo-xl-2.1',
|
14 |
-
'votepurchase/ponyDiffusionV6XL',
|
15 |
-
'votepurchase/AnythingXL_xl',
|
16 |
-
'votepurchase/7thAnimeXLPonyA_v10',
|
17 |
-
'votepurchase/ChilloutMix',
|
18 |
-
'votepurchase/NovelAIRemix',
|
19 |
-
'votepurchase/NSFW-gen-v2',
|
20 |
-
'votepurchase/PerfectDeliberate-Anime_v2',
|
21 |
-
'votepurchase/realpony-xl',
|
22 |
-
'votepurchase/artiwaifu-diffusion-1.0',
|
23 |
-
'votepurchase/Starry-XL-v5.2',
|
24 |
-
'votepurchase/Yaki-Dofu-Mix',
|
25 |
-
'votepurchase/ebara-pony-v1-sdxl',
|
26 |
-
'votepurchase/waiANIMIXPONYXL_v10',
|
27 |
-
'votepurchase/counterfeitV30_v30',
|
28 |
-
'votepurchase/ebara-pony',
|
29 |
-
'votepurchase/Realistic_Vision_V1.4',
|
30 |
-
'votepurchase/pony',
|
31 |
-
'votepurchase/ponymatureSDXL_ponyeclipse10',
|
32 |
-
'votepurchase/waiREALMIX_v70',
|
33 |
-
'votepurchase/waiREALCN_v10',
|
34 |
-
'votepurchase/PVCStyleModelMovable_pony151',
|
35 |
-
'votepurchase/PVCStyleModelMovable_beta27Realistic',
|
36 |
-
'votepurchase/PVCStyleModelFantasy_beta12',
|
37 |
-
'votepurchase/pvcxl-v1-lora',
|
38 |
-
'votepurchase/Realistic_Vision_V2.0',
|
39 |
-
'votepurchase/RealVisXL_V4.0',
|
40 |
-
'votepurchase/juggernautXL_hyper_8step_sfw',
|
41 |
-
'votepurchase/ponyRealism_v21MainVAE',
|
42 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev2',
|
43 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
44 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
45 |
-
'
|
46 |
'kayfahaarukku/irAsu-1.0',
|
47 |
'Eugeoter/artiwaifu-diffusion-2.0',
|
48 |
'comin/IterComp',
|
49 |
'OnomaAIResearch/Illustrious-xl-early-release-v0',
|
50 |
-
'Laxhar/noobai-XL-1.0',
|
51 |
'Raelina/Rae-Diffusion-XL-V2',
|
52 |
'Raelina/Raemu-XL-V4',
|
53 |
'Raelina/Raehoshi-illust-XL',
|
@@ -80,7 +48,7 @@ DOWNLOAD_MODEL_LIST = [
|
|
80 |
DOWNLOAD_VAE_LIST = [
|
81 |
'https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/resolve/main/sdxl.vae.safetensors?download=true',
|
82 |
'https://huggingface.co/nubby/blessed-sdxl-vae-fp16-fix/resolve/main/sdxl_vae-fp16fix-c-1.1-b-0.5.safetensors?download=true',
|
83 |
-
|
84 |
"https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt",
|
85 |
"https://huggingface.co/stabilityai/sd-vae-ft-ema-original/resolve/main/vae-ft-ema-560000-ema-pruned.ckpt",
|
86 |
]
|
|
|
1 |
import os
|
2 |
from constants import LOAD_DIFFUSERS_FORMAT_MODEL as LOAD_DIFFUSERS_FORMAT_MODEL_DC
|
|
|
3 |
CIVITAI_API_KEY = os.environ.get("CIVITAI_API_KEY")
|
4 |
HF_TOKEN = os.environ.get("HF_TOKEN")
|
5 |
HF_READ_TOKEN = os.environ.get('HF_READ_TOKEN') # only use for private repo
|
6 |
|
7 |
# - **List Models**
|
8 |
LOAD_DIFFUSERS_FORMAT_MODEL = [
|
9 |
+
'cagliostrolab/animagine-xl-3.1',
|
10 |
+
'Laxhar/noobai-XL-1.0',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev2',
|
12 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
13 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
14 |
+
'kkayfahaarukku/UrangDiffusion-2.0',
|
15 |
'kayfahaarukku/irAsu-1.0',
|
16 |
'Eugeoter/artiwaifu-diffusion-2.0',
|
17 |
'comin/IterComp',
|
18 |
'OnomaAIResearch/Illustrious-xl-early-release-v0',
|
|
|
19 |
'Raelina/Rae-Diffusion-XL-V2',
|
20 |
'Raelina/Raemu-XL-V4',
|
21 |
'Raelina/Raehoshi-illust-XL',
|
|
|
48 |
DOWNLOAD_VAE_LIST = [
|
49 |
'https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/resolve/main/sdxl.vae.safetensors?download=true',
|
50 |
'https://huggingface.co/nubby/blessed-sdxl-vae-fp16-fix/resolve/main/sdxl_vae-fp16fix-c-1.1-b-0.5.safetensors?download=true',
|
51 |
+
'https://huggingface.co/nubby/blessed-sdxl-vae-fp16-fix/resolve/main/sdxl_vae-fp16fix-blessed.safetensors?download=true',
|
52 |
"https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt",
|
53 |
"https://huggingface.co/stabilityai/sd-vae-ft-ema-original/resolve/main/vae-ft-ema-560000-ema-pruned.ckpt",
|
54 |
]
|
image.webp
ADDED
lora_dict.json
CHANGED
@@ -2519,6 +2519,13 @@
|
|
2519 |
"https://civitai.com/models/504990",
|
2520 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/708e949d-7dfd-473b-952a-e09317b679ca/width=450/15176927.jpeg"
|
2521 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2522 |
"VibingDance_(frieren_vibing)_LoRA_PDXL_Anzhc": [
|
2523 |
"vibingdance, animation sheet, chibi, dancing / simple background, white background",
|
2524 |
"Pony",
|
@@ -2645,6 +2652,13 @@
|
|
2645 |
"https://civitai.com/models/308865",
|
2646 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0fd71659-09aa-4179-bfd2-879b623403d2/width=450/22504558.jpeg"
|
2647 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2648 |
"[hikari]missionary_holding_wrist_pony_v1": [
|
2649 |
"missionary_holding_wrist",
|
2650 |
"Pony",
|
@@ -2827,6 +2841,13 @@
|
|
2827 |
"https://civitai.com/models/614638",
|
2828 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0c6ed1ad-da10-4c9a-90ba-a1d12a8ea46c/width=450/22239895.jpeg"
|
2829 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2830 |
"_sdxl-transchool-pony": [
|
2831 |
"transchool",
|
2832 |
"Pony",
|
@@ -3674,6 +3695,13 @@
|
|
3674 |
"https://civitai.com/models/812637",
|
3675 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25e5c86b-a6d1-4129-99be-d37ebcd43e4b/width=450/32617666.jpeg"
|
3676 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3677 |
"china_dress_Pony_V1_0": [
|
3678 |
"jyojifuku, china dress, skirt",
|
3679 |
"Pony",
|
@@ -4171,6 +4199,13 @@
|
|
4171 |
"https://civitai.com/models/603258",
|
4172 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
4173 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4174 |
"donbiki_Pony_v1": [
|
4175 |
"donbiki",
|
4176 |
"Pony",
|
@@ -4227,6 +4262,13 @@
|
|
4227 |
"https://civitai.com/models/393273",
|
4228 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d61e0783-9d00-43a0-9b10-03f43ba40a51/width=450/9556301.jpeg"
|
4229 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4230 |
"dress_tug": [
|
4231 |
"dress_tug",
|
4232 |
"Pony",
|
@@ -4934,6 +4976,41 @@
|
|
4934 |
"https://civitai.com/models/498731",
|
4935 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/06a0dc3a-42ba-42b5-9ea9-d6b6faa3543b/width=450/14812284.jpeg"
|
4936 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4937 |
"hotarueye_xl_surprised_v20": [
|
4938 |
"",
|
4939 |
"Pony",
|
@@ -5095,6 +5172,13 @@
|
|
5095 |
"https://civitai.com/models/549854",
|
5096 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/69569569-e7b2-454a-81d9-4a820d628bd6/width=450/17985023.jpeg"
|
5097 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5098 |
"japanese_girl_v1_1": [
|
5099 |
"jpn-girl",
|
5100 |
"SDXL 1.0",
|
@@ -5102,6 +5186,13 @@
|
|
5102 |
"https://civitai.com/models/121579",
|
5103 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4d702d98-996e-478c-9e1d-0115852a3457/width=450/1899358.jpeg"
|
5104 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5105 |
"jihanki_PONY_V1": [
|
5106 |
"vending machine, outdoors, scenery, coca-cola, road, street, utility pole, power lines",
|
5107 |
"Pony",
|
@@ -5354,6 +5445,13 @@
|
|
5354 |
"https://civitai.com/models/655354",
|
5355 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/82734312-66f2-4d1f-a7f1-6c022fb4da78/width=450/24747865.jpeg"
|
5356 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5357 |
"kk_sexybody_02": [
|
5358 |
"kk_sexybody_02, 1girl, solo, breasts, wet, nipples, cum on body, excessive pubic hair, nude",
|
5359 |
"Pony",
|
@@ -5781,6 +5879,13 @@
|
|
5781 |
"https://civitai.com/models/315944",
|
5782 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7d391817-79ba-4afa-bd48-54ba3fce0847/width=450/6928651.jpeg"
|
5783 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5784 |
"mesugaki_Pony_v1": [
|
5785 |
"mesugaki",
|
5786 |
"Pony",
|
@@ -5991,6 +6096,13 @@
|
|
5991 |
"https://civitai.com/models/467118",
|
5992 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/11eced9f-d779-4138-a940-ad81a0b0454c/width=450/17635537.jpeg"
|
5993 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5994 |
"nosepony1": [
|
5995 |
"",
|
5996 |
"Pony",
|
|
|
2519 |
"https://civitai.com/models/504990",
|
2520 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/708e949d-7dfd-473b-952a-e09317b679ca/width=450/15176927.jpeg"
|
2521 |
],
|
2522 |
+
"Valkyria_Tentacles_Pony_V2": [
|
2523 |
+
"colorful tentacles, tentacle pit, Tentacle Restraints, tentacle floors, tentacle walls, Big tentacles, large tentacles, huge tentacles, giant tentacles, huge penis, giant penis, large insertion, Double insertion, triple insertion, inflation, lactation, stomach bulge, torn clothes, shiny, shiny skin, slime , wet skin, sweat, oral, fellatio, irrumatio, magical girl, wide spread legs, / bukkake, facial, excessive cum, cum drip, cum over, cum in pussy, vomiting cum, cum through, projectile,",
|
2524 |
+
"Pony",
|
2525 |
+
"Hentai Tentacles Hard Core (Valkyria Style) (PONY XL) | \u89e6\u624b\u51cc\u8fb1 (\u308f\u308b\u304d\u3085\u30fc\u308c \u30b9\u30bf\u30a4\u30eb)",
|
2526 |
+
"https://civitai.com/models/915381",
|
2527 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f6ce1d3d-02f9-48ec-922c-3099838cf836/width=450/38247950.jpeg"
|
2528 |
+
],
|
2529 |
"VibingDance_(frieren_vibing)_LoRA_PDXL_Anzhc": [
|
2530 |
"vibingdance, animation sheet, chibi, dancing / simple background, white background",
|
2531 |
"Pony",
|
|
|
2652 |
"https://civitai.com/models/308865",
|
2653 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0fd71659-09aa-4179-bfd2-879b623403d2/width=450/22504558.jpeg"
|
2654 |
],
|
2655 |
+
"[hikari]jellyfish_haircut_pony_v1": [
|
2656 |
+
"jfcut, long hair",
|
2657 |
+
"Pony",
|
2658 |
+
"\u6c34\u6bcd\u5934\u53d1\u578b / \u30af\u30e9\u30b2\u30ab\u30c3\u30c8 / Jellyfish haircut Concept Pony LoRA[HiKaRi]",
|
2659 |
+
"https://civitai.com/models/955239",
|
2660 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/33e99e1e-5aa6-481a-989a-8e74b4d1c793/width=450/40538903.jpeg"
|
2661 |
+
],
|
2662 |
"[hikari]missionary_holding_wrist_pony_v1": [
|
2663 |
"missionary_holding_wrist",
|
2664 |
"Pony",
|
|
|
2841 |
"https://civitai.com/models/614638",
|
2842 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0c6ed1ad-da10-4c9a-90ba-a1d12a8ea46c/width=450/22239895.jpeg"
|
2843 |
],
|
2844 |
+
"_sdxl-style-illusioneyle": [
|
2845 |
+
"illusioneyle",
|
2846 |
+
"Illustrious",
|
2847 |
+
"for Illustrious, for \"Ilustrious\", stability of illustration patterns (Illustrious\u7528 \u7d75\u67c4\u5b89\u5b9a\u6027\u5411\u4e0a\u306e\u305f\u3081\u306b) LoRA",
|
2848 |
+
"https://civitai.com/models/944662",
|
2849 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ec2e9a82-7bb7-4363-954c-2d3cc7a0bd08/width=450/39901570.jpeg"
|
2850 |
+
],
|
2851 |
"_sdxl-transchool-pony": [
|
2852 |
"transchool",
|
2853 |
"Pony",
|
|
|
3695 |
"https://civitai.com/models/812637",
|
3696 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25e5c86b-a6d1-4129-99be-d37ebcd43e4b/width=450/32617666.jpeg"
|
3697 |
],
|
3698 |
+
"chikubi_karikari_v3_mt-enhanced": [
|
3699 |
+
"chikubi_karikari, from front, nipple stimulation, motion lines, sound effects, ${your desired breasts size} / chikubi_karikari, from side, nipple stimulation, motion lines, sound effects, ${your desired breasts size} / chikubi_karikari, from below, nipple stimulation, motion lines, sound effects, ${your desired breasts size}",
|
3700 |
+
"Pony",
|
3701 |
+
"(CONCEPT) Nipple-Scratching / \u4e73\u9996\u30ab\u30ea\u30ab\u30ea\u30aa\u30ca\u30cb\u30fc",
|
3702 |
+
"https://civitai.com/models/812637",
|
3703 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fb20c5fe-88e0-48b7-a656-b64691ecbb2f/width=450/40471676.jpeg"
|
3704 |
+
],
|
3705 |
"china_dress_Pony_V1_0": [
|
3706 |
"jyojifuku, china dress, skirt",
|
3707 |
"Pony",
|
|
|
4199 |
"https://civitai.com/models/603258",
|
4200 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
4201 |
],
|
4202 |
+
"donbiki_Illust_v1": [
|
4203 |
+
"donbiki",
|
4204 |
+
"Illustrious",
|
4205 |
+
"[Illust&XL&Pony] disgust / \u30c9\u30f3\u5f15\u304d / \u990a\u8c5a\u5834\u306e\u8c5a\u3092\u898b\u308b\u3088\u3046\u306a\u76ee",
|
4206 |
+
"https://civitai.com/models/759232",
|
4207 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8c40c192-c478-40b6-bcc4-a6628d3055a1/width=450/39890508.jpeg"
|
4208 |
+
],
|
4209 |
"donbiki_Pony_v1": [
|
4210 |
"donbiki",
|
4211 |
"Pony",
|
|
|
4262 |
"https://civitai.com/models/393273",
|
4263 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d61e0783-9d00-43a0-9b10-03f43ba40a51/width=450/9556301.jpeg"
|
4264 |
],
|
4265 |
+
"doyagao_xl_v10": [
|
4266 |
+
"",
|
4267 |
+
"Pony",
|
4268 |
+
"[SDXL] Doyagao (V-shaped eyebrows) helper / V\u5b57\u5f62\u7709(\u30c9\u30e4\u9854\u4ed6)",
|
4269 |
+
"https://civitai.com/models/953978",
|
4270 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6d353dec-111a-439d-a978-e05ee7442593/width=450/40460311.jpeg"
|
4271 |
+
],
|
4272 |
"dress_tug": [
|
4273 |
"dress_tug",
|
4274 |
"Pony",
|
|
|
4976 |
"https://civitai.com/models/498731",
|
4977 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/06a0dc3a-42ba-42b5-9ea9-d6b6faa3543b/width=450/14812284.jpeg"
|
4978 |
],
|
4979 |
+
"hotarueye_xl_hosome1_v20": [
|
4980 |
+
"",
|
4981 |
+
"Pony",
|
4982 |
+
"[SDXL] Semi-closed eyes / \u7d30\u76ee",
|
4983 |
+
"https://civitai.com/models/941927",
|
4984 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7b19c76a-4472-4cb8-9554-9bf031be1ce4/width=450/39739501.jpeg"
|
4985 |
+
],
|
4986 |
+
"hotarueye_xl_hosome2_v20": [
|
4987 |
+
"",
|
4988 |
+
"Pony",
|
4989 |
+
"[SDXL] Semi-closed eyes / \u7d30\u76ee",
|
4990 |
+
"https://civitai.com/models/941927",
|
4991 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fe620aa2-9e45-47ef-92a5-1c5c60da3be8/width=450/39739679.jpeg"
|
4992 |
+
],
|
4993 |
+
"hotarueye_xl_normaljitome1_v10": [
|
4994 |
+
"",
|
4995 |
+
"Pony",
|
4996 |
+
"[SDXL] Jitome(scornful eyes) / \u30b8\u30c8\u76ee",
|
4997 |
+
"https://civitai.com/models/941966",
|
4998 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/684286bd-4e91-499d-9261-fade57500bb5/width=450/39741453.jpeg"
|
4999 |
+
],
|
5000 |
+
"hotarueye_xl_sleepy_v10": [
|
5001 |
+
"",
|
5002 |
+
"Pony",
|
5003 |
+
"[SDXL] Sleepy eyes / \u7720\u305d\u3046\u306a\u76ee",
|
5004 |
+
"https://civitai.com/models/926566",
|
5005 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5d7feca6-501b-41a6-9eca-54790f4909ef/width=450/38851516.jpeg"
|
5006 |
+
],
|
5007 |
+
"hotarueye_xl_smirking_v10": [
|
5008 |
+
"",
|
5009 |
+
"Pony",
|
5010 |
+
"[SDXL] Smirking eyes / \u306b\u3084\u306b\u3084\u3057\u305f\u76ee",
|
5011 |
+
"https://civitai.com/models/926552",
|
5012 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7a1bde6a-82f5-4fed-b9f4-6364de49b6d7/width=450/38850481.jpeg"
|
5013 |
+
],
|
5014 |
"hotarueye_xl_surprised_v20": [
|
5015 |
"",
|
5016 |
"Pony",
|
|
|
5172 |
"https://civitai.com/models/549854",
|
5173 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/69569569-e7b2-454a-81d9-4a820d628bd6/width=450/17985023.jpeg"
|
5174 |
],
|
5175 |
+
"inv_v_eyebrows_xl_v10": [
|
5176 |
+
"",
|
5177 |
+
"Pony",
|
5178 |
+
"[SDXL] Inverted V-shaped eyebrows / \u30cf\u306e\u5b57\u578b\u306e\u7709",
|
5179 |
+
"https://civitai.com/models/953992",
|
5180 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/11e36bc0-ef0d-415f-8a42-eb7b9d6bf9be/width=450/40461165.jpeg"
|
5181 |
+
],
|
5182 |
"japanese_girl_v1_1": [
|
5183 |
"jpn-girl",
|
5184 |
"SDXL 1.0",
|
|
|
5186 |
"https://civitai.com/models/121579",
|
5187 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4d702d98-996e-478c-9e1d-0115852a3457/width=450/1899358.jpeg"
|
5188 |
],
|
5189 |
+
"jellyfish-outfit-01": [
|
5190 |
+
"jellyfish outfit",
|
5191 |
+
"Pony",
|
5192 |
+
"Jellyfish Outfit",
|
5193 |
+
"https://civitai.com/models/955236",
|
5194 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c2444e84-3321-44e0-b430-2c4da65f6302/width=450/40537387.jpeg"
|
5195 |
+
],
|
5196 |
"jihanki_PONY_V1": [
|
5197 |
"vending machine, outdoors, scenery, coca-cola, road, street, utility pole, power lines",
|
5198 |
"Pony",
|
|
|
5445 |
"https://civitai.com/models/655354",
|
5446 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/82734312-66f2-4d1f-a7f1-6c022fb4da78/width=450/24747865.jpeg"
|
5447 |
],
|
5448 |
+
"kitsune-dance-ponyxl-lora-nochekaiser": [
|
5449 |
+
"<lora:kitsune-dance-ponyxl-lora-nochekaiser:1>, kitsune dance, cheerleader, layered skirt, paw pose, fox ears, white belt, fox tail, baseball stadium, blue shirt, blue skirt, crop top, sleeveless shirt, midriff",
|
5450 |
+
"Pony",
|
5451 |
+
"Kitsune Dance (\u304d\u3064\u306d\u30c0\u30f3\u30b9) - Clothing",
|
5452 |
+
"https://civitai.com/models/943759",
|
5453 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6badb7f0-08e8-44e9-a6c7-62590eb9c511/width=450/39866024.jpeg"
|
5454 |
+
],
|
5455 |
"kk_sexybody_02": [
|
5456 |
"kk_sexybody_02, 1girl, solo, breasts, wet, nipples, cum on body, excessive pubic hair, nude",
|
5457 |
"Pony",
|
|
|
5879 |
"https://civitai.com/models/315944",
|
5880 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7d391817-79ba-4afa-bd48-54ba3fce0847/width=450/6928651.jpeg"
|
5881 |
],
|
5882 |
+
"mesugaki_Illust_v1": [
|
5883 |
+
"mesugaki",
|
5884 |
+
"Illustrious",
|
5885 |
+
"[Illust&XL&Pony] mesugaki / \u30e1\u30b9\u30ac\u30ad",
|
5886 |
+
"https://civitai.com/models/455382",
|
5887 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8e6a35ca-ae5b-478f-b46d-9b11fc44d77b/width=450/39100267.jpeg"
|
5888 |
+
],
|
5889 |
"mesugaki_Pony_v1": [
|
5890 |
"mesugaki",
|
5891 |
"Pony",
|
|
|
6096 |
"https://civitai.com/models/467118",
|
6097 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/11eced9f-d779-4138-a940-ad81a0b0454c/width=450/17635537.jpeg"
|
6098 |
],
|
6099 |
+
"noobaiXL_EasyNegative_LoRA-3_0_last": [
|
6100 |
+
"",
|
6101 |
+
"Illustrious",
|
6102 |
+
"noobaiXL_EasyNegative",
|
6103 |
+
"https://civitai.com/models/923983",
|
6104 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b97ba109-85de-4cce-9bfe-1764c4eb1ef0/width=450/38759818.jpeg"
|
6105 |
+
],
|
6106 |
"nosepony1": [
|
6107 |
"",
|
6108 |
"Pony",
|
modutils.py
CHANGED
@@ -172,7 +172,7 @@ class ModelInformation:
|
|
172 |
self.download_url = json_data.get("downloadUrl", "")
|
173 |
self.model_url = f"https://civitai.com/models/{self.model_id}?modelVersionId={self.model_version_id}"
|
174 |
self.filename_url = next(
|
175 |
-
(v.get("name", "") for v in json_data.get("files", []) if str(self.model_version_id) in v.get("downloadUrl", "")), ""
|
176 |
)
|
177 |
self.filename_url = self.filename_url if self.filename_url else ""
|
178 |
self.description = json_data.get("description", "")
|
|
|
172 |
self.download_url = json_data.get("downloadUrl", "")
|
173 |
self.model_url = f"https://civitai.com/models/{self.model_id}?modelVersionId={self.model_version_id}"
|
174 |
self.filename_url = next(
|
175 |
+
(v.get("name", "") for v in reversed(json_data.get("files", [])) if str(self.model_version_id) in v.get("downloadUrl", "")), ""
|
176 |
)
|
177 |
self.filename_url = self.filename_url if self.filename_url else ""
|
178 |
self.description = json_data.get("description", "")
|
requirements.txt
CHANGED
@@ -1,24 +1,17 @@
|
|
1 |
git+https://github.com/R3gm/stablepy.git@a9fe2dc # -b refactor_sampler_fix
|
2 |
-
accelerate
|
3 |
-
diffusers
|
4 |
-
invisible_watermark
|
5 |
-
transformers
|
6 |
torch==2.2.0
|
7 |
numpy<2
|
8 |
gdown
|
9 |
opencv-python
|
10 |
-
huggingface_hub
|
11 |
-
scikit-build-core
|
12 |
-
https://github.com/abetlen/llama-cpp-python/releases/download/v0.2.90-cu124/llama_cpp_python-0.2.90-cp310-cp310-linux_x86_64.whl
|
13 |
-
git+https://github.com/Maximilian-Winter/llama-cpp-agent
|
14 |
-
pybind11>=2.12
|
15 |
-
rapidfuzz
|
16 |
torchvision
|
|
|
|
|
17 |
optimum[onnxruntime]
|
18 |
dartrs
|
|
|
19 |
translatepy
|
20 |
timm
|
21 |
-
|
22 |
sentencepiece
|
23 |
unidecode
|
24 |
-
ultralytics==8.3.
|
|
|
1 |
git+https://github.com/R3gm/stablepy.git@a9fe2dc # -b refactor_sampler_fix
|
|
|
|
|
|
|
|
|
2 |
torch==2.2.0
|
3 |
numpy<2
|
4 |
gdown
|
5 |
opencv-python
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
torchvision
|
7 |
+
accelerate
|
8 |
+
transformers
|
9 |
optimum[onnxruntime]
|
10 |
dartrs
|
11 |
+
huggingface_hub
|
12 |
translatepy
|
13 |
timm
|
14 |
+
rapidfuzz
|
15 |
sentencepiece
|
16 |
unidecode
|
17 |
+
ultralytics==8.3.47
|
spiral_no_transparent.png
ADDED