John6666 commited on
Commit
eaf3496
·
verified ·
1 Parent(s): d6b9053

Upload 24 files

Browse files
Files changed (7) hide show
  1. README.md +15 -15
  2. app.py +6 -4
  3. constants.py +6 -1
  4. env.py +1 -0
  5. llmdolphin.py +60 -0
  6. lora_dict.json +161 -0
  7. requirements.txt +1 -1
README.md CHANGED
@@ -1,15 +1,15 @@
1
- ---
2
- title: test
3
- emoji: 🖼🖼️📦
4
- colorFrom: purple
5
- colorTo: red
6
- sdk: gradio
7
- sdk_version: 4.41.0
8
- app_file: app.py
9
- license: mit
10
- short_description: Text-to-Image
11
- pinned: false
12
- hf_oauth: true
13
- ---
14
-
15
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ ---
2
+ title: Votepurchase Multiple Model (SD1.5/SDXL Text-to-Image)
3
+ emoji: 🖼🖼️📦
4
+ colorFrom: purple
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 4.41.0
8
+ app_file: app.py
9
+ license: mit
10
+ short_description: Text-to-Image
11
+ pinned: true
12
+ hf_oauth: true
13
+ ---
14
+
15
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -48,6 +48,7 @@ css = """
48
 
49
  with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60, 3600)) as demo:
50
  gr.Markdown("# Votepurchase Multiple Model", elem_classes="title")
 
51
  with gr.Tab("Image Generator"):
52
  with gr.Column(elem_id="col-container"):
53
  with gr.Row():
@@ -223,14 +224,14 @@ with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60,
223
  api_name="infer_translate",
224
  ).success(
225
  fn=dolphin_respond_auto,
226
- inputs=[prompt, chatbot],
227
  outputs=[chatbot, result, prompt],
228
  queue=True,
229
  show_progress="full",
230
  show_api=False,
231
  ).success(
232
  fn=dolphin_parse_simple,
233
- inputs=[prompt, chatbot],
234
  outputs=[prompt],
235
  queue=False,
236
  show_api=False,
@@ -297,14 +298,15 @@ with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60,
297
  outputs=[prompt, negative_prompt],
298
  queue=False,
299
  trigger_mode="once",
 
300
  )
301
 
302
  model_detail.change(enable_diffusers_model_detail, [model_detail, model_name], [model_detail, model_name], queue=False, show_api=False)
303
  model_name.change(get_t2i_model_info, [model_name], [model_info], queue=False, show_api=False)
304
 
305
- chat_model.change(select_dolphin_model, [chat_model], [chat_model, chat_format, chat_model_info], queue=True, show_progress="full", show_api=False)\
306
  .success(lambda: None, None, chatbot, queue=False, show_api=False)
307
- chat_format.change(select_dolphin_format, [chat_format], [chat_format], queue=False, show_api=False)\
308
  .success(lambda: None, None, chatbot, queue=False, show_api=False)
309
 
310
  # Tagger
 
48
 
49
  with gr.Blocks(fill_width=True, elem_id="container", css=css, delete_cache=(60, 3600)) as demo:
50
  gr.Markdown("# Votepurchase Multiple Model", elem_classes="title")
51
+ state = gr.State(value={})
52
  with gr.Tab("Image Generator"):
53
  with gr.Column(elem_id="col-container"):
54
  with gr.Row():
 
224
  api_name="infer_translate",
225
  ).success(
226
  fn=dolphin_respond_auto,
227
+ inputs=[prompt, chatbot, state],
228
  outputs=[chatbot, result, prompt],
229
  queue=True,
230
  show_progress="full",
231
  show_api=False,
232
  ).success(
233
  fn=dolphin_parse_simple,
234
+ inputs=[prompt, chatbot, state],
235
  outputs=[prompt],
236
  queue=False,
237
  show_api=False,
 
298
  outputs=[prompt, negative_prompt],
299
  queue=False,
300
  trigger_mode="once",
301
+ show_api=False,
302
  )
303
 
304
  model_detail.change(enable_diffusers_model_detail, [model_detail, model_name], [model_detail, model_name], queue=False, show_api=False)
305
  model_name.change(get_t2i_model_info, [model_name], [model_info], queue=False, show_api=False)
306
 
307
+ chat_model.change(select_dolphin_model, [chat_model, state], [chat_model, chat_format, chat_model_info, state], queue=True, show_progress="full", show_api=False)\
308
  .success(lambda: None, None, chatbot, queue=False, show_api=False)
309
+ chat_format.change(select_dolphin_format, [chat_format, state], [chat_format, state], queue=False, show_api=False)\
310
  .success(lambda: None, None, chatbot, queue=False, show_api=False)
311
 
312
  # Tagger
constants.py CHANGED
@@ -35,6 +35,8 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
35
  'John6666/noobai-xl-nai-xl-vpredtestversion-sdxl',
36
  'John6666/chadmix-noobai075-illustrious01-v10-sdxl',
37
  'OnomaAIResearch/Illustrious-xl-early-release-v0',
 
 
38
  'John6666/obsession-illustriousxl-v21-sdxl',
39
  'eienmojiki/Anything-XL',
40
  'eienmojiki/Starry-XL-v5.2',
@@ -113,6 +115,7 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
113
  DIFFUSERS_FORMAT_LORAS = [
114
  "nerijs/animation2k-flux",
115
  "XLabs-AI/flux-RealismLora",
 
116
  ]
117
 
118
  DOWNLOAD_EMBEDS = [
@@ -288,7 +291,9 @@ MODEL_TYPE_CLASS = {
288
  "diffusers:FluxPipeline": "FLUX",
289
  }
290
 
291
- POST_PROCESSING_SAMPLER = ["Use same sampler"] + scheduler_names[:-2]
 
 
292
 
293
  SUBTITLE_GUI = (
294
  "### This demo uses [diffusers](https://github.com/huggingface/diffusers)"
 
35
  'John6666/noobai-xl-nai-xl-vpredtestversion-sdxl',
36
  'John6666/chadmix-noobai075-illustrious01-v10-sdxl',
37
  'OnomaAIResearch/Illustrious-xl-early-release-v0',
38
+ 'John6666/illustriousxl-mmmix-v50-sdxl',
39
+ 'John6666/illustrious-pencil-xl-v200-sdxl',
40
  'John6666/obsession-illustriousxl-v21-sdxl',
41
  'eienmojiki/Anything-XL',
42
  'eienmojiki/Starry-XL-v5.2',
 
115
  DIFFUSERS_FORMAT_LORAS = [
116
  "nerijs/animation2k-flux",
117
  "XLabs-AI/flux-RealismLora",
118
+ "Shakker-Labs/FLUX.1-dev-LoRA-Logo-Design",
119
  ]
120
 
121
  DOWNLOAD_EMBEDS = [
 
291
  "diffusers:FluxPipeline": "FLUX",
292
  }
293
 
294
+ POST_PROCESSING_SAMPLER = ["Use same sampler"] + [
295
+ name_s for name_s in scheduler_names if "Auto-Loader" not in name_s
296
+ ]
297
 
298
  SUBTITLE_GUI = (
299
  "### This demo uses [diffusers](https://github.com/huggingface/diffusers)"
env.py CHANGED
@@ -142,6 +142,7 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
142
  'Raelina/Raemu-XL-V4',
143
  'Raelina/Raehoshi-illust-XL',
144
  'Raelina/Raehoshi-illust-xl-2',
 
145
  "camenduru/FLUX.1-dev-diffusers",
146
  "black-forest-labs/FLUX.1-schnell",
147
  "sayakpaul/FLUX.1-merged",
 
142
  'Raelina/Raemu-XL-V4',
143
  'Raelina/Raehoshi-illust-XL',
144
  'Raelina/Raehoshi-illust-xl-2',
145
+ 'Raelina/Raehoshi-Illust-XL-2.1',
146
  "camenduru/FLUX.1-dev-diffusers",
147
  "black-forest-labs/FLUX.1-schnell",
148
  "sayakpaul/FLUX.1-merged",
llmdolphin.py CHANGED
@@ -28,6 +28,7 @@ llm_models = {
28
  "MN-Chinofun-12B-2.i1-Q4_K_M.gguf": ["mradermacher/MN-Chinofun-12B-2-i1-GGUF", MessagesFormatterType.MISTRAL],
29
  "Mahou-1.5-mistral-nemo-12B.i1-Q4_K_M.gguf": ["mradermacher/Mahou-1.5-mistral-nemo-12B-i1-GGUF", MessagesFormatterType.MISTRAL],
30
  "MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
 
31
  "Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
32
  "Instant-RP-Noodles-12B-v1.3.Q4_K_M.gguf": ["mradermacher/Instant-RP-Noodles-12B-v1.3-GGUF", MessagesFormatterType.MISTRAL],
33
  "MN-BackyardAI-Party-12B-v1.i1-Q5_K_M.gguf": ["mradermacher/MN-BackyardAI-Party-12B-v1-i1-GGUF", MessagesFormatterType.MISTRAL],
@@ -67,11 +68,70 @@ llm_models = {
67
  "MN-12B-Vespa-x1.i1-Q4_K_M.gguf": ["mradermacher/MN-12B-Vespa-x1-i1-GGUF", MessagesFormatterType.CHATML],
68
  "Rocinante-12B-v2h-Q4_K_M.gguf": ["BeaverAI/Rocinante-12B-v2h-GGUF", MessagesFormatterType.MISTRAL],
69
  "Mistral-Nemo-12B-ArliAI-RPMax-v1.1.i1-Q4_K_M.gguf": ["mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.1-i1-GGUF", MessagesFormatterType.MISTRAL],
 
70
  "Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
 
71
  "ChatWaifu_12B_v2.0.Q5_K_M.gguf": ["mradermacher/ChatWaifu_12B_v2.0-GGUF", MessagesFormatterType.MISTRAL],
72
  "ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
73
  "ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
74
  "ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  "Magnum_Dark_Madness_12b.Q4_K_S.gguf": ["mradermacher/Magnum_Dark_Madness_12b-GGUF", MessagesFormatterType.MISTRAL],
76
  "Magnum_Lyra_Darkness_12b.Q4_K_M.gguf": ["mradermacher/Magnum_Lyra_Darkness_12b-GGUF", MessagesFormatterType.MISTRAL],
77
  "Heart_Stolen-8B-task.i1-Q4_K_M.gguf": ["mradermacher/Heart_Stolen-8B-task-i1-GGUF", MessagesFormatterType.LLAMA_3],
 
28
  "MN-Chinofun-12B-2.i1-Q4_K_M.gguf": ["mradermacher/MN-Chinofun-12B-2-i1-GGUF", MessagesFormatterType.MISTRAL],
29
  "Mahou-1.5-mistral-nemo-12B.i1-Q4_K_M.gguf": ["mradermacher/Mahou-1.5-mistral-nemo-12B-i1-GGUF", MessagesFormatterType.MISTRAL],
30
  "MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
31
+ "Qwen-modelstock-15B.i1-Q4_K_M.gguf": ["mradermacher/Qwen-modelstock-15B-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
32
  "Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
33
  "Instant-RP-Noodles-12B-v1.3.Q4_K_M.gguf": ["mradermacher/Instant-RP-Noodles-12B-v1.3-GGUF", MessagesFormatterType.MISTRAL],
34
  "MN-BackyardAI-Party-12B-v1.i1-Q5_K_M.gguf": ["mradermacher/MN-BackyardAI-Party-12B-v1-i1-GGUF", MessagesFormatterType.MISTRAL],
 
68
  "MN-12B-Vespa-x1.i1-Q4_K_M.gguf": ["mradermacher/MN-12B-Vespa-x1-i1-GGUF", MessagesFormatterType.CHATML],
69
  "Rocinante-12B-v2h-Q4_K_M.gguf": ["BeaverAI/Rocinante-12B-v2h-GGUF", MessagesFormatterType.MISTRAL],
70
  "Mistral-Nemo-12B-ArliAI-RPMax-v1.1.i1-Q4_K_M.gguf": ["mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.1-i1-GGUF", MessagesFormatterType.MISTRAL],
71
+ "Pans_Gutenbergum_V0.1.Q4_K_M.gguf": ["mradermacher/Pans_Gutenbergum_V0.1-GGUF", MessagesFormatterType.MISTRAL],
72
  "Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
73
+ "ChatWaifu_Magnum_V0.2.Q4_K_M.gguf": ["mradermacher/ChatWaifu_Magnum_V0.2-GGUF", MessagesFormatterType.MISTRAL],
74
  "ChatWaifu_12B_v2.0.Q5_K_M.gguf": ["mradermacher/ChatWaifu_12B_v2.0-GGUF", MessagesFormatterType.MISTRAL],
75
  "ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
76
  "ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
77
  "ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
78
+ "Fraken-Maid-TW-Slerp.i1-Q5_K_M.gguf": ["mradermacher/Fraken-Maid-TW-Slerp-i1-GGUF", MessagesFormatterType.MISTRAL],
79
+ "KunoichiLake-2x7b.Q4_K_M.gguf": ["mradermacher/KunoichiLake-2x7b-GGUF", MessagesFormatterType.MISTRAL],
80
+ "Llama-3.1-SuperNova-8B-Lite_TIES_with_Base-Q4_K_M.gguf": ["bartowski/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base-GGUF", MessagesFormatterType.LLAMA_3],
81
+ "blossom-v4-qwen-14b.Q4_K_M.gguf": ["mradermacher/blossom-v4-qwen-14b-GGUF", MessagesFormatterType.OPEN_CHAT],
82
+ "Cookie_7B.Q5_K_M.gguf": ["mradermacher/Cookie_7B-GGUF", MessagesFormatterType.MISTRAL],
83
+ "Sejong-Qwen-v5.Q5_K_M.gguf": ["mradermacher/Sejong-Qwen-v5-GGUF", MessagesFormatterType.OPEN_CHAT],
84
+ "Triunvirato-7b.i1-Q5_K_M.gguf": ["mradermacher/Triunvirato-7b-i1-GGUF", MessagesFormatterType.MISTRAL],
85
+ "Qwen2.5-7B-CyberRombos.i1-Q5_K_M.gguf": ["mradermacher/Qwen2.5-7B-CyberRombos-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
86
+ "G2-9B-Aletheia-v1.i1-Q4_K_M.gguf": ["mradermacher/G2-9B-Aletheia-v1-i1-GGUF", MessagesFormatterType.ALPACA],
87
+ "Qwen2.5-14B-UpToDate.i1-Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B-UpToDate-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
88
+ "Mistral-T5-7B-v1.Q4_K_M.gguf": ["mradermacher/Mistral-T5-7B-v1-GGUF", MessagesFormatterType.MISTRAL],
89
+ "NM-StarUnleashed.i1-Q4_K_M.gguf": ["mradermacher/NM-StarUnleashed-i1-GGUF", MessagesFormatterType.CHATML],
90
+ "WestLake-7B-v2-laser.i1-Q5_K_M.gguf": ["mradermacher/WestLake-7B-v2-laser-i1-GGUF", MessagesFormatterType.MISTRAL],
91
+ "Top-Western-Maid-7B.i1-Q4_K_M.gguf": ["mradermacher/Top-Western-Maid-7B-i1-GGUF", MessagesFormatterType.MISTRAL],
92
+ "MarcoHermes.i1-Q4_K_M.gguf": ["mradermacher/MarcoHermes-i1-GGUF", MessagesFormatterType.MISTRAL],
93
+ "Mayoroya.i1-Q4_K_M.gguf": ["mradermacher/Mayoroya-i1-GGUF", MessagesFormatterType.MISTRAL],
94
+ "NeuraLake-m7-v2-7B.i1-Q5_K_M.gguf": ["mradermacher/NeuraLake-m7-v2-7B-i1-GGUF", MessagesFormatterType.MISTRAL],
95
+ "Loyal-Macaroni-Maid-7B.Q5_K_M.gguf": ["mradermacher/Loyal-Macaroni-Maid-7B-GGUF", MessagesFormatterType.MISTRAL],
96
+ "NeuraLake-m7-7B.i1-Q5_K_M.gguf": ["mradermacher/NeuraLake-m7-7B-i1-GGUF", MessagesFormatterType.MISTRAL],
97
+ "Nero-7B-slerp.i1-Q5_K_M.gguf": ["mradermacher/Nero-7B-slerp-i1-GGUF", MessagesFormatterType.MISTRAL],
98
+ "MarcoroCapy-7B.Q5_K_M.gguf": ["mradermacher/MarcoroCapy-7B-GGUF", MessagesFormatterType.MISTRAL],
99
+ "KunaiBeagle-Hermes-7b.Q5_K_M.gguf": ["mradermacher/KunaiBeagle-Hermes-7b-GGUF", MessagesFormatterType.MISTRAL],
100
+ "CapyLake-7B-v2-laser.Q5_K_M.gguf": ["mradermacher/CapyLake-7B-v2-laser-GGUF", MessagesFormatterType.MISTRAL],
101
+ "OmniBeagleMBX-v3-7B.Q5_K_M.gguf": ["mradermacher/OmniBeagleMBX-v3-7B-GGUF", MessagesFormatterType.MISTRAL],
102
+ "Omnarch-7B.Q5_K_M.gguf": ["mradermacher/Omnarch-7B-GGUF", MessagesFormatterType.MISTRAL],
103
+ "FoFoNet-SuperMayo-MBX-slerp.Q5_K_M.gguf": ["mradermacher/FoFoNet-SuperMayo-MBX-slerp-GGUF", MessagesFormatterType.MISTRAL],
104
+ "culturalmixer.Q5_K_M.gguf": ["mradermacher/culturalmixer-GGUF", MessagesFormatterType.MISTRAL],
105
+ "Qwen2.5-7B-task2.i1-Q5_K_M.gguf": ["mradermacher/Qwen2.5-7B-task2-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
106
+ "FoFoNet-SuperMBX-slerp.Q5_K_M.gguf": ["mradermacher/FoFoNet-SuperMBX-slerp-GGUF", MessagesFormatterType.MISTRAL],
107
+ "Llama-3.2-3B-Apex.i1-Q5_K_M.gguf": ["mradermacher/Llama-3.2-3B-Apex-i1-GGUF", MessagesFormatterType.LLAMA_3],
108
+ "lumimaid-8B-autotrain.i1-Q5_K_M.gguf": ["mradermacher/lumimaid-8B-autotrain-i1-GGUF", MessagesFormatterType.LLAMA_3],
109
+ "NeuralHermes-2.5-AshhLimaRP-Mistral-7B.Q5_K_M.gguf": ["mradermacher/NeuralHermes-2.5-AshhLimaRP-Mistral-7B-GGUF", MessagesFormatterType.LLAMA_3],
110
+ "CrystalMistralv2.5.Q5_K_M.gguf": ["mradermacher/CrystalMistralv2.5-GGUF", MessagesFormatterType.MISTRAL],
111
+ "Llama-3-Aetheric-Hermes-Lexi-Smaug-8B.Q5_K_M.gguf": ["mradermacher/Llama-3-Aetheric-Hermes-Lexi-Smaug-8B-GGUF", MessagesFormatterType.LLAMA_3],
112
+ "Qwen2.5-3B-Loki.Q5_K_M.gguf": ["mradermacher/Qwen2.5-3B-Loki-GGUF", MessagesFormatterType.OPEN_CHAT],
113
+ "L3.2-Rogue-Creative-Instruct-Uncensored-Abliterated-7B.Q5_K_M.gguf": ["mradermacher/L3.2-Rogue-Creative-Instruct-Uncensored-Abliterated-7B-GGUF", MessagesFormatterType.LLAMA_3],
114
+ "G2-9B-Sugarquill-v0.i1-Q4_K_M.gguf": ["mradermacher/G2-9B-Sugarquill-v0-i1-GGUF", MessagesFormatterType.ALPACA],
115
+ "medius-erebus-magnum-14b.i1-Q4_K_M.gguf": ["mradermacher/medius-erebus-magnum-14b-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
116
+ "L3.1-Start-10B.Q4_K_M.gguf": ["mradermacher/L3.1-Start-10B-GGUF", MessagesFormatterType.LLAMA_3],
117
+ "cybertron-v4-qw7B-MGS-Q5_K_M.gguf": ["bartowski/cybertron-v4-qw7B-MGS-GGUF", MessagesFormatterType.OPEN_CHAT],
118
+ "CompassJudger-1-14B-Instruct.Q4_K_M.gguf": ["mradermacher/CompassJudger-1-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
119
+ "FIxtral.0.2.Q5_K_M.gguf": ["mradermacher/FIxtral.0.2-GGUF", MessagesFormatterType.MISTRAL],
120
+ "Starcannon-Unleashed-12B-v1.0.Q4_K_M.gguf": ["mradermacher/Starcannon-Unleashed-12B-v1.0-GGUF", MessagesFormatterType.MISTRAL],
121
+ "Rombos-Qwen2.5-7B-Inst-BaseMerge-TIES.Q5_K_M.gguf": ["mradermacher/Rombos-Qwen2.5-7B-Inst-BaseMerge-TIES-GGUF", MessagesFormatterType.OPEN_CHAT],
122
+ "WIP_Damascus-8B-TIES.i1-Q5_K_M.gguf": ["mradermacher/WIP_Damascus-8B-TIES-i1-GGUF", MessagesFormatterType.LLAMA_3],
123
+ "Qwen2.5_7B_IST_StoryGen_vanilla.i1-Q5_K_M.gguf": ["mradermacher/Qwen2.5_7B_IST_StoryGen_vanilla-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
124
+ "Supernova-Blackhole_V0.1.i1-Q5_K_M.gguf": ["mradermacher/Supernova-Blackhole_V0.1-i1-GGUF", MessagesFormatterType.LLAMA_3],
125
+ "Gemmaslerp2-9B.i1-Q4_K_M.gguf": ["mradermacher/Gemmaslerp2-9B-i1-GGUF", MessagesFormatterType.ALPACA],
126
+ "Eidolon-v3-14B.i1-Q4_K_M.gguf": ["mradermacher/Eidolon-v3-14B-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
127
+ "MN-WORDSTORM-pt4-RCM-Cliffhanger-18.5B-Instruct.i1-Q4_K_M.gguf": ["mradermacher/MN-WORDSTORM-pt4-RCM-Cliffhanger-18.5B-Instruct-i1-GGUF", MessagesFormatterType.MISTRAL],
128
+ "MN-WORDSTORM-pt5-RCM-Extra-Intense-18.5B-Instruct.i1-Q4_K_M.gguf": ["mradermacher/MN-WORDSTORM-pt5-RCM-Extra-Intense-18.5B-Instruct-i1-GGUF", MessagesFormatterType.MISTRAL],
129
+ "UnslopNemo-12B-v4.1.i1-Q4_K_M.gguf": ["mradermacher/UnslopNemo-12B-v4.1-i1-GGUF", MessagesFormatterType.MISTRAL],
130
+ "MFANN-Llama3.1-Abliterated-Slerp-V3.2.Q5_K_M.gguf": ["mradermacher/MFANN-Llama3.1-Abliterated-Slerp-V3.2-GGUF", MessagesFormatterType.LLAMA_3],
131
+ "MFANN-Llama3.1-Abliterated-Slerp-TIES.Q5_K_M.gguf": ["mradermacher/MFANN-Llama3.1-Abliterated-Slerp-TIES-GGUF", MessagesFormatterType.LLAMA_3],
132
+ "Qwenslerp1-7B.i1-Q4_K_M.gguf": ["mradermacher/Qwenslerp1-7B-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
133
+ "Qwen-modelstock2-15B.Q4_K_M.gguf": ["mradermacher/Qwen-modelstock2-15B-GGUF", MessagesFormatterType.OPEN_CHAT],
134
+ "Magnum_HomieMaid_DPO_12b.Q4_K_M.gguf": ["mradermacher/Magnum_HomieMaid_DPO_12b-GGUF", MessagesFormatterType.MISTRAL],
135
  "Magnum_Dark_Madness_12b.Q4_K_S.gguf": ["mradermacher/Magnum_Dark_Madness_12b-GGUF", MessagesFormatterType.MISTRAL],
136
  "Magnum_Lyra_Darkness_12b.Q4_K_M.gguf": ["mradermacher/Magnum_Lyra_Darkness_12b-GGUF", MessagesFormatterType.MISTRAL],
137
  "Heart_Stolen-8B-task.i1-Q4_K_M.gguf": ["mradermacher/Heart_Stolen-8B-task-i1-GGUF", MessagesFormatterType.LLAMA_3],
lora_dict.json CHANGED
@@ -1273,6 +1273,13 @@
1273
  "https://civitai.com/models/517566",
1274
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/05585176-3473-4b64-89ff-6cb7209c0585/width=450/19516227.jpeg"
1275
  ],
 
 
 
 
 
 
 
1276
  "JAV_GTJ130_Pony_V1": [
1277
  "1girl, solo forcas, nude, Simple background, black background, depth of field, (vomiting), rope, bondage, arms behind back, spread legs, shibari, breast bondage, Crying, tears, cum, facial, cumdrip, sex, anal sex, 1 boy, hetero, large penis, large insertion, large penis, thick penis, vaginal, deepthroat, black bed , toilet, black mattress, crying, tears, / deepthroat,oral,Portrait, (close-up face), Crying, tears, cum, facial, cum in mouth, parted lips, cum string, saliva, cumdrip, forehead,cock in mouth / deepthroat,oral,cowboy shot, toilet, forehead, cock in mouth, Stringy drool, saliva / after fellatio, Portrait,(close-up mouth), tongue, foam, open mouth, (cum in mouth), tongue out, soap bubbles, crying, tears / sex, 2+boys, Multiple penises, nude,cum, bukkake, facial, oral, fellatio, lying, on back, rope, bondage, arms behind back, bound arms, bound wrists, open mouth, cum in mouth,on bed, hetero, kneeling, arched back, all fours / open mouth, hetero, multiple boys, facial, group sex, close-up mouth, sweat, multiple penises, tongue out, pee, peeing, Water Play / sex, 1boy, hetero, toilet, bound, rope, penis, spread legs, legs up, restrained, arms behind back, suspension, large insertion, large penis, thick penis / sex, 1boy, hetero, bed, rope, bdsm, bondage, bound, vaginal, spread legs, lying, asphyxiation, large insertion, large penis, thick penis / toilet, bdsm, bondage, bound, breasts, nipples, nude, rope, arms behind back, shibari, legs up, suspension, sitting, spread legs, spread_pussy, Urethral, close up pussy, detailed pussy, gaping pussy, detailed anus, gaping anus, pussy juice trail",
1278
  "Pony",
@@ -2960,6 +2967,13 @@
2960
  "https://civitai.com/models/569468",
2961
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6eae53b1-37c8-478a-a3c9-5a6ecafccebe/width=450/19246209.jpeg"
2962
  ],
 
 
 
 
 
 
 
2963
  "apron_XL_V1_0": [
2964
  "apron / filrds",
2965
  "SDXL 1.0",
@@ -3779,6 +3793,13 @@
3779
  "https://civitai.com/models/633914",
3780
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/095ac00b-32f3-4c07-8afa-f95c5ac6a8fd/width=450/23473842.jpeg"
3781
  ],
 
 
 
 
 
 
 
3782
  "concept_wombwriting-pony-rls": [
3783
  "womb writing",
3784
  "Pony",
@@ -4003,6 +4024,13 @@
4003
  "https://civitai.com/models/628775",
4004
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83566548-b845-4d8b-a0d0-be8cc8822a81/width=450/23142557.jpeg"
4005
  ],
 
 
 
 
 
 
 
4006
  "danmen_illustrious_V1_0": [
4007
  "danmen,penis,vaginal / uterus / x-ray / cross-section / internal cumshot",
4008
  "Illustrious",
@@ -4017,6 +4045,13 @@
4017
  "https://civitai.com/models/853101",
4018
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9bbdb650-67f6-4b7a-b020-2f1b15363919/width=450/34507990.jpeg"
4019
  ],
 
 
 
 
 
 
 
4020
  "dawa": [
4021
  "dawa",
4022
  "SDXL 1.0",
@@ -4045,6 +4080,20 @@
4045
  "https://civitai.com/models/838545",
4046
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4611cac5-7c02-484c-9937-a4b7fb5c3817/width=450/33675457.jpeg"
4047
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4048
  "deflowered_pony": [
4049
  "1woman, perfect face, fully nude, imminent penetration:1.4, deflowered:1.1, blood on thighs, blood dripping, semen, cum, overflow:1.2, / 1male, huge penis, large testicles, / female pubic hair, uncensored pussy, hairy pussy, blush / <lora:deflowered_pony:0.7>,",
4050
  "Pony",
@@ -4423,6 +4472,13 @@
4423
  "https://civitai.com/models/577378",
4424
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/459bd20d-a9d6-4a0b-8947-7dcebc061c0f/width=450/19781986.jpeg"
4425
  ],
 
 
 
 
 
 
 
4426
  "genbaneko_v4_illustrious_uo_1024-000040": [
4427
  "genbaneko / cat, headwear, hat, grey headwear, baseball cap, / speech bubble, speech text,",
4428
  "SDXL 1.0",
@@ -4563,6 +4619,13 @@
4563
  "https://civitai.com/models/32541",
4564
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a02818c5-568b-4da2-a6f3-0c54f3fd604d/width=450/16910321.jpeg"
4565
  ],
 
 
 
 
 
 
 
4566
  "guided_penetration_pony_V1_0": [
4567
  "",
4568
  "Pony",
@@ -4871,6 +4934,13 @@
4871
  "https://civitai.com/models/498731",
4872
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/06a0dc3a-42ba-42b5-9ea9-d6b6faa3543b/width=450/14812284.jpeg"
4873
  ],
 
 
 
 
 
 
 
4874
  "hotarueye_xl_tareme1_v10": [
4875
  "",
4876
  "Pony",
@@ -5011,6 +5081,13 @@
5011
  "https://civitai.com/models/637685",
5012
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/94123112-87d5-43fb-9f06-06e621b237bc/width=450/23732178.jpeg"
5013
  ],
 
 
 
 
 
 
 
5014
  "infundibulum_insertion_pony_V1_0": [
5015
  "infundibulum insertion",
5016
  "Pony",
@@ -5648,6 +5725,13 @@
5648
  "https://civitai.com/models/488098",
5649
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/58767062-22a1-4f52-ac2e-7f01fae26908/width=450/14206684.jpeg"
5650
  ],
 
 
 
 
 
 
 
5651
  "manguri_Pony_V1_0": [
5652
  "manguri / legs up / folded / spread legs / upside-down / legs together / knee to chest",
5653
  "Pony",
@@ -6824,6 +6908,20 @@
6824
  "https://civitai.com/models/570003",
6825
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/100c8fcb-077b-4ef0-9bf3-41082f1ce453/width=450/19285744.jpeg"
6826
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6827
  "ribbon-trimmed_underwear_3-000010": [
6828
  "ribbon-trimmed bra / ribbon-trimmed panties",
6829
  "SD 1.5",
@@ -6852,6 +6950,13 @@
6852
  "https://civitai.com/models/554166",
6853
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ac359acf-7294-4f2c-bf7f-708379deebdb/width=450/18275119.jpeg"
6854
  ],
 
 
 
 
 
 
 
6855
  "rouka_SDXL_V2": [
6856
  "rouka, hallway, window, scenery, school, reflective floor, indoors, door, reflection, building, tiles, tile floor, sunlight, day, ceiling light, realistic / rouka",
6857
  "SDXL 1.0",
@@ -7027,6 +7132,20 @@
7027
  "https://civitai.com/models/311263",
7028
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/27503dd2-9b3b-44d5-8f30-fd7a1be2668b/width=450/8190285.jpeg"
7029
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7030
  "sento": [
7031
  "sento",
7032
  "Pony",
@@ -7083,6 +7202,20 @@
7083
  "https://civitai.com/models/834937",
7084
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a4fd210d-90db-4995-8868-482e597fe927/width=450/33459038.jpeg"
7085
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7086
  "shiReroVT1": [
7087
  "shirerocrazy, cross-eyed, tongue, cherry on tongue, saliva, tongue out, looking at viewer, open mouth, parody, cherry, ",
7088
  "Pony",
@@ -7230,6 +7363,13 @@
7230
  "https://civitai.com/models/574708",
7231
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/557c4224-c6c8-4b71-b6fe-adc82e552f25/width=450/19613178.jpeg"
7232
  ],
 
 
 
 
 
 
 
7233
  "soap_bubbles_pony_V1_0": [
7234
  "soap bubbles / soap",
7235
  "Pony",
@@ -7650,6 +7790,20 @@
7650
  "https://civitai.com/models/349716",
7651
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dec948dc-ac1b-4918-90ac-fe35daaf6d63/width=450/7927405.jpeg"
7652
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7653
  "tears_XL_V1_0": [
7654
  "tears",
7655
  "SDXL 1.0",
@@ -7776,6 +7930,13 @@
7776
  "https://civitai.com/models/499436",
7777
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8f4ac8a2-2034-4c53-9d20-fc2108840cf5/width=450/14855524.jpeg"
7778
  ],
 
 
 
 
 
 
 
7779
  "topanglexl16": [
7780
  "above / from above",
7781
  "SDXL 1.0",
 
1273
  "https://civitai.com/models/517566",
1274
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/05585176-3473-4b64-89ff-6cb7209c0585/width=450/19516227.jpeg"
1275
  ],
1276
+ "JAV_DDT636_643_Pony_V1": [
1277
+ "1girl, legs up, m legs, licking, slave, spread legs, wide spread legs, nude, abuse, crying, screaming, shiny skin, drooling, saliva, 2boys, mmf threesome, hetero, dirty, dildo, vibrator, oral, cunnilingus, bdsm, ankle cuffs , chain , bondage, bound, restrained, stationary restraints against wall, bound ankles, bound arms, bound legs, bound wrists, chained, / 1girl, legs up, m legs, licking, slave, spread legs, wide spread legs, nude, abuse, crying, ((screaming)), shiny skin, drooling, saliva, 2boys, mmf threesome, hetero, dirty, bdsm, ankle cuffs , chain , bondage, bound, restrained, stationary restraints against wall, bound ankles, bound arms, bound legs, bound wrists, chained, (pov:1.25), (sex), large insertion, large penis, thick penis, ",
1278
+ "Pony",
1279
+ "JAV HARD BDSM Generator (bondage wall ) Pony XL | \u62d8\u675f\u5c11\u5973\u5feb\u697d\u62f7\u554f \u30a2\u30c0\u30eb\u30c8 \u30d3\u30c7\u30aa \u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc",
1280
+ "https://civitai.com/models/903161",
1281
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/46a8fa98-4746-4185-89d5-f50c4b87ae71/width=450/37421621.jpeg"
1282
+ ],
1283
  "JAV_GTJ130_Pony_V1": [
1284
  "1girl, solo forcas, nude, Simple background, black background, depth of field, (vomiting), rope, bondage, arms behind back, spread legs, shibari, breast bondage, Crying, tears, cum, facial, cumdrip, sex, anal sex, 1 boy, hetero, large penis, large insertion, large penis, thick penis, vaginal, deepthroat, black bed , toilet, black mattress, crying, tears, / deepthroat,oral,Portrait, (close-up face), Crying, tears, cum, facial, cum in mouth, parted lips, cum string, saliva, cumdrip, forehead,cock in mouth / deepthroat,oral,cowboy shot, toilet, forehead, cock in mouth, Stringy drool, saliva / after fellatio, Portrait,(close-up mouth), tongue, foam, open mouth, (cum in mouth), tongue out, soap bubbles, crying, tears / sex, 2+boys, Multiple penises, nude,cum, bukkake, facial, oral, fellatio, lying, on back, rope, bondage, arms behind back, bound arms, bound wrists, open mouth, cum in mouth,on bed, hetero, kneeling, arched back, all fours / open mouth, hetero, multiple boys, facial, group sex, close-up mouth, sweat, multiple penises, tongue out, pee, peeing, Water Play / sex, 1boy, hetero, toilet, bound, rope, penis, spread legs, legs up, restrained, arms behind back, suspension, large insertion, large penis, thick penis / sex, 1boy, hetero, bed, rope, bdsm, bondage, bound, vaginal, spread legs, lying, asphyxiation, large insertion, large penis, thick penis / toilet, bdsm, bondage, bound, breasts, nipples, nude, rope, arms behind back, shibari, legs up, suspension, sitting, spread legs, spread_pussy, Urethral, close up pussy, detailed pussy, gaping pussy, detailed anus, gaping anus, pussy juice trail",
1285
  "Pony",
 
2967
  "https://civitai.com/models/569468",
2968
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6eae53b1-37c8-478a-a3c9-5a6ecafccebe/width=450/19246209.jpeg"
2969
  ],
2970
+ "anti25d_xl_v10": [
2971
+ "",
2972
+ "Pony",
2973
+ "[SDXL] Convert 2.5D to 2D / 2.5D\u21922D\u5909\u63db",
2974
+ "https://civitai.com/models/914453",
2975
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e6487d07-0423-4a72-8817-72d81d489b8a/width=450/38108964.jpeg"
2976
+ ],
2977
  "apron_XL_V1_0": [
2978
  "apron / filrds",
2979
  "SDXL 1.0",
 
3793
  "https://civitai.com/models/633914",
3794
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/095ac00b-32f3-4c07-8afa-f95c5ac6a8fd/width=450/23473842.jpeg"
3795
  ],
3796
+ "competitive_Swimsuit_illustrious_V1_0": [
3797
+ " competitive swimsuit",
3798
+ "Illustrious",
3799
+ "\u7af6\u6cf3\u6c34\u7740/competitive swimsuit",
3800
+ "https://civitai.com/models/552104",
3801
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e1cfe19c-df2b-4f7b-b1d0-23d1f5a457a7/width=450/38086508.jpeg"
3802
+ ],
3803
  "concept_wombwriting-pony-rls": [
3804
  "womb writing",
3805
  "Pony",
 
4024
  "https://civitai.com/models/628775",
4025
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83566548-b845-4d8b-a0d0-be8cc8822a81/width=450/23142557.jpeg"
4026
  ],
4027
+ "danmen(double)_pony_V1_0": [
4028
+ "cross-section, rectum, uterus, cervix, x-ray, sex, penis, vaginal / dounble insertion",
4029
+ "Pony",
4030
+ "\u65ad\u9762\u56f3(\u4e8c\u7a74)/uterus(double insertion)",
4031
+ "https://civitai.com/models/889276",
4032
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/336a5b39-3981-4402-addf-cf0f064ef92e/width=450/36597088.jpeg"
4033
+ ],
4034
  "danmen_illustrious_V1_0": [
4035
  "danmen,penis,vaginal / uterus / x-ray / cross-section / internal cumshot",
4036
  "Illustrious",
 
4045
  "https://civitai.com/models/853101",
4046
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9bbdb650-67f6-4b7a-b020-2f1b15363919/width=450/34507990.jpeg"
4047
  ],
4048
+ "darkness_xl_v10": [
4049
+ "",
4050
+ "Pony",
4051
+ "[SDXL] Darkness / \u6697\u95c7\u5316",
4052
+ "https://civitai.com/models/902671",
4053
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/592b31db-41b0-4f0b-a3d5-b9dff6246608/width=450/37391766.jpeg"
4054
+ ],
4055
  "dawa": [
4056
  "dawa",
4057
  "SDXL 1.0",
 
4080
  "https://civitai.com/models/838545",
4081
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4611cac5-7c02-484c-9937-a4b7fb5c3817/width=450/33675457.jpeg"
4082
  ],
4083
+ "defloration_illustrious_V1_0": [
4084
+ "defloration, cum, blood",
4085
+ "Illustrious",
4086
+ "\u51e6\u5973\u55aa\u5931/defloration",
4087
+ "https://civitai.com/models/913320",
4088
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/406031e3-c88b-48c3-aecd-931c494758c5/width=450/38051071.jpeg"
4089
+ ],
4090
+ "defloration_pony_V1_0": [
4091
+ "defloration,cum,blood",
4092
+ "Pony",
4093
+ "\u51e6\u5973\u55aa\u5931/defloration",
4094
+ "https://civitai.com/models/913320",
4095
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1f82a67e-38d2-4fb5-ac26-e81c513b0b82/width=450/38042460.jpeg"
4096
+ ],
4097
  "deflowered_pony": [
4098
  "1woman, perfect face, fully nude, imminent penetration:1.4, deflowered:1.1, blood on thighs, blood dripping, semen, cum, overflow:1.2, / 1male, huge penis, large testicles, / female pubic hair, uncensored pussy, hairy pussy, blush / <lora:deflowered_pony:0.7>,",
4099
  "Pony",
 
4472
  "https://civitai.com/models/577378",
4473
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/459bd20d-a9d6-4a0b-8947-7dcebc061c0f/width=450/19781986.jpeg"
4474
  ],
4475
+ "gekioko_xl_v10": [
4476
+ "",
4477
+ "Pony",
4478
+ "[SDXL] Extremely angry eyes / \u6fc0\u304a\u3053\u9854",
4479
+ "https://civitai.com/models/905782",
4480
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c6651f05-d287-445e-82cf-96d6863fcf6d/width=450/37585494.jpeg"
4481
+ ],
4482
  "genbaneko_v4_illustrious_uo_1024-000040": [
4483
  "genbaneko / cat, headwear, hat, grey headwear, baseball cap, / speech bubble, speech text,",
4484
  "SDXL 1.0",
 
4619
  "https://civitai.com/models/32541",
4620
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a02818c5-568b-4da2-a6f3-0c54f3fd604d/width=450/16910321.jpeg"
4621
  ],
4622
+ "guided_penetration_illustrious_V1_0": [
4623
+ "guided penetration, 1boy, penis, vaginal,grabbing penis",
4624
+ "Illustrious",
4625
+ "\u30bb\u30eb\u30d5\u633f\u5165/guided penetration",
4626
+ "https://civitai.com/models/619646",
4627
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e579696c-d1e7-4ac0-ac90-ecfe022c7009/width=450/37375648.jpeg"
4628
+ ],
4629
  "guided_penetration_pony_V1_0": [
4630
  "",
4631
  "Pony",
 
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",
4940
+ "[SDXL] Surprised eyes / \u9a5a\u3044\u305f\u76ee",
4941
+ "https://civitai.com/models/902610",
4942
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fb8d8351-8cc9-4386-bb65-3db4169824fd/width=450/37388656.jpeg"
4943
+ ],
4944
  "hotarueye_xl_tareme1_v10": [
4945
  "",
4946
  "Pony",
 
5081
  "https://civitai.com/models/637685",
5082
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/94123112-87d5-43fb-9f06-06e621b237bc/width=450/23732178.jpeg"
5083
  ],
5084
+ "index_fingers_together_pony_V1_0": [
5085
+ " index fingers together, blush",
5086
+ "Pony",
5087
+ "\u6307\u3064\u3093/index fingers together",
5088
+ "https://civitai.com/models/887719",
5089
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3cb02852-eae7-436e-86b1-8403152e5b84/width=450/36517681.jpeg"
5090
+ ],
5091
  "infundibulum_insertion_pony_V1_0": [
5092
  "infundibulum insertion",
5093
  "Pony",
 
5725
  "https://civitai.com/models/488098",
5726
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/58767062-22a1-4f52-ac2e-7f01fae26908/width=450/14206684.jpeg"
5727
  ],
5728
+ "make25d_xl_v10": [
5729
+ "",
5730
+ "Pony",
5731
+ "[SDXL] Convert 2D to 2.5D / 2D\u21922.5D\u5909\u63db",
5732
+ "https://civitai.com/models/914435",
5733
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8a760cee-7786-4dbf-a556-f8983f5b4d16/width=450/38108254.jpeg"
5734
+ ],
5735
  "manguri_Pony_V1_0": [
5736
  "manguri / legs up / folded / spread legs / upside-down / legs together / knee to chest",
5737
  "Pony",
 
6908
  "https://civitai.com/models/570003",
6909
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/100c8fcb-077b-4ef0-9bf3-41082f1ce453/width=450/19285744.jpeg"
6910
  ],
6911
+ "reverse_cowgirl_position_illustrious_V1_0": [
6912
+ " reverse cowgirl position, 1boy, girl on top, sex, penis, vaginal,",
6913
+ "Illustrious",
6914
+ "\u80cc\u9762\u5ea7\u4f4d/reverse cowgirl position",
6915
+ "https://civitai.com/models/902720",
6916
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8551d304-9efc-43bc-ae8a-a5bed19f8f9e/width=450/37681569.jpeg"
6917
+ ],
6918
+ "reverse_cowgirl_position_pony_V1_0": [
6919
+ "reverse cowgirl position, 1boy, girl on top, sex, penis, vaginal / skirt lift",
6920
+ "Pony",
6921
+ "\u80cc\u9762\u5ea7\u4f4d/reverse cowgirl position",
6922
+ "https://civitai.com/models/902720",
6923
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fca4982f-0362-4c0a-9d49-1e0e6ebf1074/width=450/37393655.jpeg"
6924
+ ],
6925
  "ribbon-trimmed_underwear_3-000010": [
6926
  "ribbon-trimmed bra / ribbon-trimmed panties",
6927
  "SD 1.5",
 
6950
  "https://civitai.com/models/554166",
6951
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ac359acf-7294-4f2c-bf7f-708379deebdb/width=450/18275119.jpeg"
6952
  ],
6953
+ "roseinmouth_Illust_v1": [
6954
+ "rose in mouth",
6955
+ "Illustrious",
6956
+ "rose in mouth / \u53e3\u306b\u8594\u8587",
6957
+ "https://civitai.com/models/911701",
6958
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bbcea28e-ffc2-4787-bcde-c8dfd0f3951d/width=450/37942270.jpeg"
6959
+ ],
6960
  "rouka_SDXL_V2": [
6961
  "rouka, hallway, window, scenery, school, reflective floor, indoors, door, reflection, building, tiles, tile floor, sunlight, day, ceiling light, realistic / rouka",
6962
  "SDXL 1.0",
 
7132
  "https://civitai.com/models/311263",
7133
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/27503dd2-9b3b-44d5-8f30-fd7a1be2668b/width=450/8190285.jpeg"
7134
  ],
7135
+ "sensualface1_xl_v20": [
7136
+ "",
7137
+ "Pony",
7138
+ "[SDXL] Sensual face / \u5b98\u80fd\u7684(\u60a9\u307e\u3057\u3052)\u306a\u8868\u60c5",
7139
+ "https://civitai.com/models/911293",
7140
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/df39de6a-abd7-491e-9b57-cd8bf58534f1/width=450/37923561.jpeg"
7141
+ ],
7142
+ "sensualface2_xl_v20": [
7143
+ "",
7144
+ "Pony",
7145
+ "[SDXL] Sensual face / \u5b98\u80fd\u7684(\u60a9\u307e\u3057\u3052)\u306a\u8868\u60c5",
7146
+ "https://civitai.com/models/911293",
7147
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ae12f246-5b6c-47f0-b7c4-5c414bd40138/width=450/37923681.jpeg"
7148
+ ],
7149
  "sento": [
7150
  "sento",
7151
  "Pony",
 
7202
  "https://civitai.com/models/834937",
7203
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a4fd210d-90db-4995-8868-482e597fe927/width=450/33459038.jpeg"
7204
  ],
7205
+ "shiJojoStandV2": [
7206
+ " shijojostand, stand \\(jojo\\), 1other, ",
7207
+ "Pony",
7208
+ "Jojo Stand Prototype Concept | PonyXL",
7209
+ "https://civitai.com/models/900698",
7210
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/51375190-53e8-4369-a49a-839cbc94fae7/width=450/37278575.jpeg"
7211
+ ],
7212
+ "shiMesugakiV1": [
7213
+ "shimesugaki, mesugaki",
7214
+ "Pony",
7215
+ "Mesugaki / \u30e1\u30b9\u30ac\u30ad | Concept | PonyXL",
7216
+ "https://civitai.com/models/889834",
7217
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c265d91e-7c40-42fb-bf5b-cf6b7ebe3540/width=450/36638170.jpeg"
7218
+ ],
7219
  "shiReroVT1": [
7220
  "shirerocrazy, cross-eyed, tongue, cherry on tongue, saliva, tongue out, looking at viewer, open mouth, parody, cherry, ",
7221
  "Pony",
 
7363
  "https://civitai.com/models/574708",
7364
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/557c4224-c6c8-4b71-b6fe-adc82e552f25/width=450/19613178.jpeg"
7365
  ],
7366
+ "smugface_xl_v10": [
7367
+ "",
7368
+ "Pony",
7369
+ "[SDXL] Evil smug face / \u5c0f\u60aa\u9b54\u306e\u7b11\u307f",
7370
+ "https://civitai.com/models/905746",
7371
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/07ef9845-3d87-4e07-9d01-94d4a7b2581f/width=450/37583480.jpeg"
7372
+ ],
7373
  "soap_bubbles_pony_V1_0": [
7374
  "soap bubbles / soap",
7375
  "Pony",
 
7790
  "https://civitai.com/models/349716",
7791
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dec948dc-ac1b-4918-90ac-fe35daaf6d63/width=450/7927405.jpeg"
7792
  ],
7793
+ "tearing_clothes_illustrious_V1_0": [
7794
+ " tearing clothes, torn clothes,1boy,grabbing clothes",
7795
+ "Illustrious",
7796
+ "\u670d\u88c2\u304d/tearing clothes",
7797
+ "https://civitai.com/models/725787",
7798
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6df5e6ec-9b90-4a7a-99ba-4fecdcb8db28/width=450/37339779.jpeg"
7799
+ ],
7800
+ "tearing_clothes_pony_V1_0": [
7801
+ " tearing clothes, torn clothes",
7802
+ "Pony",
7803
+ "\u670d\u88c2\u304d/tearing clothes",
7804
+ "https://civitai.com/models/725787",
7805
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/11a24cc7-3997-4d0d-adeb-679b40eb9b42/width=450/28009090.jpeg"
7806
+ ],
7807
  "tears_XL_V1_0": [
7808
  "tears",
7809
  "SDXL 1.0",
 
7930
  "https://civitai.com/models/499436",
7931
  "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8f4ac8a2-2034-4c53-9d20-fc2108840cf5/width=450/14855524.jpeg"
7932
  ],
7933
+ "tongue_out_mouth_pointy_pony_V1_0": [
7934
+ "\uff4douth pointy,tongue out",
7935
+ "Pony",
7936
+ "\u820c\u51fa\u3057/tongue out(\uff4douth pointy)",
7937
+ "https://civitai.com/models/889045",
7938
+ "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b2994582-1653-4a4c-9127-b50995e97ab9/width=450/36579483.jpeg"
7939
+ ],
7940
  "topanglexl16": [
7941
  "above / from above",
7942
  "SDXL 1.0",
requirements.txt CHANGED
@@ -4,7 +4,7 @@ diffusers
4
  invisible_watermark
5
  transformers
6
  xformers
7
- git+https://github.com/R3gm/stablepy.git@1bb7400 # -b refactor_sampler_fix
8
  torch==2.2.0
9
  gdown
10
  opencv-python
 
4
  invisible_watermark
5
  transformers
6
  xformers
7
+ git+https://github.com/R3gm/stablepy.git@ed51089 # -b refactor_sampler_fix
8
  torch==2.2.0
9
  gdown
10
  opencv-python