Spaces:
Running
on
Zero
Running
on
Zero
Upload 4 files
Browse files- app.py +2 -1
- env.py +1 -0
- llmdolphin.py +45 -0
- lora_dict.json +98 -0
app.py
CHANGED
@@ -159,7 +159,7 @@ with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60,
|
|
159 |
recom_prompt = gr.Checkbox(label="Recommended prompt", value=True, scale=1)
|
160 |
|
161 |
with gr.Accordion("Translation Settings", open=False):
|
162 |
-
chatbot = gr.Chatbot(
|
163 |
chat_model = gr.Dropdown(choices=get_dolphin_models(), value=get_dolphin_models()[0][1], allow_custom_value=True, label="Model")
|
164 |
chat_model_info = gr.Markdown(value=get_dolphin_model_info(get_dolphin_models()[0][1]), label="Model info")
|
165 |
chat_format = gr.Dropdown(choices=get_llm_formats(), value=get_dolphin_model_format(get_dolphin_models()[0][1]), label="Message format")
|
@@ -180,6 +180,7 @@ with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60,
|
|
180 |
["beautiful sunset"],
|
181 |
],
|
182 |
inputs=[prompt],
|
|
|
183 |
)
|
184 |
|
185 |
gr.on( #lambda x: None, inputs=None, outputs=result).then(
|
|
|
159 |
recom_prompt = gr.Checkbox(label="Recommended prompt", value=True, scale=1)
|
160 |
|
161 |
with gr.Accordion("Translation Settings", open=False):
|
162 |
+
chatbot = gr.Chatbot(render_markdown=False, visible=False) # component for auto-translation
|
163 |
chat_model = gr.Dropdown(choices=get_dolphin_models(), value=get_dolphin_models()[0][1], allow_custom_value=True, label="Model")
|
164 |
chat_model_info = gr.Markdown(value=get_dolphin_model_info(get_dolphin_models()[0][1]), label="Model info")
|
165 |
chat_format = gr.Dropdown(choices=get_llm_formats(), value=get_dolphin_model_format(get_dolphin_models()[0][1]), label="Message format")
|
|
|
180 |
["beautiful sunset"],
|
181 |
],
|
182 |
inputs=[prompt],
|
183 |
+
cache_examples=False,
|
184 |
)
|
185 |
|
186 |
gr.on( #lambda x: None, inputs=None, outputs=result).then(
|
env.py
CHANGED
@@ -92,6 +92,7 @@ load_diffusers_format_model = [
|
|
92 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
93 |
'kayfahaarukku/UrangDiffusion-1.4',
|
94 |
'Eugeoter/artiwaifu-diffusion-2.0',
|
|
|
95 |
'Raelina/Rae-Diffusion-XL-V2',
|
96 |
'Raelina/Raemu-XL-V4',
|
97 |
"camenduru/FLUX.1-dev-diffusers",
|
|
|
92 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
93 |
'kayfahaarukku/UrangDiffusion-1.4',
|
94 |
'Eugeoter/artiwaifu-diffusion-2.0',
|
95 |
+
'OnomaAIResearch/Illustrious-xl-early-release-v0',
|
96 |
'Raelina/Rae-Diffusion-XL-V2',
|
97 |
'Raelina/Raemu-XL-V4',
|
98 |
"camenduru/FLUX.1-dev-diffusers",
|
llmdolphin.py
CHANGED
@@ -23,6 +23,7 @@ llm_models = {
|
|
23 |
"MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
|
24 |
"Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
25 |
"Instant-RP-Noodles-12B-v1.3.Q4_K_M.gguf": ["mradermacher/Instant-RP-Noodles-12B-v1.3-GGUF", MessagesFormatterType.MISTRAL],
|
|
|
26 |
"MN-12B-Lyra-v4-Q4_K_M.gguf": ["bartowski/MN-12B-Lyra-v4-GGUF", MessagesFormatterType.CHATML],
|
27 |
"Lyra4-Gutenberg-12B.Q4_K_M.gguf": ["mradermacher/Lyra4-Gutenberg-12B-GGUF", MessagesFormatterType.CHATML],
|
28 |
"Llama-3.1-8B-EZO-1.1-it.Q5_K_M.gguf": ["mradermacher/Llama-3.1-8B-EZO-1.1-it-GGUF", MessagesFormatterType.MISTRAL],
|
@@ -55,10 +56,54 @@ llm_models = {
|
|
55 |
"mn-maghin-12b-q6_k.gguf": ["rityak/MN-Maghin-12B-Q6_K-GGUF", MessagesFormatterType.MISTRAL],
|
56 |
"qwen2.5-lumen-14b-q4_k_m.gguf": ["Lambent/Qwen2.5-Lumen-14B-Q4_K_M-GGUF", MessagesFormatterType.OPEN_CHAT],
|
57 |
"Qwen2.5-14B_Uncensored_Instruct.Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B_Uncensored_Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
|
|
|
|
58 |
"Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
|
59 |
"ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
|
60 |
"ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
|
61 |
"ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
"Llama-3.2-3B-Instruct-uncensored.i1-Q5_K_S.gguf": ["mradermacher/Llama-3.2-3B-Instruct-uncensored-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
63 |
"L3-SthenoMaid-8B-V1-Q5_K_M.gguf": ["bartowski/L3-SthenoMaid-8B-V1-GGUF", MessagesFormatterType.LLAMA_3],
|
64 |
"Magot-v2-Gemma2-8k-9B.Q5_K_M.gguf": ["grimjim/Magot-v2-Gemma2-8k-9B-GGUF", MessagesFormatterType.ALPACA],
|
|
|
23 |
"MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
|
24 |
"Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
25 |
"Instant-RP-Noodles-12B-v1.3.Q4_K_M.gguf": ["mradermacher/Instant-RP-Noodles-12B-v1.3-GGUF", MessagesFormatterType.MISTRAL],
|
26 |
+
"MN-BackyardAI-Party-12B-v1.i1-Q5_K_M.gguf": ["mradermacher/MN-BackyardAI-Party-12B-v1-i1-GGUF", MessagesFormatterType.MISTRAL],
|
27 |
"MN-12B-Lyra-v4-Q4_K_M.gguf": ["bartowski/MN-12B-Lyra-v4-GGUF", MessagesFormatterType.CHATML],
|
28 |
"Lyra4-Gutenberg-12B.Q4_K_M.gguf": ["mradermacher/Lyra4-Gutenberg-12B-GGUF", MessagesFormatterType.CHATML],
|
29 |
"Llama-3.1-8B-EZO-1.1-it.Q5_K_M.gguf": ["mradermacher/Llama-3.1-8B-EZO-1.1-it-GGUF", MessagesFormatterType.MISTRAL],
|
|
|
56 |
"mn-maghin-12b-q6_k.gguf": ["rityak/MN-Maghin-12B-Q6_K-GGUF", MessagesFormatterType.MISTRAL],
|
57 |
"qwen2.5-lumen-14b-q4_k_m.gguf": ["Lambent/Qwen2.5-Lumen-14B-Q4_K_M-GGUF", MessagesFormatterType.OPEN_CHAT],
|
58 |
"Qwen2.5-14B_Uncensored_Instruct.Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B_Uncensored_Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
59 |
+
"EVA-Qwen2.5-14B-v0.0.i1-IQ4_XS.gguf": ["mradermacher/EVA-Qwen2.5-14B-v0.0-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
|
60 |
+
"MN-12B-Vespa-x1.i1-Q4_K_M.gguf": ["mradermacher/MN-12B-Vespa-x1-i1-GGUF", MessagesFormatterType.CHATML],
|
61 |
"Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
|
62 |
"ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
|
63 |
"ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
|
64 |
"ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
|
65 |
+
"eidolon-v1-14b-q4_k_m.gguf": ["Lambent/Eidolon-v1-14B-Q4_K_M-GGUF", MessagesFormatterType.OPEN_CHAT],
|
66 |
+
"Mistral-Nemo-Gutenberg-Doppel-12B-v2.Q4_K_M.gguf": ["QuantFactory/Mistral-Nemo-Gutenberg-Doppel-12B-v2-GGUF", MessagesFormatterType.MISTRAL],
|
67 |
+
"MN-Dark-Planet-TITAN-12B-D_AU-Q4_k_s.gguf": ["DavidAU/MN-Dark-Planet-TITAN-12B-GGUF", MessagesFormatterType.CHATML],
|
68 |
+
"Gemma-2-Ataraxy-Remix-9B-Q8_0.gguf": ["lemon07r/Gemma-2-Ataraxy-Remix-9B-Q8_0-GGUF", MessagesFormatterType.ALPACA],
|
69 |
+
"recoilme-gemma-2-ataraxy-9b-v0.1-q6_k.gguf": ["zelk12/recoilme-gemma-2-Ataraxy-9B-v0.1-Q6_K-GGUF", MessagesFormatterType.ALPACA],
|
70 |
+
"qwen-2.5-7b-titanfusion-v3-iq4_nl-imat.gguf": ["bunnycore/Qwen-2.5-7b-TitanFusion-v3-IQ4_NL-GGUF", MessagesFormatterType.OPEN_CHAT],
|
71 |
+
"ExtremeFusion.Q5_K_M.gguf": ["pyhornet/ExtremeFusion-8B-GGUF", MessagesFormatterType.LLAMA_3],
|
72 |
+
"gemma-2-2b-jpn-it.Q6_K.iMatrix.gguf": ["MCZK/gemma-2-2b-jpn-it-GGUF", MessagesFormatterType.ALPACA],
|
73 |
+
"Qwen-2.5-7b-TitanFusion-v2.Q5_K_M.gguf": ["mradermacher/Qwen-2.5-7b-TitanFusion-v2-GGUF", MessagesFormatterType.OPEN_CHAT],
|
74 |
+
"Ice0.15-02.10-RP.Q5_K_M.gguf": ["mradermacher/Ice0.15-02.10-RP-GGUF", MessagesFormatterType.MISTRAL],
|
75 |
+
"Ice0.16-02.10-RP.Q5_K_M.gguf": ["mradermacher/Ice0.16-02.10-RP-GGUF", MessagesFormatterType.MISTRAL],
|
76 |
+
"Mistral-NeMo-Minitron-8B-Instruct.Q4_K_M.gguf": ["mradermacher/Mistral-NeMo-Minitron-8B-Instruct-GGUF", MessagesFormatterType.MISTRAL],
|
77 |
+
"Stellar-Odyssey-12b-v0.0.Q4_K_S.gguf": ["mradermacher/Stellar-Odyssey-12b-v0.0-GGUF", MessagesFormatterType.MISTRAL],
|
78 |
+
"NIHAPPY-L3.1-8B-v0.09.Q5_K_M.gguf": ["mradermacher/NIHAPPY-L3.1-8B-v0.09-GGUF", MessagesFormatterType.LLAMA_3],
|
79 |
+
"replete-llm-v2.5-qwen-14b-q4_k_m.gguf": ["Potatass/Replete-LLM-V2.5-Qwen-14b-Q4_K_M-GGUF", MessagesFormatterType.OPEN_CHAT],
|
80 |
+
"memory-9-q4_k_m-imat.gguf": ["ClaudioItaly/Memory-9-Q4_K_M-GGUF", MessagesFormatterType.ALPACA],
|
81 |
+
"felix_dies-mistral-7B-model_stock.Q5_K_M.gguf": ["mradermacher/felix_dies-mistral-7B-model_stock-GGUF", MessagesFormatterType.MISTRAL],
|
82 |
+
"Lyra4-Gutenberg2-12B.i1-Q4_K_M.gguf": ["mradermacher/Lyra4-Gutenberg2-12B-i1-GGUF", MessagesFormatterType.CHATML],
|
83 |
+
"Dans-Instruct-Mix-8b-ChatML-V0.2.0.Q5_K_M.gguf": ["mradermacher/Dans-Instruct-Mix-8b-ChatML-V0.2.0-GGUF", MessagesFormatterType.CHATML],
|
84 |
+
"Aspire1.1-8B-model_stock.i1-Q5_K_M.gguf": ["mradermacher/Aspire1.1-8B-model_stock-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
85 |
+
"Dhenu2-India-2.1-Llama-3.1-8B-Instruct.Q5_K_M.gguf": ["mradermacher/Dhenu2-India-2.1-Llama-3.1-8B-Instruct-GGUF", MessagesFormatterType.LLAMA_3],
|
86 |
+
"Hermes2-Gutenberg2-Mistral-7B.Q5_K_M.gguf": ["mradermacher/Hermes2-Gutenberg2-Mistral-7B-GGUF", MessagesFormatterType.CHATML],
|
87 |
+
"ezo-humanities-9b-gemma-2-it-q8_0.gguf": ["mashima/EZO-Humanities-9B-gemma-2-it-Q8_0-GGUF", MessagesFormatterType.ALPACA],
|
88 |
+
"Gemma2-Gutenberg-Doppel-9B-Q4_K_M.gguf": ["bartowski/Gemma2-Gutenberg-Doppel-9B-GGUF", MessagesFormatterType.ALPACA],
|
89 |
+
"lyra4-gutenberg2-12b-q4_k_m.gguf": ["TheDrunkenSnail/Lyra4-Gutenberg2-12B-Q4_K_M-GGUF", MessagesFormatterType.CHATML],
|
90 |
+
"templare-12b-q4_k_m.gguf": ["ClaudioItaly/Templare-12B-Q4_K_M-GGUF", MessagesFormatterType.MISTRAL],
|
91 |
+
"Aurora_faustus-8B-LORABLATED.i1-Q5_K_M.gguf": ["mradermacher/Aurora_faustus-8B-LORABLATED-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
92 |
+
"Aurora_faustus-8B-LORABLATED_ALT.Q5_K_M.gguf": ["mradermacher/Aurora_faustus-8B-LORABLATED_ALT-GGUF", MessagesFormatterType.LLAMA_3],
|
93 |
+
"Kainoverse-7b-v0.1-bangla.Q4_K_S.gguf": ["mradermacher/Kainoverse-7b-v0.1-bangla-GGUF", MessagesFormatterType.MISTRAL],
|
94 |
+
"Kainoverse-7b-v0.1.Q5_K_M.gguf": ["mradermacher/Kainoverse-7b-v0.1-GGUF", MessagesFormatterType.MISTRAL],
|
95 |
+
"Qwen2.5-7B-HyperMix.Q4_K_M.gguf": ["mradermacher/Qwen2.5-7B-HyperMix-GGUF", MessagesFormatterType.OPEN_CHAT],
|
96 |
+
"Spei_Meridiem-8B-model_stock.Q4_K_S.gguf": ["mradermacher/Spei_Meridiem-8B-model_stock-GGUF", MessagesFormatterType.LLAMA_3],
|
97 |
+
"Replete-LLM-V2.5-Qwen-7b-Q4_K_M.gguf": ["bartowski/Replete-LLM-V2.5-Qwen-7b-GGUF", MessagesFormatterType.OPEN_CHAT],
|
98 |
+
"EVA-Qwen2.5-7B-v0.0.Q4_K_S.gguf": ["mradermacher/EVA-Qwen2.5-7B-v0.0-GGUF", MessagesFormatterType.OPEN_CHAT],
|
99 |
+
"L3-8B-Stheno-v3.2-TASKBLATED.Q4_K_S.gguf": ["mradermacher/L3-8B-Stheno-v3.2-TASKBLATED-GGUF", MessagesFormatterType.LLAMA_3],
|
100 |
+
"Heart_Stolen1.1-8B-Model_Stock.Q4_K_S.gguf": ["mradermacher/Heart_Stolen1.1-8B-Model_Stock-GGUF", MessagesFormatterType.LLAMA_3],
|
101 |
+
"aurora_faustus-8b-lorablated_alt-q4_k_m.gguf": ["DreadPoor/Aurora_faustus-8B-LORABLATED_ALT-Q4_K_M-GGUF", MessagesFormatterType.LLAMA_3],
|
102 |
+
"L3.1-Suze-Vume-2-calc.Q5_K_M.gguf": ["mradermacher/L3.1-Suze-Vume-2-calc-GGUF", MessagesFormatterType.LLAMA_3],
|
103 |
+
"Gemma-2-Ataraxy-v2-9B.i1-Q4_K_M.gguf": ["mradermacher/Gemma-2-Ataraxy-v2-9B-i1-GGUF", MessagesFormatterType.ALPACA],
|
104 |
+
"DreamTeam-gemma2-9b-it-vision.Q4_K_M.gguf": ["mradermacher/DreamTeam-gemma2-9b-it-vision-GGUF", MessagesFormatterType.ALPACA],
|
105 |
+
"L3.1-Aglow-Vulca-v0.1-8B.Q5_K_M.gguf": ["mradermacher/L3.1-Aglow-Vulca-v0.1-8B-GGUF", MessagesFormatterType.LLAMA_3],
|
106 |
+
"L3.1-15B-EtherealMaid-t0.0001-alpha.Q4_K_M.gguf": ["mradermacher/L3.1-15B-EtherealMaid-t0.0001-alpha-GGUF", MessagesFormatterType.LLAMA_3],
|
107 |
"Llama-3.2-3B-Instruct-uncensored.i1-Q5_K_S.gguf": ["mradermacher/Llama-3.2-3B-Instruct-uncensored-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
108 |
"L3-SthenoMaid-8B-V1-Q5_K_M.gguf": ["bartowski/L3-SthenoMaid-8B-V1-GGUF", MessagesFormatterType.LLAMA_3],
|
109 |
"Magot-v2-Gemma2-8k-9B.Q5_K_M.gguf": ["grimjim/Magot-v2-Gemma2-8k-9B-GGUF", MessagesFormatterType.ALPACA],
|
lora_dict.json
CHANGED
@@ -797,6 +797,20 @@
|
|
797 |
"https://civitai.com/models/341353",
|
798 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/feeca0e9-029b-4c2d-b5b5-4764d621a3aa/width=450/7662228.jpeg"
|
799 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
"Eyes_Lora_Pony_Perfect_eyes": [
|
801 |
"eye_focus, close-up, solo, looking_at_viewer",
|
802 |
"Pony",
|
@@ -1196,6 +1210,13 @@
|
|
1196 |
"https://civitai.com/models/105656",
|
1197 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c568ea15-1c6d-4a01-bd64-0a7fc20630ea/width=450/7656377.jpeg"
|
1198 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1199 |
"IngAnimePony": [
|
1200 |
"",
|
1201 |
"Pony",
|
@@ -1896,6 +1917,13 @@
|
|
1896 |
"https://civitai.com/models/530390",
|
1897 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3bf960f6-578e-4dc4-93a9-a3fb96cc93e8/width=450/16749759.jpeg"
|
1898 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1899 |
"Pregao_v1_SDXL": [
|
1900 |
"pregao, 1girl, pregnant, small breasts, big breasts, big areola, dark nipples, lactation, sex, vaginal,",
|
1901 |
"SDXL 1.0",
|
@@ -3079,6 +3107,13 @@
|
|
3079 |
"https://civitai.com/models/361320",
|
3080 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/518bfce8-3d3b-433d-991c-fa6dc37d48a5/width=450/8322594.jpeg"
|
3081 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3082 |
"belko-XL-v31-ep20": [
|
3083 |
"",
|
3084 |
"SDXL 1.0",
|
@@ -3359,6 +3394,20 @@
|
|
3359 |
"https://civitai.com/models/388278",
|
3360 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4f67c762-36d9-4024-93d5-a5128f8d1190/width=450/16558171.jpeg"
|
3361 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3362 |
"buruma_Pony_V1_0": [
|
3363 |
"sgu,gym uniform / blue buruma / red buruma / green buruma",
|
3364 |
"Pony",
|
@@ -3450,6 +3499,13 @@
|
|
3450 |
"https://civitai.com/models/476691",
|
3451 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2c7f23f-fa78-4121-9ed7-37944c025ada/width=450/13846218.jpeg"
|
3452 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3453 |
"charming_bulge_pony-v1_0": [
|
3454 |
"nsfw,from behind,ass focus,nude,close-up,top-down_bottom-up,from below,",
|
3455 |
"Pony",
|
@@ -3513,6 +3569,20 @@
|
|
3513 |
"https://civitai.com/models/516752",
|
3514 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e73b7c72-0bdc-4a07-b05d-1ee95d3e9eaa/width=450/17239717.jpeg"
|
3515 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3516 |
"china_dress_Pony_V1_0": [
|
3517 |
"jyojifuku, china dress, skirt",
|
3518 |
"Pony",
|
@@ -3947,6 +4017,13 @@
|
|
3947 |
"https://civitai.com/models/603258",
|
3948 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
3949 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3950 |
"donbiki_XL_v1": [
|
3951 |
"donbiki",
|
3952 |
"SDXL 1.0",
|
@@ -4794,6 +4871,13 @@
|
|
4794 |
"https://civitai.com/models/445063",
|
4795 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bf48c337-2273-4e39-b8a6-088c386c0e86/width=450/11965557.jpeg"
|
4796 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4797 |
"jyojimizugi_Pony_V1_0": [
|
4798 |
"jyojimizugi,bikini,frills",
|
4799 |
"Pony",
|
@@ -6110,6 +6194,13 @@
|
|
6110 |
"https://civitai.com/models/460612",
|
6111 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/317fdc7f-6c93-4653-99db-11d85b027e03/width=450/12768924.jpeg"
|
6112 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6113 |
"ponyxl-small_penis_cross_section": [
|
6114 |
"x-ray, cross-section / small penis / foreskin / internal cumshot / deficient cum(*might be meaningless? not sure....) / excessive cum(*for more cum?) / cum in cervix(*cum might be less, might not fill uterus at all. maybe? unstable) / cum in uterus(*cum might fill uterus. can be unstable) / tiny penis, short penis, poor penis(*optional. maybe have some effect...? not sure)",
|
6115 |
"Pony",
|
@@ -6166,6 +6257,13 @@
|
|
6166 |
"https://civitai.com/models/540509",
|
6167 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d233b85a-1dfd-48d1-98eb-b758ef5079af/width=450/17360529.jpeg"
|
6168 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6169 |
"povsit": [
|
6170 |
"povsit / from below",
|
6171 |
"Pony",
|
|
|
797 |
"https://civitai.com/models/341353",
|
798 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/feeca0e9-029b-4c2d-b5b5-4764d621a3aa/width=450/7662228.jpeg"
|
799 |
],
|
800 |
+
"EyeLRslider": [
|
801 |
+
"",
|
802 |
+
"Pony",
|
803 |
+
"Eye movement control slider",
|
804 |
+
"https://civitai.com/models/795354",
|
805 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/76c7ac64-cc97-4370-bcb0-18ed183c6d95/width=450/31395741.jpeg"
|
806 |
+
],
|
807 |
+
"EyesUDslider": [
|
808 |
+
"",
|
809 |
+
"Pony",
|
810 |
+
"Eye movement control slider",
|
811 |
+
"https://civitai.com/models/795354",
|
812 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1ba5d639-b097-4b57-b5f1-59b13c7fa585/width=450/31395564.jpeg"
|
813 |
+
],
|
814 |
"Eyes_Lora_Pony_Perfect_eyes": [
|
815 |
"eye_focus, close-up, solo, looking_at_viewer",
|
816 |
"Pony",
|
|
|
1210 |
"https://civitai.com/models/105656",
|
1211 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c568ea15-1c6d-4a01-bd64-0a7fc20630ea/width=450/7656377.jpeg"
|
1212 |
],
|
1213 |
+
"Idealightbulb_XL_v1": [
|
1214 |
+
"Idea Light Bulb",
|
1215 |
+
"SDXL 1.0",
|
1216 |
+
"idea light bulb / \u3072\u3089\u3081\u304d / \u30a2\u30a4\u30c7\u30a3\u30a2 / \u96fb\u7403 / \u30d4\u30b3\u30fc\u30f3",
|
1217 |
+
"https://civitai.com/models/793420",
|
1218 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/038c0aa3-4af2-4e73-b98b-96c10dee7e94/width=450/31127077.jpeg"
|
1219 |
+
],
|
1220 |
"IngAnimePony": [
|
1221 |
"",
|
1222 |
"Pony",
|
|
|
1917 |
"https://civitai.com/models/530390",
|
1918 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3bf960f6-578e-4dc4-93a9-a3fb96cc93e8/width=450/16749759.jpeg"
|
1919 |
],
|
1920 |
+
"Precure_Maker_Pony": [
|
1921 |
+
"pretty cure",
|
1922 |
+
"Pony",
|
1923 |
+
"Precure Maker [Pony]",
|
1924 |
+
"https://civitai.com/models/766973",
|
1925 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a3d3feb4-7706-4350-9ed0-48d97ccd5d1e/width=450/31565381.jpeg"
|
1926 |
+
],
|
1927 |
"Pregao_v1_SDXL": [
|
1928 |
"pregao, 1girl, pregnant, small breasts, big breasts, big areola, dark nipples, lactation, sex, vaginal,",
|
1929 |
"SDXL 1.0",
|
|
|
3107 |
"https://civitai.com/models/361320",
|
3108 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/518bfce8-3d3b-433d-991c-fa6dc37d48a5/width=450/8322594.jpeg"
|
3109 |
],
|
3110 |
+
"bdp_ero_v1": [
|
3111 |
+
"bodypaint \\(ero\\)",
|
3112 |
+
"Pony",
|
3113 |
+
"(Pony) Body paint-erotic / \u8eab\u4f53\u306b\u843d\u66f8\u304d-\u30a8\u30ed",
|
3114 |
+
"https://civitai.com/models/817937",
|
3115 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f362acdb-ca31-4101-8b57-8504b93320a1/width=450/32417103.jpeg"
|
3116 |
+
],
|
3117 |
"belko-XL-v31-ep20": [
|
3118 |
"",
|
3119 |
"SDXL 1.0",
|
|
|
3394 |
"https://civitai.com/models/388278",
|
3395 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4f67c762-36d9-4024-93d5-a5128f8d1190/width=450/16558171.jpeg"
|
3396 |
],
|
3397 |
+
"burikko_pose_XL_V1_0": [
|
3398 |
+
"burikko pose, hands up",
|
3399 |
+
"SDXL 1.0",
|
3400 |
+
"\u3076\u308a\u3063\u5b50\u30dd\u30fc\u30ba",
|
3401 |
+
"https://civitai.com/models/774033",
|
3402 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dd29c97a-1e95-4186-8df5-632736cbae79/width=450/31573297.jpeg"
|
3403 |
+
],
|
3404 |
+
"burikko_pose_pony_V1_0": [
|
3405 |
+
"burikko pose, hands up,standing on one leg,smile",
|
3406 |
+
"Pony",
|
3407 |
+
"\u3076\u308a\u3063\u5b50\u30dd\u30fc\u30ba",
|
3408 |
+
"https://civitai.com/models/774033",
|
3409 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a40c5df4-a377-403e-bf7d-37a41348beef/width=450/30157247.jpeg"
|
3410 |
+
],
|
3411 |
"buruma_Pony_V1_0": [
|
3412 |
"sgu,gym uniform / blue buruma / red buruma / green buruma",
|
3413 |
"Pony",
|
|
|
3499 |
"https://civitai.com/models/476691",
|
3500 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2c7f23f-fa78-4121-9ed7-37944c025ada/width=450/13846218.jpeg"
|
3501 |
],
|
3502 |
+
"characterdoll_XL_v1": [
|
3503 |
+
"character doll",
|
3504 |
+
"SDXL 1.0",
|
3505 |
+
"character doll / stuffed toy / \u306c\u3044\u3050\u308b\u307f",
|
3506 |
+
"https://civitai.com/models/797851",
|
3507 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/abfb6de7-f725-4e32-87d0-9d70a3ee18b8/width=450/31357365.jpeg"
|
3508 |
+
],
|
3509 |
"charming_bulge_pony-v1_0": [
|
3510 |
"nsfw,from behind,ass focus,nude,close-up,top-down_bottom-up,from below,",
|
3511 |
"Pony",
|
|
|
3569 |
"https://civitai.com/models/516752",
|
3570 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e73b7c72-0bdc-4a07-b05d-1ee95d3e9eaa/width=450/17239717.jpeg"
|
3571 |
],
|
3572 |
+
"chikubi_karikari_v1_rev8-000035": [
|
3573 |
+
"chikubi_karikari, from front, nipple stimulation, (motion lines, sound effects:1.3), ${breasts size} / chikubi_karikari, from side, nipple stimulation, (motion lines, sound effects:1.3), ${breasts size} / chikubi_karikari, from below, nipple stimulation, (motion lines, sound effects:1.3), ${breasts size}",
|
3574 |
+
"Pony",
|
3575 |
+
"Nipple-Scratching / \u4e73\u9996\u30ab\u30ea\u30ab\u30ea\u30aa\u30ca\u30cb\u30fc",
|
3576 |
+
"https://civitai.com/models/812637",
|
3577 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/49b8dcbf-42fd-4255-9e17-3b8888d7fc41/width=450/32130653.jpeg"
|
3578 |
+
],
|
3579 |
+
"chikubi_karikari_v2_rev1-000035": [
|
3580 |
+
"chikubi_karikari, from front, nipple stimulation, (motion lines, sound effects:1.3), ${your desired breasts size} / chikubi_karikari, from side, nipple stimulation, (motion lines, sound effects:1.3), ${your desired breasts size} / chikubi_karikari, from below, nipple stimulation, (motion lines, sound effects:1.3), ${your desired breasts size} ",
|
3581 |
+
"Pony",
|
3582 |
+
"Nipple-Scratching / \u4e73\u9996\u30ab\u30ea\u30ab\u30ea\u30aa\u30ca\u30cb\u30fc",
|
3583 |
+
"https://civitai.com/models/812637",
|
3584 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25e5c86b-a6d1-4129-99be-d37ebcd43e4b/width=450/32617666.jpeg"
|
3585 |
+
],
|
3586 |
"china_dress_Pony_V1_0": [
|
3587 |
"jyojifuku, china dress, skirt",
|
3588 |
"Pony",
|
|
|
4017 |
"https://civitai.com/models/603258",
|
4018 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
4019 |
],
|
4020 |
+
"donbiki_Pony_v1": [
|
4021 |
+
"donbiki",
|
4022 |
+
"Pony",
|
4023 |
+
"[SDXL&Pony] disgust / \u30c9\u30f3\u5f15\u304d / \u990a\u8c5a\u5834\u306e\u8c5a\u3092\u898b\u308b\u3088\u3046\u306a\u76ee",
|
4024 |
+
"https://civitai.com/models/759232",
|
4025 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/01b45ffa-05fe-43c2-89c8-e8c663903187/width=450/31353003.jpeg"
|
4026 |
+
],
|
4027 |
"donbiki_XL_v1": [
|
4028 |
"donbiki",
|
4029 |
"SDXL 1.0",
|
|
|
4871 |
"https://civitai.com/models/445063",
|
4872 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bf48c337-2273-4e39-b8a6-088c386c0e86/width=450/11965557.jpeg"
|
4873 |
],
|
4874 |
+
"jyojifuku_XL_V2_0": [
|
4875 |
+
" jyojifuku, print clothes, pastel color clothes / print shirt / skirt / thighhighs / socks / backpack / shoes",
|
4876 |
+
"SDXL 1.0",
|
4877 |
+
"\u5973\u5150\u670d/girl's clothes(XL,Pony)",
|
4878 |
+
"https://civitai.com/models/445063",
|
4879 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9555de99-1fba-4af8-9cb2-f03f7ae6e094/width=450/32416800.jpeg"
|
4880 |
+
],
|
4881 |
"jyojimizugi_Pony_V1_0": [
|
4882 |
"jyojimizugi,bikini,frills",
|
4883 |
"Pony",
|
|
|
6194 |
"https://civitai.com/models/460612",
|
6195 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/317fdc7f-6c93-4653-99db-11d85b027e03/width=450/12768924.jpeg"
|
6196 |
],
|
6197 |
+
"pony_xl_ubw": [
|
6198 |
+
"ubw,gears,weapon,sword,planted,planted sword",
|
6199 |
+
"Pony",
|
6200 |
+
"UBW/\u7121\u9650\u306e\u5263\u88fd",
|
6201 |
+
"https://civitai.com/models/794642",
|
6202 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4780bd2c-df3c-49b7-b9be-0ac9b5e738e7/width=450/31182118.jpeg"
|
6203 |
+
],
|
6204 |
"ponyxl-small_penis_cross_section": [
|
6205 |
"x-ray, cross-section / small penis / foreskin / internal cumshot / deficient cum(*might be meaningless? not sure....) / excessive cum(*for more cum?) / cum in cervix(*cum might be less, might not fill uterus at all. maybe? unstable) / cum in uterus(*cum might fill uterus. can be unstable) / tiny penis, short penis, poor penis(*optional. maybe have some effect...? not sure)",
|
6206 |
"Pony",
|
|
|
6257 |
"https://civitai.com/models/540509",
|
6258 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d233b85a-1dfd-48d1-98eb-b758ef5079af/width=450/17360529.jpeg"
|
6259 |
],
|
6260 |
+
"pouring_XL_v2": [
|
6261 |
+
"pouring",
|
6262 |
+
"SDXL 1.0",
|
6263 |
+
"pouring / \u7d05\u8336\u6ce8\u304e",
|
6264 |
+
"https://civitai.com/models/819364",
|
6265 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/efe54e80-ea4e-4e47-8f92-a22c03575a54/width=450/32491845.jpeg"
|
6266 |
+
],
|
6267 |
"povsit": [
|
6268 |
"povsit / from below",
|
6269 |
"Pony",
|