Add danbooru-mcp auto-start, git sync, status API endpoints, navbar status indicators, and LLM format retry
- app.py: add subprocess import; add _ensure_mcp_repo() to clone/pull danbooru-mcp from https://git.liveaodh.com/aodhan/danbooru-mcp into tools/danbooru-mcp/ at startup; add ensure_mcp_server_running() which calls _ensure_mcp_repo() then starts the Docker container if not running; add GET /api/status/comfyui and GET /api/status/mcp health endpoints; fix call_llm() to retry up to 3 times on unexpected response format (KeyError/IndexError), logging the raw response and prompting the LLM to respond with valid JSON before each retry - templates/layout.html: add ComfyUI and MCP status dot indicators to navbar; add polling JS that checks both endpoints on load and every 30s - static/style.css: add .service-status, .status-dot, .status-ok, .status-error, .status-checking styles and status-pulse keyframe animation - .gitignore: add tools/ to exclude the cloned danbooru-mcp repo
This commit is contained in:
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/3P_SEX-000037.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "threesome, group_sex"
|
||||
"lora_triggers": "threesome, group_sex",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
@@ -27,4 +29,4 @@
|
||||
"groping",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/4P_sex.safetensors",
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "4P_sexV1"
|
||||
"lora_triggers": "4P_sexV1",
|
||||
"lora_weight_min": 0.6,
|
||||
"lora_weight_max": 0.6
|
||||
},
|
||||
"tags": [
|
||||
"4P_sexV1",
|
||||
@@ -30,4 +32,4 @@
|
||||
"hetero",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/[Malebolgia] Oral Sex Tounge Afterimage Concept 2.0 Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "[Malebolgia] Oral Sex Tounge Afterimage Concept 2.0 Illustrious"
|
||||
"lora_triggers": "[Malebolgia] Oral Sex Tounge Afterimage Concept 2.0 Illustrious",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"oral",
|
||||
@@ -29,4 +31,4 @@
|
||||
"motion blur",
|
||||
"surreal"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Actually_Reliable_Penis_Kissing_3_Variants_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Actually_Reliable_Penis_Kissing_3_Variants_Illustrious"
|
||||
"lora_triggers": "Actually_Reliable_Penis_Kissing_3_Variants_Illustrious",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"penis kissing",
|
||||
@@ -31,4 +33,4 @@
|
||||
"tongue",
|
||||
"close-up"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/after-sex-fellatio-illustriousxl-lora-nochekaiser_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "after sex fellatio"
|
||||
"lora_triggers": "after sex fellatio",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"after_sex",
|
||||
@@ -34,4 +36,4 @@
|
||||
"penis",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afterfellatio_ill.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "after fellatio, cum in mouth, closed mouth, cum string"
|
||||
"lora_triggers": "after fellatio, cum in mouth, closed mouth, cum string",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"after_fellatio",
|
||||
@@ -30,4 +32,4 @@
|
||||
"pov",
|
||||
"handjob"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afteroral.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "after oral, after deepthroat"
|
||||
"lora_triggers": "after oral, after deepthroat",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"after_fellatio",
|
||||
@@ -30,4 +32,4 @@
|
||||
"penis_on_face",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/afterpaizuri.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "afterpaizuri"
|
||||
"lora_triggers": "afterpaizuri",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"after paizuri",
|
||||
@@ -32,4 +34,4 @@
|
||||
"sweat",
|
||||
"disheveled"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/AfterSexBreakV2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "aftersexbreak, after sex, male sitting"
|
||||
"lora_triggers": "aftersexbreak, after sex, male sitting",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"after_sex",
|
||||
@@ -38,4 +40,4 @@
|
||||
"bed_sheet",
|
||||
"stained_sheets"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Against_glass_bs.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Against_glass_bs"
|
||||
"lora_triggers": "Against_glass_bs",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"against glass",
|
||||
@@ -30,4 +32,4 @@
|
||||
"cheek press",
|
||||
"distorted view"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/AgressiveChoking-000010.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "AgressiveChoking-000010"
|
||||
"lora_triggers": "AgressiveChoking-000010",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"violence",
|
||||
@@ -29,4 +31,4 @@
|
||||
"combat",
|
||||
"anger"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Ahegao_XL_v3_1278075.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Ahegao_XL_v3_1278075"
|
||||
"lora_triggers": "Ahegao_XL_v3_1278075",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"ahegao",
|
||||
@@ -34,4 +36,4 @@
|
||||
"double peace sign",
|
||||
"v-sign"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Amateur_POV_Filming.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Homemade_PornV1, recording, pov, prostitution"
|
||||
"lora_triggers": "Homemade_PornV1, recording, pov, prostitution",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"recording",
|
||||
@@ -30,4 +32,4 @@
|
||||
"prostitution",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/arch-back-sex-v1.1-illustriousxl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "kiss, arched_back, sex_from_behind"
|
||||
"lora_triggers": "kiss, arched_back, sex_from_behind",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"hetero",
|
||||
@@ -26,4 +28,4 @@
|
||||
"nude",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/arm_grab_missionary_ill-10.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "arm_grab_missionary"
|
||||
"lora_triggers": "arm_grab_missionary",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"missionary",
|
||||
@@ -35,4 +37,4 @@
|
||||
"breasts",
|
||||
"nipples"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BallsDeep-IL-V2.2-S.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "deep penetration"
|
||||
"lora_triggers": "deep penetration",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"deep_penetration",
|
||||
@@ -27,4 +29,4 @@
|
||||
"vaginal",
|
||||
"gaping"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/bathingtogether.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bathing together"
|
||||
"lora_triggers": "bathing together",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"bathing",
|
||||
@@ -28,4 +30,4 @@
|
||||
"steam",
|
||||
"bare_shoulders"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/before_after_1230829.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "before_after"
|
||||
"lora_triggers": "before_after",
|
||||
"lora_weight_min": 0.9,
|
||||
"lora_weight_max": 0.9
|
||||
},
|
||||
"tags": [
|
||||
"before_and_after",
|
||||
@@ -30,4 +32,4 @@
|
||||
"upper_body",
|
||||
"split_theme"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,10 +20,12 @@
|
||||
"lora": {
|
||||
"lora_name": "",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": ""
|
||||
"lora_triggers": "",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"belly dancing",
|
||||
"dance"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BentBack.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bentback, kneepits"
|
||||
"lora_triggers": "bentback, kneepits",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"bent_over",
|
||||
@@ -26,4 +28,4 @@
|
||||
"twisted_torso",
|
||||
"ass_focus"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BlowjobComicPart2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bjmcut"
|
||||
"lora_triggers": "bjmcut",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"3koma",
|
||||
@@ -29,4 +31,4 @@
|
||||
"empty_eyes",
|
||||
"tongue_out"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BodyBenGirl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "bentstand-front, bentstand-behind"
|
||||
"lora_triggers": "bentstand-front, bentstand-behind",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"suspended_congress",
|
||||
@@ -27,4 +29,4 @@
|
||||
"1boy",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BodyBenGirlPart2.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "bentstand-behind, dangling legs, dangling arms, from_side, arms hanging down, torso_grab, suspended"
|
||||
"lora_triggers": "bentstand-behind, dangling legs, dangling arms, from_side, arms hanging down, torso_grab, suspended",
|
||||
"lora_weight_min": 0.9,
|
||||
"lora_weight_max": 0.9
|
||||
},
|
||||
"tags": [
|
||||
"torso_grab",
|
||||
@@ -28,4 +30,4 @@
|
||||
"embarrassed",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Bored_Retrain-000115_1336316.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Bored_Retrain-000115_1336316"
|
||||
"lora_triggers": "Bored_Retrain-000115_1336316",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"boredom",
|
||||
@@ -30,4 +32,4 @@
|
||||
"tired",
|
||||
"cheek resting on hand"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast_pressH.safetensors",
|
||||
"lora_weight": 0.6,
|
||||
"lora_triggers": "breast_pressH"
|
||||
"lora_triggers": "breast_pressH",
|
||||
"lora_weight_min": 0.6,
|
||||
"lora_weight_max": 0.6
|
||||
},
|
||||
"tags": [
|
||||
"height_difference",
|
||||
@@ -30,4 +32,4 @@
|
||||
"1boy",
|
||||
"2girls"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast-smother-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "breast-smother-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "breast-smother-illustriousxl-lora-nochekaiser",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"breast smother",
|
||||
@@ -33,4 +35,4 @@
|
||||
"pov",
|
||||
"large breasts"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/breast-sucking-fingering-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "breast-sucking-fingering-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "breast-sucking-fingering-illustriousxl-lora-nochekaiser",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"breast sucking",
|
||||
@@ -34,4 +36,4 @@
|
||||
"saliva",
|
||||
"stimulation"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/BrokenGlass_illusXL_Incrs_v1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "BrokenGlass_illusXL_Incrs_v1"
|
||||
"lora_triggers": "BrokenGlass_illusXL_Incrs_v1",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"broken glass",
|
||||
@@ -32,4 +34,4 @@
|
||||
"cinematic",
|
||||
"destruction"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Butt_smother_ag-000043.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Butt_smother_ag-000043"
|
||||
"lora_triggers": "Butt_smother_ag-000043",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"facesitting",
|
||||
@@ -32,4 +34,4 @@
|
||||
"suffocation",
|
||||
"submissive view"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/buttjob.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "buttjob"
|
||||
"lora_triggers": "buttjob",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"buttjob",
|
||||
@@ -32,4 +34,4 @@
|
||||
"glutes",
|
||||
"between buttocks"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CarWashV2.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "w4sh1n, w4sh0ut"
|
||||
"lora_triggers": "w4sh1n, w4sh0ut",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"car",
|
||||
@@ -33,4 +35,4 @@
|
||||
"outdoors",
|
||||
"car_interior"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cat_stretchILL.safetensors",
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "stretching, cat stretch, downward dog, trembling"
|
||||
"lora_triggers": "stretching, cat stretch, downward dog, trembling",
|
||||
"lora_weight_min": 0.7,
|
||||
"lora_weight_max": 0.7
|
||||
},
|
||||
"tags": [
|
||||
"cat_stretch",
|
||||
@@ -31,4 +33,4 @@
|
||||
"cat_ears",
|
||||
"cat_tail"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Caught_Masturbating_ILLUSTRIOUS.safetensors",
|
||||
"lora_weight": 0.75,
|
||||
"lora_triggers": "caught, male pov, male masturbation, girl walking in door, standing in doorway"
|
||||
"lora_triggers": "caught, male pov, male masturbation, girl walking in door, standing in doorway",
|
||||
"lora_weight_min": 0.75,
|
||||
"lora_weight_max": 0.75
|
||||
},
|
||||
"tags": [
|
||||
"pov",
|
||||
@@ -35,4 +37,4 @@
|
||||
"wide_shot",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/charm_person_magic.safetensors",
|
||||
"lora_weight": 0.7,
|
||||
"lora_triggers": "charm_person_(magic), cham_aura"
|
||||
"lora_triggers": "charm_person_(magic), cham_aura",
|
||||
"lora_weight_min": 0.7,
|
||||
"lora_weight_max": 0.7
|
||||
},
|
||||
"tags": [
|
||||
"casting_spell",
|
||||
@@ -30,4 +32,4 @@
|
||||
"cowboy_shot",
|
||||
"solo"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cheekbulge.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cheek bulge"
|
||||
"lora_triggers": "cheek bulge",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cheek_bulge",
|
||||
@@ -27,4 +29,4 @@
|
||||
"penis",
|
||||
"pov"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/chokehold.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "choke hold"
|
||||
"lora_triggers": "choke hold",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"choke_hold",
|
||||
@@ -32,4 +34,4 @@
|
||||
"saliva",
|
||||
"ohogao"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CleavageTeaseDwnsty-000008.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "pulling down own clothes, teasing"
|
||||
"lora_triggers": "pulling down own clothes, teasing",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"clothes_pull",
|
||||
@@ -34,4 +36,4 @@
|
||||
"blush",
|
||||
"one_eye_closed"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,22 +1,24 @@
|
||||
{
|
||||
"action": {
|
||||
"additional": "nsfw, semen, cum",
|
||||
"arms": "",
|
||||
"eyes": "looking_at_viewer, eyes_open",
|
||||
"feet": "",
|
||||
"full_body": "close-up, portrait",
|
||||
"hands": "",
|
||||
"head": "facial, open_mouth, tongue, saliva, blush",
|
||||
"legs": "",
|
||||
"pelvis": "",
|
||||
"torso": ""
|
||||
},
|
||||
"action_id": "closeup_facial_illus",
|
||||
"action_name": "Closeup Facial Illus",
|
||||
"action": {
|
||||
"full_body": "close-up, portrait",
|
||||
"head": "facial, open_mouth, tongue, saliva, blush",
|
||||
"eyes": "looking_at_viewer, eyes_open",
|
||||
"arms": "out_of_frame",
|
||||
"hands": "out_of_frame",
|
||||
"torso": "out_of_frame",
|
||||
"pelvis": "out_of_frame",
|
||||
"legs": "out_of_frame",
|
||||
"feet": "out_of_frame",
|
||||
"additional": "nsfw, semen, cum"
|
||||
},
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Closeup_Facial_iLLus.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Closeup Facial"
|
||||
"lora_triggers": "Closeup Facial",
|
||||
"lora_weight": 1,
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"facial",
|
||||
@@ -28,4 +30,4 @@
|
||||
"saliva",
|
||||
"blush"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cof.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cof"
|
||||
"lora_triggers": "cof",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"standing force",
|
||||
@@ -30,4 +32,4 @@
|
||||
"legs wrapped",
|
||||
"straddling"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cooperative_grinding.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cooperative_grinding"
|
||||
"lora_triggers": "cooperative_grinding",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"standing sex",
|
||||
@@ -30,4 +32,4 @@
|
||||
"grinding",
|
||||
"lift and carry"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cooperativepaizuri.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cooperative paizuri"
|
||||
"lora_triggers": "cooperative paizuri",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cooperative_paizuri",
|
||||
@@ -30,4 +32,4 @@
|
||||
"from_side",
|
||||
"large_breasts"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/covering privates_illustrious_V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "covering privates, covering crotch, covering breasts"
|
||||
"lora_triggers": "covering privates, covering crotch, covering breasts",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"covering_privates",
|
||||
@@ -27,4 +29,4 @@
|
||||
"arm_across_chest",
|
||||
"legs_together"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,9 +16,11 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/CoveringOwnMouth_Ill_V1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "covering_own_mouth"
|
||||
"lora_triggers": "covering_own_mouth",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"covering_own_mouth"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cowgirl-position-breast-press-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cowgirl-position-breast-press-illustriousxl-lora-nochekaiser"
|
||||
"lora_triggers": "cowgirl-position-breast-press-illustriousxl-lora-nochekaiser",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cowgirl position",
|
||||
@@ -32,4 +34,4 @@
|
||||
"breast deformation",
|
||||
"squish"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cuckold NTR-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cuckold NTR-IL_NAI_PY"
|
||||
"lora_triggers": "Cuckold NTR-IL_NAI_PY",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"ntr",
|
||||
@@ -30,4 +32,4 @@
|
||||
"doggy style",
|
||||
"looking back"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_bathIllustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum_bathIllustrious"
|
||||
"lora_triggers": "cum_bathIllustrious",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cum_bath",
|
||||
@@ -31,4 +33,4 @@
|
||||
"bukkake",
|
||||
"messy"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_in_cleavage_illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum_in_cleavage, holding own breasts"
|
||||
"lora_triggers": "cum_in_cleavage, holding own breasts",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cum_on_breasts",
|
||||
@@ -30,4 +32,4 @@
|
||||
"black_hair",
|
||||
"indoors"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cum_inside_slime_v0.2.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cum_inside_slime_v0.2"
|
||||
"lora_triggers": "Cum_inside_slime_v0.2",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"slime girl",
|
||||
@@ -32,4 +34,4 @@
|
||||
"stomach fill",
|
||||
"viscous"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cum_shot.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "cum, facial, ejaculation"
|
||||
"lora_triggers": "cum, facial, ejaculation",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"cum",
|
||||
@@ -40,4 +42,4 @@
|
||||
"blush",
|
||||
"ahegao"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Cum_Swap.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Cum_Swap"
|
||||
"lora_triggers": "Cum_Swap",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cum swap",
|
||||
@@ -34,4 +36,4 @@
|
||||
"sharing fluids",
|
||||
"intimacy"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumblastfacial.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "xcbfacialx"
|
||||
"lora_triggers": "xcbfacialx",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"facial",
|
||||
@@ -29,4 +31,4 @@
|
||||
"cum_in_eye",
|
||||
"cum_on_hair"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cuminhands.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cum on hands, cupping hands, excessive cum, cum on face, cum in mouth, cum string"
|
||||
"lora_triggers": "cum on hands, cupping hands, excessive cum, cum on face, cum in mouth, cum string",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cum_on_hands",
|
||||
@@ -28,4 +30,4 @@
|
||||
"after_fellatio",
|
||||
"looking_at_hands"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumshot.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cumshot"
|
||||
"lora_triggers": "cumshot",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cum",
|
||||
@@ -31,4 +33,4 @@
|
||||
"seminal fluid",
|
||||
"detailed liquid"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cumtube-000035.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cumtube-000035"
|
||||
"lora_triggers": "cumtube-000035",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cumtube",
|
||||
@@ -33,4 +35,4 @@
|
||||
"open mouth",
|
||||
"wet skin"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/cunnilingus-on-back-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "cunnilingus on back"
|
||||
"lora_triggers": "cunnilingus on back",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cunnilingus",
|
||||
@@ -34,4 +36,4 @@
|
||||
"on_bed",
|
||||
"from_side"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/danglinglegs.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "dangling legs, lifted by penis, suspended on penis"
|
||||
"lora_triggers": "dangling legs, lifted by penis, suspended on penis",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"suspended_congress",
|
||||
@@ -28,4 +30,4 @@
|
||||
"barefoot",
|
||||
"clenched_teeth"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Deep_Kiss-000007.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Deep_Kiss-000007"
|
||||
"lora_triggers": "Deep_Kiss-000007",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"deep kiss",
|
||||
@@ -38,4 +40,4 @@
|
||||
"eyes closed",
|
||||
"duo"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Deepthroat_PonytailHandle_Anime_IL_V1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "deepthroat_ponytailhandle, grabbing another's hair, ponytail"
|
||||
"lora_triggers": "deepthroat_ponytailhandle, grabbing another's hair, ponytail",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"irrumatio",
|
||||
@@ -30,4 +32,4 @@
|
||||
"penis",
|
||||
"forced"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeat NTR-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeat NTR-IL_NAI_PY"
|
||||
"lora_triggers": "Defeat NTR-IL_NAI_PY",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"defeat",
|
||||
@@ -34,4 +36,4 @@
|
||||
"looking down",
|
||||
"tears"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeat suspension-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeat suspension-IL_NAI_PY"
|
||||
"lora_triggers": "Defeat suspension-IL_NAI_PY",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"suspension",
|
||||
@@ -33,4 +35,4 @@
|
||||
"bdsm",
|
||||
"bondage"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Defeatspitroast_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Defeatspitroast_Illustrious"
|
||||
"lora_triggers": "Defeatspitroast_Illustrious",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"doggystyle",
|
||||
@@ -36,4 +38,4 @@
|
||||
"",
|
||||
"1girl"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Disinterested_Sex___Bored_Female.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Disinterested_Sex___Bored_Female"
|
||||
"lora_triggers": "Disinterested_Sex___Bored_Female",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"bored",
|
||||
@@ -33,4 +35,4 @@
|
||||
"indifferent",
|
||||
"expressionless"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/display_case_bdsm_illus.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "display_case_bdsm_illus"
|
||||
"lora_triggers": "display_case_bdsm_illus",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"glass box",
|
||||
@@ -30,4 +32,4 @@
|
||||
"through glass",
|
||||
"human exhibit"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/display_case_illustr.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "display_case_illustr"
|
||||
"lora_triggers": "display_case_illustr",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"display case",
|
||||
@@ -33,4 +35,4 @@
|
||||
"toy",
|
||||
"transparent"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/DoggyDoubleFingering.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "doggydoublefingerfront, from front, 3girls, multiple girls, fingering, sex from behind, doggystyle"
|
||||
"lora_triggers": "doggydoublefingerfront, from front, 3girls, multiple girls, fingering, sex from behind, doggystyle",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"3girls",
|
||||
@@ -30,4 +32,4 @@
|
||||
"harem",
|
||||
"male_fingering"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Dunking_face_in_a_bowl_of_cum_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "face in cum bowl, cum in bowl, cum bubble, excessive cum"
|
||||
"lora_triggers": "face in cum bowl, cum in bowl, cum bubble, excessive cum",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"1girl",
|
||||
@@ -33,4 +35,4 @@
|
||||
"bowl",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/ekiben_ill-10.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ekiben_ill-10"
|
||||
"lora_triggers": "ekiben_ill-10",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"ekiben",
|
||||
@@ -32,4 +34,4 @@
|
||||
"duo",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Elbow_Squeeze__Concept_Lora-000008.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Elbow_Squeeze__Concept_Lora-000008"
|
||||
"lora_triggers": "Elbow_Squeeze__Concept_Lora-000008",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"elbow squeeze",
|
||||
@@ -29,4 +31,4 @@
|
||||
"squeezing",
|
||||
"tight clothes"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/extreme-sex-v1.0-illustriousxl.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "extreme sex"
|
||||
"lora_triggers": "extreme sex",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"rolling_eyes",
|
||||
@@ -31,4 +33,4 @@
|
||||
"mind_break",
|
||||
"sex"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/face_grab_illustrious.safetensors",
|
||||
"lora_weight": 0.5,
|
||||
"lora_triggers": "fcgrb, face grab, grabbing another's face, pov, pov hand, open mouth, tongue out"
|
||||
"lora_triggers": "fcgrb, face grab, grabbing another's face, pov, pov hand, open mouth, tongue out",
|
||||
"lora_weight_min": 0.5,
|
||||
"lora_weight_max": 0.5
|
||||
},
|
||||
"tags": [
|
||||
"grabbing_another's_face",
|
||||
@@ -30,4 +32,4 @@
|
||||
"streaming_tears",
|
||||
"cheek_pinching"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/facesit-08.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "2girls, female pov, close-up, looking at viewer, sitting on face, oral, cunnilingus, spread legs, pussy juice, clitoris"
|
||||
"lora_triggers": "2girls, female pov, close-up, looking at viewer, sitting on face, oral, cunnilingus, spread legs, pussy juice, clitoris",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"2girls",
|
||||
@@ -34,4 +36,4 @@
|
||||
"head_grab",
|
||||
"looking_down"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/facial_bukkake.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "facial_bukkake"
|
||||
"lora_triggers": "facial_bukkake",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"bukkake",
|
||||
@@ -34,4 +36,4 @@
|
||||
"splatter",
|
||||
"after sex"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fellatio-from-below-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fellatio from below, fellatio, from below, squatting, hetero, penis, testicles, completely nude, oral"
|
||||
"lora_triggers": "fellatio from below, fellatio, from below, squatting, hetero, penis, testicles, completely nude, oral",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
@@ -32,4 +34,4 @@
|
||||
"sweat",
|
||||
"pussy"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fellatio-on-couch-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fellatio on couch, hetero, penis, oral, sitting, fellatio, testicles, blush, couch, sweat, breast press, nipples, completely nude, uncensored"
|
||||
"lora_triggers": "fellatio on couch, hetero, penis, oral, sitting, fellatio, testicles, blush, couch, sweat, breast press, nipples, completely nude, uncensored",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
@@ -34,4 +36,4 @@
|
||||
"uncensored",
|
||||
"couch"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/femdom_face_between_breasts.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "femdom_face_between_breasts"
|
||||
"lora_triggers": "femdom_face_between_breasts",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"breast smother",
|
||||
@@ -31,4 +33,4 @@
|
||||
"big breasts",
|
||||
"cleavage"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Femdom_Held_Down_Illust.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fdom_held"
|
||||
"lora_triggers": "fdom_held",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"femdom",
|
||||
@@ -29,4 +31,4 @@
|
||||
"pinned",
|
||||
"struggling"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fertilization-illustriousxl-lora-nochekaiser.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fertilization, ovum, impregnation, sperm cell, cross-section, cum in pussy, internal cumshot, uterus, cum, sex, vaginal, ovaries, penis, hetero, ejaculation"
|
||||
"lora_triggers": "fertilization, ovum, impregnation, sperm cell, cross-section, cum in pussy, internal cumshot, uterus, cum, sex, vaginal, ovaries, penis, hetero, ejaculation",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"fertilization",
|
||||
@@ -32,4 +34,4 @@
|
||||
"ahegao",
|
||||
"on_bed"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFF_imminent_masturbation.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFF_grabbing_own_crotch, trembling, sweat, breath, imminent_masturbation"
|
||||
"lora_triggers": "FFF_grabbing_own_crotch, trembling, sweat, breath, imminent_masturbation",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"hand_on_own_crotch",
|
||||
@@ -30,4 +32,4 @@
|
||||
"aroused",
|
||||
"rubbing_crotch"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM3SOME-footjob-EFEME3ftfe-IL_1475115.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFM3SOME-footjob-EFEME3ftfe-IL_1475115"
|
||||
"lora_triggers": "FFM3SOME-footjob-EFEME3ftfe-IL_1475115",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"footjob",
|
||||
@@ -34,4 +36,4 @@
|
||||
"penis",
|
||||
"sexual"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_-_Kiss_and_Fellatio_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_kiss_and_fellatio"
|
||||
"lora_triggers": "ffm_threesome_kiss_and_fellatio",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"2girls",
|
||||
@@ -35,4 +37,4 @@
|
||||
"saliva",
|
||||
"sandwich_position"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_Threesome_doggy_style_front_view_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FFM_Threesome_doggy_style_front_view_Illustrious"
|
||||
"lora_triggers": "FFM_Threesome_doggy_style_front_view_Illustrious",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
@@ -34,4 +36,4 @@
|
||||
"blush",
|
||||
"sweat"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_girl_sandwichdouble_dip_Illustrious.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_double_dip"
|
||||
"lora_triggers": "ffm_threesome_double_dip",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"ffm_threesome",
|
||||
@@ -37,4 +39,4 @@
|
||||
"bed_sheet",
|
||||
"messy_bed"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FFM_threesome_one_girl_on_top_and_BJ.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffm_threesome_straddling_fellatio"
|
||||
"lora_triggers": "ffm_threesome_straddling_fellatio",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"ffm_threesome",
|
||||
@@ -35,4 +37,4 @@
|
||||
"erotic",
|
||||
"cum"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/ffmNursingHandjob_ill_v3.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "ffmNursingHandjob_ill_v3"
|
||||
"lora_triggers": "ffmNursingHandjob_ill_v3",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"threesome",
|
||||
@@ -36,4 +38,4 @@
|
||||
"big_breasts",
|
||||
"kneeling"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/finish_blow_ill_v0.90-000004.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "finish_blow_ill_v0.90-000004"
|
||||
"lora_triggers": "finish_blow_ill_v0.90-000004",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"action shot",
|
||||
@@ -30,4 +32,4 @@
|
||||
"intense",
|
||||
"cinematic composition"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fixed_perspective_v3_1558768.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "fixed_perspective_v3_1558768"
|
||||
"lora_triggers": "fixed_perspective_v3_1558768",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"foreshortening",
|
||||
@@ -31,4 +33,4 @@
|
||||
"portrait",
|
||||
"depth of field"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/fixed_point_v2.safetensors",
|
||||
"lora_weight": 0.8,
|
||||
"lora_triggers": "fxdpt, full room view"
|
||||
"lora_triggers": "fxdpt, full room view",
|
||||
"lora_weight_min": 0.8,
|
||||
"lora_weight_max": 0.8
|
||||
},
|
||||
"tags": [
|
||||
"kneeling",
|
||||
@@ -28,4 +30,4 @@
|
||||
"from_above",
|
||||
"perspective"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Flaccid_After_Cum_Illustrious-000009.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "flaccid after cum"
|
||||
"lora_triggers": "flaccid after cum",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"after_sex",
|
||||
@@ -29,4 +31,4 @@
|
||||
"cum_in_mouth",
|
||||
"after_fellatio"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Fleshlight_Position_Doggystyle_Dangling_Legs_Sex_From_Behind_Hanging_Legs_PonyILSDSDXL.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Fleshlight_Position_Doggystyle_Dangling_Legs_Sex_From_Behind_Hanging_Legs_PonyILSDSDXL"
|
||||
"lora_triggers": "Fleshlight_Position_Doggystyle_Dangling_Legs_Sex_From_Behind_Hanging_Legs_PonyILSDSDXL",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"doggystyle",
|
||||
@@ -34,4 +36,4 @@
|
||||
"feet off ground",
|
||||
"sex act"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Folded XL illustrious V1.0.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Folded XL illustrious V1.0"
|
||||
"lora_triggers": "Folded XL illustrious V1.0",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"crossed arms",
|
||||
@@ -31,4 +33,4 @@
|
||||
"skeptical",
|
||||
"upper body"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Forced_cunnilingus.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Forced_cunnilingus"
|
||||
"lora_triggers": "Forced_cunnilingus",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"cunnilingus",
|
||||
@@ -35,4 +37,4 @@
|
||||
"vaginal",
|
||||
"sex act"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/foreskin_fellatio-ILXL.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "foreskin_fellatio-ILXL"
|
||||
"lora_triggers": "foreskin_fellatio-ILXL",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"nsfw",
|
||||
@@ -33,4 +35,4 @@
|
||||
"male anatomy",
|
||||
"sexual act"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/foreskinplay_r1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "foreskinplay_r1"
|
||||
"lora_triggers": "foreskinplay_r1",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"nsfw",
|
||||
@@ -32,4 +34,4 @@
|
||||
"penis close-up",
|
||||
"glans"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/FrenchKissV1IL-000010.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "FrenchKissV1IL-000010"
|
||||
"lora_triggers": "FrenchKissV1IL-000010",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"french kiss",
|
||||
@@ -34,4 +36,4 @@
|
||||
"deep kiss",
|
||||
"profile view"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Frog embrace position-IL_NAI_PY.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "Frog embrace position-IL_NAI_PY"
|
||||
"lora_triggers": "Frog embrace position-IL_NAI_PY",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"frog pose",
|
||||
@@ -32,4 +34,4 @@
|
||||
"intricate interaction",
|
||||
"lying on back"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/full_body_blowjob.safetensors",
|
||||
"lora_weight": 0.9,
|
||||
"lora_triggers": "full_body_blowjob"
|
||||
"lora_triggers": "full_body_blowjob",
|
||||
"lora_weight_min": 0.9,
|
||||
"lora_weight_max": 0.9
|
||||
},
|
||||
"tags": [
|
||||
"fellatio",
|
||||
@@ -32,4 +34,4 @@
|
||||
"head_grab",
|
||||
"penis_grab"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/Futa_on_Female-000051(1).safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "futa with female"
|
||||
"lora_triggers": "futa with female",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"futa_with_female",
|
||||
@@ -26,4 +28,4 @@
|
||||
"sex",
|
||||
"breasts"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/gameandsex.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "gameandsex"
|
||||
"lora_triggers": "gameandsex",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"mr game and watch",
|
||||
@@ -34,4 +36,4 @@
|
||||
"parody",
|
||||
"stick figure"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/GD-V3.0-000010_1462060.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "GD-V3.0-000010_1462060"
|
||||
"lora_triggers": "GD-V3.0-000010_1462060",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"fighting_stance",
|
||||
@@ -29,4 +31,4 @@
|
||||
"clenched_hands",
|
||||
"crouching"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
"lora": {
|
||||
"lora_name": "Illustrious/Poses/GiantDomV2.1.safetensors",
|
||||
"lora_weight": 1.0,
|
||||
"lora_triggers": "GiantDomV2.1"
|
||||
"lora_triggers": "GiantDomV2.1",
|
||||
"lora_weight_min": 1.0,
|
||||
"lora_weight_max": 1.0
|
||||
},
|
||||
"tags": [
|
||||
"giantess",
|
||||
@@ -30,4 +32,4 @@
|
||||
"foreshortening",
|
||||
"dominance"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user