17 Commits

Author SHA1 Message Date
Aodhan Collins
ed9a7b4b11 Updated JSON fields. 2026-03-21 18:21:00 +00:00
Aodhan Collins
32a73b02f5 Add semantic tagging, search, favourite/NSFW filtering, and LLM job queue
Replaces old list-format tags (which duplicated prompt content) with structured
dict tags per category (origin_series, outfit_type, participants, style_type,
scene_type, etc.). Tags are now purely organizational metadata — removed from
the prompt pipeline entirely.

Adds is_favourite and is_nsfw columns to all 8 resource models. Favourite is
DB-only (user preference); NSFW is mirrored in JSON tags for rescan persistence.
All library pages get filter controls and favourites-first sorting.

Introduces a parallel LLM job queue (_enqueue_task + _llm_queue_worker) for
background tag regeneration, with the same status polling UI as ComfyUI jobs.
Fixes call_llm() to use has_request_context() fallback for background threads.

Adds global search (/search) across resources and gallery images, with navbar
search bar. Adds gallery image sidecar JSON for per-image favourite/NSFW metadata.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-21 03:22:09 +00:00
Aodhan Collins
7d79e626a5 Add REST API for preset-based generation and fallback cover images
REST API (routes/api.py): Three endpoints behind API key auth for
programmatic image generation via presets — list presets, queue
generation with optional overrides, and poll job status.

Shared generation logic extracted from routes/presets.py into
services/generation.py so both web UI and API use the same code path.

Fallback covers: library index pages now show a random generated image
at reduced opacity when no cover is assigned, instead of "No Image".

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 21:19:12 +00:00
Aodhan Collins
d756ea1d0e Updated generation pages. 2026-03-15 17:45:17 +00:00
Aodhan Collins
79bbf669e2 Updated json schema 2026-03-15 17:44:43 +00:00
Aodhan Collins
5e4348ebc1 Add extra prompts, endless generation, random character default, and small fixes
- Add extra positive/negative prompt textareas to all 9 detail pages with session persistence
- Add Endless generation button to all detail pages (continuous preview generation until stopped)
- Default character selector to "Random Character" on all secondary detail pages
- Fix queue clear endpoint (remove spurious auth check)
- Refactor app.py into routes/ and services/ modules
- Update CLAUDE.md with new architecture documentation
- Various data file updates and cleanup

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 02:07:16 +00:00
Aodhan Collins
1b8a798c31 Add graceful fallback for MCP import in test script
- Add try/except block for MCP package import
- Provide helpful error message when MCP is not installed
- Exit gracefully with status code 1 on import failure

Addresses code review feedback.
2026-03-07 21:13:32 +00:00
Aodhan Collins
d95b81dde5 Multiple bug fixes. 2026-03-06 19:28:50 +00:00
Aodhan Collins
ec08eb5d31 Add Preset Library feature
Presets are saved generation recipes that combine all resource types
(character, outfit, action, style, scene, detailer, look, checkpoint)
with per-field on/off/random toggles. At generation time, entities
marked "random" are picked from the DB and fields marked "random" are
randomly included or excluded.

- Preset model + sync_presets() following existing category pattern
- _resolve_preset_entity() / _resolve_preset_fields() helpers
- Full route set: index, detail, generate, edit, upload, clone, save_json, create (LLM), rescan
- 4 templates: index (gallery), detail (summary + generate), edit (3-way toggle UI), create (LLM form)
- example_01.json reference preset + preset_system.txt LLM prompt
- Presets nav link in layout.html

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 23:49:24 +00:00
Aodhan Collins
2c1c3a7ed7 Merge branch 'presets'
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 23:09:00 +00:00
Aodhan Collins
ee36caccd6 Sort all batch generation queues by JSON filename
All get_missing_* routes and generate_missing routes now order results
by filename (alphabetical) instead of display name or undefined order.
Checkpoint uses checkpoint_path as the equivalent sort key.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 23:08:37 +00:00
Aodhan Collins
e226548471 Merge branch 'logging'
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 23:02:41 +00:00
Aodhan Collins
b9196ef5f5 Add structured logging for job queue and workflow prompts
Replace bare print() calls with Python logging module. Job lifecycle
(enqueue, start, ComfyUI acceptance, completion, failure) now emits
timestamped INFO logs to stdout, captured by Docker. Failures use
logger.exception() for full tracebacks. Workflow prompt block logs as
a single INFO entry; LoRA chain details moved to DEBUG level.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 22:55:53 +00:00
Aodhan Collins
a38915b354 Refactor UI, settings, and code quality across all categories
- Fix Replace Cover: routes now read preview_path from form POST instead of session (session writes from background threads were lost)
- Fix batch generation: submit all jobs immediately, poll all in parallel via Promise.all
- Fix label NameError in character generate route
- Fix style detail missing characters context
- Selected Preview pane: click any image to select it; data-preview-path on all images across all 8 detail templates
- Gallery → Library rename across all index page headings and navbar
- Settings: add configurable LoRA/checkpoint directories; default checkpoint selector moved from navbar to settings page
- Consolidate 6 get_available_*_loras() into single get_available_loras(category) reading from Settings
- ComfyUI tooltip shows currently loaded checkpoint name
- Remove navbar checkpoint bar
- Phase 4 cleanup: remove dead _queue_generation(), add session.modified, standardize log prefixes, rename action_type → action

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 22:48:28 +00:00
Aodhan Collins
da55b0889b Add Docker support and refactor prompt/queue internals
- Add Dockerfile, docker-compose.yml, .dockerignore for containerised deployment
- Extract _resolve_character(), _ensure_character_fields(), _append_background() helpers to eliminate repeated inline character-field injection and background-tag patterns across all secondary-category generate routes
- Add _IDENTITY_KEYS / _WARDROBE_KEYS constants
- Fix build_extras_prompt() bug: detailer prompt (a list) was being appended as a single item instead of extended
- Replace all per-route _finalize closures with _make_finalize() factory, reducing duplication across 10 generate routes
- Add _prune_job_history() called each worker loop iteration to prevent unbounded memory growth
- Remove 10 orphaned legacy finalize_generation HTTP routes and check_status route (superseded by job queue API since job-queue branch)
- Remove one-time migration scripts (migrate_actions, migrate_detailers, migrate_lora_weight_range, migrate_wardrobe)
- Update CLAUDE.md and README.md to document new helpers, queue architecture, and Docker deployment

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 16:46:36 +00:00
Aodhan Collins
9b143e65b1 Redesign gallery grid layout and update CSS across all index pages
Increase card density with more columns per breakpoint (2→6 across sm/xl).
Refactor style.css for consistent card sizing, spacing, and responsive layout.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-04 21:43:40 +00:00
Aodhan Collins
27d2a70867 Merge branch 'job-queue'
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-03 02:33:04 +00:00
1133 changed files with 34029 additions and 24014 deletions

8
.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
venv/
__pycache__/
*.pyc
instance/
flask_session/
static/uploads/
tools/
.git/

219
API_GUIDE.md Normal file
View File

@@ -0,0 +1,219 @@
# GAZE REST API Guide
## Setup
1. Open **Settings** in the GAZE web UI
2. Scroll to **REST API Key** and click **Regenerate**
3. Copy the key — you'll need it for all API requests
## Authentication
Every request must include your API key via one of:
- **Header (recommended):** `X-API-Key: <your-key>`
- **Query parameter:** `?api_key=<your-key>`
Responses for auth failures:
| Status | Meaning |
|--------|---------|
| `401` | Missing API key |
| `403` | Invalid API key |
## Endpoints
### List Presets
```
GET /api/v1/presets
```
Returns all available presets.
**Response:**
```json
{
"presets": [
{
"preset_id": "example_01",
"slug": "example_01",
"name": "Example Preset",
"has_cover": true
}
]
}
```
### Generate Image
```
POST /api/v1/generate/<preset_slug>
```
Queue one or more image generations using a preset's configuration. All body parameters are optional — when omitted, the preset's own settings are used.
**Request body (JSON):**
| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `count` | int | `1` | Number of images to generate (120) |
| `checkpoint` | string | — | Override checkpoint path (e.g. `"Illustrious/model.safetensors"`) |
| `extra_positive` | string | `""` | Additional positive prompt tags appended to the generated prompt |
| `extra_negative` | string | `""` | Additional negative prompt tags |
| `seed` | int | random | Fixed seed for reproducible generation |
| `width` | int | — | Output width in pixels (must provide both width and height) |
| `height` | int | — | Output height in pixels (must provide both width and height) |
**Response (202):**
```json
{
"jobs": [
{ "job_id": "783f0268-ba85-4426-8ca2-6393c844c887", "status": "queued" }
]
}
```
**Errors:**
| Status | Cause |
|--------|-------|
| `400` | Invalid parameters (bad count, seed, or mismatched width/height) |
| `404` | Preset slug not found |
| `500` | Internal generation error |
### Check Job Status
```
GET /api/v1/job/<job_id>
```
Poll this endpoint to track generation progress.
**Response:**
```json
{
"id": "783f0268-ba85-4426-8ca2-6393c844c887",
"label": "Preset: Example Preset preview",
"status": "done",
"error": null,
"result": {
"image_url": "/static/uploads/presets/example_01/gen_1773601346.png",
"relative_path": "presets/example_01/gen_1773601346.png",
"seed": 927640517599332
}
}
```
**Job statuses:**
| Status | Meaning |
|--------|---------|
| `pending` | Waiting in queue |
| `processing` | Currently generating |
| `done` | Complete — `result` contains image info |
| `failed` | Error occurred — check `error` field |
The `result` object is only present when status is `done`. Use `seed` from the result to reproduce the exact same image later.
**Retrieving the image:** The `image_url` is a path relative to the server root. Fetch it directly:
```
GET http://<host>:5782/static/uploads/presets/example_01/gen_1773601346.png
```
Image retrieval does not require authentication.
## Examples
### Generate a single image and wait for it
```bash
API_KEY="your-key-here"
HOST="http://localhost:5782"
# Queue generation
JOB_ID=$(curl -s -X POST \
-H "X-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{}' \
"$HOST/api/v1/generate/example_01" | python3 -c "import sys,json; print(json.load(sys.stdin)['jobs'][0]['job_id'])")
echo "Job: $JOB_ID"
# Poll until done
while true; do
RESULT=$(curl -s -H "X-API-Key: $API_KEY" "$HOST/api/v1/job/$JOB_ID")
STATUS=$(echo "$RESULT" | python3 -c "import sys,json; print(json.load(sys.stdin)['status'])")
echo "Status: $STATUS"
if [ "$STATUS" = "done" ] || [ "$STATUS" = "failed" ]; then
echo "$RESULT" | python3 -m json.tool
break
fi
sleep 5
done
```
### Generate 3 images with extra prompts
```bash
curl -X POST \
-H "X-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"count": 3,
"extra_positive": "smiling, outdoors",
"extra_negative": "blurry"
}' \
"$HOST/api/v1/generate/example_01"
```
### Reproduce a specific image
```bash
curl -X POST \
-H "X-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"seed": 927640517599332}' \
"$HOST/api/v1/generate/example_01"
```
### Python example
```python
import requests
import time
HOST = "http://localhost:5782"
API_KEY = "your-key-here"
HEADERS = {"X-API-Key": API_KEY, "Content-Type": "application/json"}
# List presets
presets = requests.get(f"{HOST}/api/v1/presets", headers=HEADERS).json()
print(f"Available presets: {[p['name'] for p in presets['presets']]}")
# Generate
resp = requests.post(
f"{HOST}/api/v1/generate/{presets['presets'][0]['slug']}",
headers=HEADERS,
json={"count": 1},
).json()
job_id = resp["jobs"][0]["job_id"]
print(f"Queued job: {job_id}")
# Poll
while True:
status = requests.get(f"{HOST}/api/v1/job/{job_id}", headers=HEADERS).json()
print(f"Status: {status['status']}")
if status["status"] in ("done", "failed"):
break
time.sleep(5)
if status["status"] == "done":
image_url = f"{HOST}{status['result']['image_url']}"
print(f"Image: {image_url}")
print(f"Seed: {status['result']['seed']}")
```

336
CLAUDE.md
View File

@@ -10,16 +10,80 @@ The app is deployed locally, connects to a local ComfyUI instance at `http://127
## Architecture ## Architecture
### Entry Point ### File Structure
- `app.py` — Single-file Flask app (~4500+ lines). All routes, helpers, ComfyUI integration, LLM calls, and sync functions live here.
- `models.py` — SQLAlchemy models only. ```
- `comfy_workflow.json` — ComfyUI workflow template with placeholder strings. app.py # ~186 lines: Flask init, config, logging, route registration, startup/migrations
models.py # SQLAlchemy models only
comfy_workflow.json # ComfyUI workflow template with placeholder strings
utils.py # Pure constants + helpers (no Flask/DB deps)
services/
__init__.py
comfyui.py # ComfyUI HTTP client (queue_prompt, get_history, get_image)
workflow.py # Workflow building (_prepare_workflow, _apply_checkpoint_settings)
prompts.py # Prompt building + dedup (build_prompt, build_extras_prompt)
llm.py # LLM integration + MCP tool calls (call_llm, load_prompt)
mcp.py # MCP/Docker server lifecycle (ensure_mcp_server_running)
sync.py # All sync_*() functions + preset resolution helpers
job_queue.py # Background job queue (_enqueue_job, _make_finalize, worker thread)
file_io.py # LoRA/checkpoint scanning, file helpers
generation.py # Shared generation logic (generate_from_preset)
routes/
__init__.py # register_routes(app) — imports and calls all route modules
characters.py # Character CRUD + generation + outfit management
outfits.py # Outfit routes
actions.py # Action routes
styles.py # Style routes
scenes.py # Scene routes
detailers.py # Detailer routes
checkpoints.py # Checkpoint routes
looks.py # Look routes
presets.py # Preset routes
generator.py # Generator mix-and-match page
gallery.py # Gallery browsing + image/resource deletion
settings.py # Settings page + status APIs + context processors
strengths.py # Strengths gallery system
transfer.py # Resource transfer system
queue_api.py # /api/queue/* endpoints
api.py # REST API v1 (preset generation, auth)
regenerate.py # Tag regeneration (single + bulk, via LLM queue)
search.py # Global search across resources and gallery images
```
### Dependency Graph
```
app.py
├── models.py (unchanged)
├── utils.py (no deps except stdlib)
├── services/
│ ├── comfyui.py ← utils (for config)
│ ├── prompts.py ← utils, models
│ ├── workflow.py ← prompts, utils, models
│ ├── llm.py ← mcp (for tool calls)
│ ├── mcp.py ← (stdlib only: subprocess, os)
│ ├── sync.py ← models, utils
│ ├── job_queue.py ← comfyui, models
│ ├── file_io.py ← models, utils
│ └── generation.py ← prompts, workflow, job_queue, sync, models
└── routes/
├── All route modules ← services/*, utils, models
└── (routes never import from other routes)
```
**No circular imports**: routes → services → utils/models. Services never import routes. Utils never imports services.
### Route Registration Pattern
Routes use a `register_routes(app)` closure pattern — each route module defines a function that receives the Flask `app` object and registers routes via `@app.route()` closures. This preserves all existing `url_for()` endpoint names without requiring Blueprint prefixes. Helper functions used only by routes in that module are defined inside `register_routes()` before the routes that reference them.
### Database ### Database
SQLite at `instance/database.db`, managed by Flask-SQLAlchemy. The DB is a cache of the JSON files on disk — the JSON files are the source of truth. SQLite at `instance/database.db`, managed by Flask-SQLAlchemy. The DB is a cache of the JSON files on disk — the JSON files are the source of truth.
**Models**: `Character`, `Look`, `Outfit`, `Action`, `Style`, `Scene`, `Detailer`, `Checkpoint`, `Settings` **Models**: `Character`, `Look`, `Outfit`, `Action`, `Style`, `Scene`, `Detailer`, `Checkpoint`, `Settings`
The `Settings` model stores LLM provider config, LoRA/checkpoint directory paths, default checkpoint, and `api_key` for REST API authentication.
All category models (except Settings and Checkpoint) share this pattern: All category models (except Settings and Checkpoint) share this pattern:
- `{entity}_id` — canonical ID (from JSON, often matches filename without extension) - `{entity}_id` — canonical ID (from JSON, often matches filename without extension)
- `slug` — URL-safe version of the ID (alphanumeric + underscores only, via `re.sub(r'[^a-zA-Z0-9_]', '', id)`) - `slug` — URL-safe version of the ID (alphanumeric + underscores only, via `re.sub(r'[^a-zA-Z0-9_]', '', id)`)
@@ -28,6 +92,8 @@ All category models (except Settings and Checkpoint) share this pattern:
- `data` — full JSON blob (SQLAlchemy JSON column) - `data` — full JSON blob (SQLAlchemy JSON column)
- `default_fields` — list of `section::key` strings saved as the user's preferred prompt fields - `default_fields` — list of `section::key` strings saved as the user's preferred prompt fields
- `image_path` — relative path under `static/uploads/` - `image_path` — relative path under `static/uploads/`
- `is_favourite` — boolean (DB-only, not in JSON; toggled from detail pages)
- `is_nsfw` — boolean (mirrored in both DB column and JSON `tags.nsfw`; synced on rescan)
### Data Flow: JSON → DB → Prompt → ComfyUI ### Data Flow: JSON → DB → Prompt → ComfyUI
@@ -65,52 +131,92 @@ LoRA nodes chain: `4 → 16 → 17 → 18 → 19`. Unused LoRA nodes are bypasse
--- ---
## Key Helpers ## Key Functions by Module
### `build_prompt(data, selected_fields, default_fields, active_outfit)` ### `utils.py` — Constants and Pure Helpers
Converts a character (or combined) data dict into `{"main", "face", "hand"}` prompt strings.
Field selection priority: - **`_IDENTITY_KEYS` / `_WARDROBE_KEYS`** — Lists of canonical field names for the `identity` and `wardrobe` sections. Used by `_ensure_character_fields()`.
1. `selected_fields` (from form submission) — if non-empty, use it exclusively - **`ALLOWED_EXTENSIONS`** — Permitted upload file extensions.
2. `default_fields` (saved in DB per character) — used if no form selection - **`_LORA_DEFAULTS`** — Default LoRA directory paths per category.
3. Select all (fallback) - **`parse_orientation(orientation_str)`** — Converts orientation codes (`1F`, `2F`, `1M1F`, etc.) into Danbooru tags.
- **`_resolve_lora_weight(lora_data)`** — Extracts and validates LoRA weight from a lora data dict.
- **`allowed_file(filename)`** — Checks file extension against `ALLOWED_EXTENSIONS`.
Fields are addressed as `"section::key"` strings (e.g. `"identity::hair"`, `"wardrobe::top"`, `"special::name"`, `"lora::lora_triggers"`). ### `services/prompts.py` — Prompt Building
Wardrobe format: Characters support a **nested** format where `wardrobe` is a dict of outfit names → outfit dicts (e.g. `{"default": {...}, "swimsuit": {...}}`). Legacy characters have a flat `wardrobe` dict. `Character.get_active_wardrobe()` handles both. - **`build_prompt(data, selected_fields, default_fields, active_outfit)`** — Converts a character (or combined) data dict into `{"main", "face", "hand"}` prompt strings. Field selection priority: `selected_fields` `default_fields` → select all (fallback). Fields are addressed as `"section::key"` strings (e.g. `"identity::hair"`, `"wardrobe::top"`). Characters support a **nested** wardrobe format where `wardrobe` is a dict of outfit names → outfit dicts.
- **`build_extras_prompt(actions, outfits, scenes, styles, detailers)`** — Used by the Generator page. Combines prompt text from all checked items across categories into a single string.
- **`_cross_dedup_prompts(positive, negative)`** — Cross-deduplicates tags between positive and negative prompt strings. Equal counts cancel completely; excess on one side is retained.
- **`_resolve_character(character_slug)`** — Returns a `Character` ORM object for a given slug string. Handles `"__random__"` sentinel.
- **`_ensure_character_fields(character, selected_fields, ...)`** — Mutates `selected_fields` in place, appending populated identity/wardrobe keys. Called in every secondary-category generate route after `_resolve_character()`.
- **`_append_background(prompts, character=None)`** — Appends `"<primary_color> simple background"` tag to `prompts['main']`.
### `build_extras_prompt(actions, outfits, scenes, styles, detailers)` ### `services/workflow.py` — Workflow Wiring
Used by the Generator page. Combines prompt text from all checked items across categories into a single string. LoRA triggers, wardrobe fields, scene fields, style fields, detailer prompts — all concatenated.
### `_prepare_workflow(workflow, character, prompts, checkpoint, custom_negative, outfit, action, style, detailer, scene, width, height, checkpoint_data, look)` - **`_prepare_workflow(workflow, character, prompts, ...)`** — Core workflow wiring function. Replaces prompt placeholders, chains LoRA nodes dynamically, randomises seeds, applies checkpoint settings, runs cross-dedup as the final step.
The core workflow wiring function. Mutates the loaded workflow dict in place and returns it. Key behaviours: - **`_apply_checkpoint_settings(workflow, ckpt_data)`** — Applies checkpoint-specific sampler/prompt/VAE settings.
- Replaces `{{POSITIVE_PROMPT}}`, `{{FACE_PROMPT}}`, `{{HAND_PROMPT}}` in node inputs. - **`_get_default_checkpoint()`** — Returns `(checkpoint_path, checkpoint_data)` from session, database Settings, or workflow file fallback.
- If `look` is provided, uses the Look's LoRA in node 16 instead of the character's LoRA, and prepends the Look's negative to node 7. - **`_log_workflow_prompts(label, workflow)`** — Logs the fully assembled workflow prompts in a readable block.
- Chains LoRA nodes dynamically — only active LoRAs participate in the chain.
- Randomises seeds for nodes 3, 11, 13.
- Applies checkpoint-specific settings (steps, cfg, sampler, VAE, base prompts) via `_apply_checkpoint_settings`.
- Runs `_cross_dedup_prompts` on nodes 6 and 7 as the final step before returning.
### `_cross_dedup_prompts(positive, negative)` ### `services/job_queue.py` — Background Job Queue
Cross-deduplicates tags between the positive and negative prompt strings. For each tag present in both, repeatedly removes the first occurrence from each side until the tag exists on only one side (or neither). Equal counts cancel completely; any excess on one side is retained. This allows deliberate overrides: adding a tag twice in positive while it appears once in negative leaves one copy in positive.
Called as the last step of `_prepare_workflow`, after `_apply_checkpoint_settings` has added `base_positive`/`base_negative`, so it operates on fully-assembled prompts. Two independent queues with separate worker threads:
### `_queue_generation(character, action, selected_fields, client_id)` - **ComfyUI queue** (`_job_queue` + `_queue_worker`): Image generation jobs.
Convenience wrapper for character detail page generation. Loads workflow, calls `build_prompt`, calls `_prepare_workflow`, calls `queue_prompt`. - **`_enqueue_job(label, workflow, finalize_fn)`** — Adds a generation job to the queue.
- **`_make_finalize(category, slug, db_model_class=None, action=None)`** — Factory returning a callback that retrieves the generated image from ComfyUI, saves it, and optionally updates the DB cover image.
- **LLM queue** (`_llm_queue` + `_llm_queue_worker`): LLM task jobs (tag regeneration, bulk create with overwrite).
- **`_enqueue_task(label, task_fn)`** — Adds an LLM task job. `task_fn` receives the job dict and runs inside `app.app_context()`.
- **Shared**: Both queues share `_job_history` (for status lookup by job ID) and `_job_queue_lock`.
- **`_prune_job_history(max_age_seconds=3600)`** — Removes old terminal-state jobs from memory.
- **`init_queue_worker(flask_app)`** — Stores the app reference and starts both worker threads.
### `_queue_detailer_generation(detailer_obj, character, selected_fields, client_id, action, extra_positive, extra_negative)` ### `services/comfyui.py` — ComfyUI HTTP Client
Generation helper for the detailer detail page. Merges the detailer's `prompt` list (flattened — `prompt` may be a list or string) and LoRA triggers into the character data before calling `build_prompt`. Appends `extra_positive` to `prompts["main"]` and passes `extra_negative` as `custom_negative` to `_prepare_workflow`. Accepts an optional `action` (Action model object) passed through to `_prepare_workflow` for node 18 LoRA wiring.
### `_get_default_checkpoint()` - **`queue_prompt(prompt_workflow, client_id)`** — POSTs workflow to ComfyUI's `/prompt` endpoint.
Returns `(checkpoint_path, checkpoint_data)` from the Flask session's `default_checkpoint` key. The global default checkpoint is set via the navbar dropdown and stored server-side in the filesystem session. - **`get_history(prompt_id)`** — Polls ComfyUI for job completion.
- **`get_image(filename, subfolder, folder_type)`** — Retrieves generated image bytes.
- **`_ensure_checkpoint_loaded(checkpoint_path)`** — Forces ComfyUI to load a specific checkpoint.
### `call_llm(prompt, system_prompt)` ### `services/llm.py` — LLM Integration
OpenAI-compatible chat completion call supporting:
- **OpenRouter** (cloud, configured API key + model)
- **Ollama** / **LMStudio** (local, configured base URL + model)
Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_tags, validate_tags, suggest_tags) via an MCP Docker container (`danbooru-mcp:latest`). If the provider rejects tools (HTTP 400), retries without tools. - **`call_llm(prompt, system_prompt)`** — OpenAI-compatible chat completion supporting OpenRouter (cloud) and Ollama/LMStudio (local). Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` via MCP Docker container. Safe to call from background threads (uses `has_request_context()` fallback for OpenRouter HTTP-Referer header).
- **`load_prompt(filename)`** — Loads system prompt text from `data/prompts/`.
- **`call_mcp_tool()`** — Synchronous wrapper for MCP tool calls.
### `services/sync.py` — Data Synchronization
- **`sync_characters()`, `sync_outfits()`, `sync_actions()`, etc.** — Load JSON files from `data/` directories into SQLite. One function per category.
- **`_sync_nsfw_from_tags(entity, data)`** — Reads `data['tags']['nsfw']` and sets `entity.is_nsfw`. Called in every sync function on both create and update paths.
- **`_resolve_preset_entity(type, id)`** / **`_resolve_preset_fields(preset_data)`** — Preset resolution helpers.
### `services/file_io.py` — File & DB Helpers
- **`get_available_loras(category)`** — Scans filesystem for available LoRA files in a category.
- **`get_available_checkpoints()`** — Scans checkpoint directories.
- **`_count_look_assignments()`** / **`_count_outfit_lora_assignments()`** — DB aggregate queries.
### `services/generation.py` — Shared Generation Logic
- **`generate_from_preset(preset, overrides=None)`** — Core preset generation function used by both the web route and the REST API. Resolves entities, builds prompts, wires the workflow, and enqueues the job. The `overrides` dict accepts: `action`, `checkpoint`, `extra_positive`, `extra_negative`, `seed`, `width`, `height`. Has no `request` or `session` dependencies.
### `services/mcp.py` — MCP/Docker Lifecycle
- **`ensure_mcp_server_running()`** — Ensures the danbooru-mcp Docker container is running.
- **`ensure_character_mcp_server_running()`** — Ensures the character-mcp Docker container is running.
### Route-local Helpers
Some helpers are defined inside a route module's `register_routes()` since they're only used by routes in that file:
- `routes/scenes.py`: `_queue_scene_generation()` — scene-specific workflow builder
- `routes/detailers.py`: `_queue_detailer_generation()` — detailer-specific generation helper
- `routes/styles.py`: `_build_style_workflow()` — style-specific workflow builder
- `routes/checkpoints.py`: `_build_checkpoint_workflow()` — checkpoint-specific workflow builder
- `routes/strengths.py`: `_build_strengths_prompts()`, `_prepare_strengths_workflow()` — strengths gallery helpers
- `routes/transfer.py`: `_create_minimal_template()` — transfer template builder
- `routes/gallery.py`: `_scan_gallery_images()`, `_enrich_with_names()`, `_parse_comfy_png_metadata()`, `_write_sidecar()` — gallery image sidecar JSON I/O
- `routes/regenerate.py`: Tag regeneration routes (single + category bulk + all), tag migration
- `routes/search.py`: `_search_resources()`, `_search_images()` — global search across resources and gallery
--- ---
@@ -128,7 +234,7 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
}, },
"styles": { "aesthetic": "", "primary_color": "", "secondary_color": "", "tertiary_color": "" }, "styles": { "aesthetic": "", "primary_color": "", "secondary_color": "", "tertiary_color": "" },
"lora": { "lora_name": "Illustrious/Looks/tifa.safetensors", "lora_weight": 0.8, "lora_triggers": "" }, "lora": { "lora_name": "Illustrious/Looks/tifa.safetensors", "lora_weight": 0.8, "lora_triggers": "" },
"tags": [], "tags": { "origin_series": "Final Fantasy VII", "origin_type": "game", "nsfw": false },
"participants": { "orientation": "1F", "solo_focus": "true" } "participants": { "orientation": "1F", "solo_focus": "true" }
} }
``` ```
@@ -141,7 +247,7 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"outfit_name": "French Maid", "outfit_name": "French Maid",
"wardrobe": { "full_body": "", "headwear": "", "top": "", "bottom": "", "legwear": "", "footwear": "", "hands": "", "accessories": "" }, "wardrobe": { "full_body": "", "headwear": "", "top": "", "bottom": "", "legwear": "", "footwear": "", "hands": "", "accessories": "" },
"lora": { "lora_name": "Illustrious/Clothing/maid.safetensors", "lora_weight": 0.8, "lora_triggers": "" }, "lora": { "lora_name": "Illustrious/Clothing/maid.safetensors", "lora_weight": 0.8, "lora_triggers": "" },
"tags": [] "tags": { "outfit_type": "Uniform", "nsfw": false }
} }
``` ```
@@ -152,7 +258,7 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"action_name": "Sitting", "action_name": "Sitting",
"action": { "full_body": "", "additional": "", "head": "", "eyes": "", "arms": "", "hands": "" }, "action": { "full_body": "", "additional": "", "head": "", "eyes": "", "arms": "", "hands": "" },
"lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" }, "lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" },
"tags": [] "tags": { "participants": "1girl", "nsfw": false }
} }
``` ```
@@ -163,7 +269,7 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"scene_name": "Beach", "scene_name": "Beach",
"scene": { "background": "", "foreground": "", "furniture": "", "colors": "", "lighting": "", "theme": "" }, "scene": { "background": "", "foreground": "", "furniture": "", "colors": "", "lighting": "", "theme": "" },
"lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" }, "lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" },
"tags": [] "tags": { "scene_type": "Outdoor", "nsfw": false }
} }
``` ```
@@ -173,7 +279,8 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"style_id": "watercolor", "style_id": "watercolor",
"style_name": "Watercolor", "style_name": "Watercolor",
"style": { "artist_name": "", "artistic_style": "" }, "style": { "artist_name": "", "artistic_style": "" },
"lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" } "lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" },
"tags": { "style_type": "Watercolor", "nsfw": false }
} }
``` ```
@@ -184,7 +291,8 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"detailer_name": "Detailed Skin", "detailer_name": "Detailed Skin",
"prompt": ["detailed skin", "pores"], "prompt": ["detailed skin", "pores"],
"focus": { "face": true, "hands": true }, "focus": { "face": true, "hands": true },
"lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" } "lora": { "lora_name": "", "lora_weight": 1.0, "lora_triggers": "" },
"tags": { "associated_resource": "skin", "adetailer_targets": ["face", "hands"], "nsfw": false }
} }
``` ```
@@ -197,7 +305,7 @@ Implements a tool-calling loop (up to 10 turns) using `DANBOORU_TOOLS` (search_t
"positive": "casual clothes, jeans", "positive": "casual clothes, jeans",
"negative": "revealing", "negative": "revealing",
"lora": { "lora_name": "Illustrious/Looks/tifa_casual.safetensors", "lora_weight": 0.85, "lora_triggers": "" }, "lora": { "lora_name": "Illustrious/Looks/tifa_casual.safetensors", "lora_weight": 0.85, "lora_triggers": "" },
"tags": [] "tags": { "origin_series": "Final Fantasy VII", "origin_type": "game", "nsfw": false }
} }
``` ```
Looks occupy LoRA node 16, overriding the character's own LoRA. The Look's `negative` is prepended to the workflow's negative prompt. Looks occupy LoRA node 16, overriding the character's own LoRA. The Look's `negative` is prepended to the workflow's negative prompt.
@@ -225,8 +333,7 @@ Checkpoint JSONs are keyed by `checkpoint_path`. If no JSON exists for a discove
### Characters ### Characters
- `GET /` — character gallery (index) - `GET /` — character gallery (index)
- `GET /character/<slug>` — character detail with generation UI - `GET /character/<slug>` — character detail with generation UI
- `POST /character/<slug>/generate` — queue generation (AJAX or form) - `POST /character/<slug>/generate` — queue generation (AJAX or form); returns `{"job_id": ...}`
- `POST /character/<slug>/finalize_generation/<prompt_id>` — retrieve image from ComfyUI
- `POST /character/<slug>/replace_cover_from_preview` — promote preview to cover - `POST /character/<slug>/replace_cover_from_preview` — promote preview to cover
- `GET/POST /character/<slug>/edit` — edit character data - `GET/POST /character/<slug>/edit` — edit character data
- `POST /character/<slug>/upload` — upload cover image - `POST /character/<slug>/upload` — upload cover image
@@ -237,14 +344,14 @@ Checkpoint JSONs are keyed by `checkpoint_path`. If no JSON exists for a discove
### Category Pattern (Outfits, Actions, Styles, Scenes, Detailers) ### Category Pattern (Outfits, Actions, Styles, Scenes, Detailers)
Each category follows the same URL pattern: Each category follows the same URL pattern:
- `GET /<category>/`gallery - `GET /<category>/`library with favourite/NSFW filter controls
- `GET /<category>/<slug>` — detail + generation UI - `GET /<category>/<slug>` — detail + generation UI
- `POST /<category>/<slug>/generate` — queue generation - `POST /<category>/<slug>/generate` — queue generation; returns `{"job_id": ...}`
- `POST /<category>/<slug>/finalize_generation/<prompt_id>` — retrieve image
- `POST /<category>/<slug>/replace_cover_from_preview` - `POST /<category>/<slug>/replace_cover_from_preview`
- `GET/POST /<category>/<slug>/edit` - `GET/POST /<category>/<slug>/edit`
- `POST /<category>/<slug>/upload` - `POST /<category>/<slug>/upload`
- `POST /<category>/<slug>/save_defaults` - `POST /<category>/<slug>/save_defaults`
- `POST /<category>/<slug>/favourite` — toggle `is_favourite` (AJAX)
- `POST /<category>/<slug>/clone` — duplicate entry - `POST /<category>/<slug>/clone` — duplicate entry
- `POST /<category>/<slug>/save_json` — save raw JSON (from modal editor) - `POST /<category>/<slug>/save_json` — save raw JSON (from modal editor)
- `POST /<category>/rescan` - `POST /<category>/rescan`
@@ -254,15 +361,13 @@ Each category follows the same URL pattern:
- `GET /looks` — gallery - `GET /looks` — gallery
- `GET /look/<slug>` — detail - `GET /look/<slug>` — detail
- `GET/POST /look/<slug>/edit` - `GET/POST /look/<slug>/edit`
- `POST /look/<slug>/generate` - `POST /look/<slug>/generate` — queue generation; returns `{"job_id": ...}`
- `POST /look/<slug>/finalize_generation/<prompt_id>`
- `POST /look/<slug>/replace_cover_from_preview` - `POST /look/<slug>/replace_cover_from_preview`
- `GET/POST /look/create` - `GET/POST /look/create`
- `POST /looks/rescan` - `POST /looks/rescan`
### Generator (Mix & Match) ### Generator (Mix & Match)
- `GET/POST /generator` — freeform generator with multi-select accordion UI - `GET/POST /generator` — freeform generator with multi-select accordion UI
- `POST /generator/finalize/<slug>/<prompt_id>` — retrieve image
- `POST /generator/preview_prompt` — AJAX: preview composed prompt without generating - `POST /generator/preview_prompt` — AJAX: preview composed prompt without generating
### Checkpoints ### Checkpoints
@@ -271,12 +376,39 @@ Each category follows the same URL pattern:
- `POST /checkpoint/<slug>/save_json` - `POST /checkpoint/<slug>/save_json`
- `POST /checkpoints/rescan` - `POST /checkpoints/rescan`
### REST API (`/api/v1/`)
Authenticated via `X-API-Key` header (or `api_key` query param). Key is stored in `Settings.api_key` and managed from the Settings page.
- `GET /api/v1/presets` — list all presets (id, slug, name, has_cover)
- `POST /api/v1/generate/<preset_slug>` — queue generation from a preset; accepts JSON body with optional `checkpoint`, `extra_positive`, `extra_negative`, `seed`, `width`, `height`, `count` (120); returns `{"jobs": [{"job_id": ..., "status": "queued"}]}`
- `GET /api/v1/job/<job_id>` — poll job status; returns `{"id", "label", "status", "error", "result"}`
- `POST /api/key/regenerate` — generate a new API key (Settings page)
See `API_GUIDE.md` for full usage examples.
### Job Queue API
All generation routes use the background job queue. Frontend polls:
- `GET /api/queue/<job_id>/status` — returns `{"status": "pending"|"running"|"done"|"failed", "result": {...}}`
Image retrieval is handled server-side by the `_make_finalize()` callback; there are no separate client-facing finalize routes.
### Search
- `GET /search` — global search page; query params: `q` (search term), `category` (all/characters/outfits/etc.), `nsfw` (all/sfw/nsfw), `type` (all/resources/images)
### Tag Regeneration
- `POST /api/<category>/<slug>/regenerate_tags` — single entity tag regeneration via LLM queue
- `POST /admin/bulk_regenerate_tags/<category>` — queue LLM tag regeneration for all entities in a category
- `POST /admin/bulk_regenerate_tags` — queue LLM tag regeneration for all resources across all categories
- `POST /admin/migrate_tags` — convert old list-format tags to new dict format
### Gallery Image Metadata
- `POST /gallery/image/favourite` — toggle favourite on a gallery image (writes sidecar JSON)
- `POST /gallery/image/nsfw` — toggle NSFW on a gallery image (writes sidecar JSON)
### Utilities ### Utilities
- `POST /set_default_checkpoint` — save default checkpoint to session - `POST /set_default_checkpoint` — save default checkpoint to session and persist to `comfy_workflow.json`
- `GET /check_status/<prompt_id>` — poll ComfyUI for completion - `GET /get_missing_{characters,outfits,actions,scenes,styles,detailers,looks,checkpoints}` — AJAX: list items without cover images (sorted by display name)
- `GET /get_missing_{characters,outfits,actions,scenes}` — AJAX: list items without cover images - `POST /generate_missing` — batch generate covers for all characters missing one (uses job queue)
- `POST /generate_missing` — batch generate covers for characters - `POST /clear_all_covers` / `clear_all_{outfit,action,scene,style,detailer,look,checkpoint}_covers`
- `POST /clear_all_covers` / `clear_all_{outfit,action,scene}_covers`
- `GET /gallery` — global image gallery browsing `static/uploads/` - `GET /gallery` — global image gallery browsing `static/uploads/`
- `GET/POST /settings` — LLM provider configuration - `GET/POST /settings` — LLM provider configuration
- `POST /resource/<category>/<slug>/delete` — soft (JSON only) or hard (JSON + safetensors) delete - `POST /resource/<category>/<slug>/delete` — soft (JSON only) or hard (JSON + safetensors) delete
@@ -293,9 +425,15 @@ Each category follows the same URL pattern:
- Global default checkpoint selector (saves to session via AJAX) - Global default checkpoint selector (saves to session via AJAX)
- Resource delete modal (soft/hard) shared across gallery pages - Resource delete modal (soft/hard) shared across gallery pages
- `initJsonEditor(saveUrl)` — shared JSON editor modal (simple form + raw textarea tabs) - `initJsonEditor(saveUrl)` — shared JSON editor modal (simple form + raw textarea tabs)
- Context processors inject `all_checkpoints`, `default_checkpoint_path`, and `COMFYUI_WS_URL` into every template. - Context processors inject `all_checkpoints`, `default_checkpoint_path`, and `COMFYUI_WS_URL` into every template. The `random_gen_image(category, slug)` template global returns a random image path from `static/uploads/<category>/<slug>/` for use as a fallback cover when `image_path` is not set.
- **No `{% block head %}` exists** in layout.html — do not try to use it. - **No `{% block head %}` exists** in layout.html — do not try to use it.
- Generation is async: JS submits the form via AJAX (`X-Requested-With: XMLHttpRequest`), receives a `prompt_id`, opens a WebSocket to ComfyUI to show progress, then calls the finalize endpoint to save the image. - Generation is async: JS submits the form via AJAX (`X-Requested-With: XMLHttpRequest`), receives a `{"job_id": ...}` response, then polls `/api/queue/<job_id>/status` every ~1.5 seconds until `status == "done"`. The server-side worker handles all ComfyUI polling and image saving via the `_make_finalize()` callback. There are no client-facing finalize HTTP routes.
- **Batch generation** (library pages): Uses a two-phase pattern:
1. **Queue phase**: All jobs are submitted upfront via sequential fetch calls, collecting job IDs
2. **Poll phase**: All jobs are polled concurrently via `Promise.all()`, updating UI as each completes
3. **Progress tracking**: Displays currently processing items in real-time using a `Set` to track active jobs
4. **Sorting**: All batch operations sort items by display `name` (not `filename`) for better UX
- **Fallback covers** (library pages): When a resource has no assigned `image_path` but has generated images in its upload folder, a random image is shown at 50% opacity (CSS class `fallback-cover`). The image changes on each page load. Resources with no generations show "No Image".
--- ---
@@ -306,8 +444,10 @@ Text files in `data/prompts/` define JSON output schemas for LLM-generated entri
- `character_system.txt` — character JSON schema - `character_system.txt` — character JSON schema
- `outfit_system.txt` — outfit JSON schema - `outfit_system.txt` — outfit JSON schema
- `action_system.txt`, `scene_system.txt`, `style_system.txt`, `detailer_system.txt`, `look_system.txt`, `checkpoint_system.txt` - `action_system.txt`, `scene_system.txt`, `style_system.txt`, `detailer_system.txt`, `look_system.txt`, `checkpoint_system.txt`
- `preset_system.txt` — preset JSON schema
- `regenerate_tags_system.txt` — tag regeneration schema (all per-category tag structures)
Used by: character/outfit/action/scene/style create forms, and bulk_create routes. Used by: character/outfit/action/scene/style create forms, bulk_create routes, and tag regeneration. All system prompts include NSFW awareness preamble.
### Danbooru MCP Tools ### Danbooru MCP Tools
The LLM loop in `call_llm()` provides three tools via a Docker-based MCP server (`danbooru-mcp:latest`): The LLM loop in `call_llm()` provides three tools via a Docker-based MCP server (`danbooru-mcp:latest`):
@@ -321,6 +461,41 @@ All system prompts (`character_system.txt`, `outfit_system.txt`, `action_system.
--- ---
## Tagging System
Tags are **semantic metadata** for organizing and filtering resources. They are **not injected into generation prompts** — tags are purely for the UI (search, filtering, categorization).
### Tag Schema Per Category
| Category | Tag fields | Example |
|----------|-----------|---------|
| Character | `origin_series`, `origin_type`, `nsfw` | `{"origin_series": "Final Fantasy VII", "origin_type": "game", "nsfw": false}` |
| Look | `origin_series`, `origin_type`, `nsfw` | same as Character |
| Outfit | `outfit_type`, `nsfw` | `{"outfit_type": "Uniform", "nsfw": false}` |
| Action | `participants`, `nsfw` | `{"participants": "1girl, 1boy", "nsfw": true}` |
| Style | `style_type`, `nsfw` | `{"style_type": "Anime", "nsfw": false}` |
| Scene | `scene_type`, `nsfw` | `{"scene_type": "Indoor", "nsfw": false}` |
| Detailer | `associated_resource`, `adetailer_targets`, `nsfw` | `{"associated_resource": "skin", "adetailer_targets": ["face", "hands"], "nsfw": false}` |
| Checkpoint | `art_style`, `base_model`, `nsfw` | `{"art_style": "anime", "base_model": "Illustrious", "nsfw": false}` |
### Favourite / NSFW Columns
- `is_favourite` — DB-only boolean. Toggled via `POST /<category>/<slug>/favourite`. Not stored in JSON (user preference, not asset metadata).
- `is_nsfw` — DB column **and** `tags.nsfw` in JSON. Synced from JSON on rescan via `_sync_nsfw_from_tags()`. Editable from edit pages.
### Library Filtering
All library index pages support query params:
- `?favourite=on` — show only favourites
- `?nsfw=sfw|nsfw|all` — filter by NSFW status
- Results are ordered by `is_favourite DESC, name ASC` (favourites sort first).
### Gallery Image Sidecar Files
Gallery images can have per-image favourite/NSFW metadata stored in sidecar JSON files at `{image_path}.json` (e.g. `static/uploads/characters/tifa/gen_123.png.json`). Sidecar schema: `{"is_favourite": bool, "is_nsfw": bool}`.
---
## LoRA File Paths ## LoRA File Paths
LoRA filenames in JSON are stored as paths relative to ComfyUI's `models/lora/` root: LoRA filenames in JSON are stored as paths relative to ComfyUI's `models/lora/` root:
@@ -347,13 +522,14 @@ Absolute paths on disk:
To add a new content category (e.g. "Poses" as a separate concept from Actions), the pattern is: To add a new content category (e.g. "Poses" as a separate concept from Actions), the pattern is:
1. **Model** (`models.py`): Add a new SQLAlchemy model with the standard fields. 1. **Model** (`models.py`): Add a new SQLAlchemy model with the standard fields.
2. **Sync function** (`app.py`): Add `sync_newcategory()` following the pattern of `sync_outfits()`. 2. **Sync function** (`services/sync.py`): Add `sync_newcategory()` following the pattern of `sync_outfits()`.
3. **Data directory**: Add `app.config['NEWCATEGORY_DIR'] = 'data/newcategory'`. 3. **Data directory** (`app.py`): Add `app.config['NEWCATEGORY_DIR'] = 'data/newcategory'`.
4. **Routes**: Implement index, detail, edit, generate, finalize_generation, replace_cover_from_preview, upload, save_defaults, clone, rescan routes. Follow the outfit/scene pattern exactly. 4. **Routes** (`routes/newcategory.py`): Create a new route module with a `register_routes(app)` function. Implement index, detail, edit, generate, replace_cover_from_preview, upload, save_defaults, clone, rescan routes. Follow `routes/outfits.py` or `routes/scenes.py` exactly.
5. **Templates**: Create `templates/newcategory/{index,detail,edit,create}.html` extending `layout.html`. 5. **Route registration** (`routes/__init__.py`): Import and call `newcategory.register_routes(app)`.
6. **Nav**: Add link to navbar in `templates/layout.html`. 6. **Templates**: Create `templates/newcategory/{index,detail,edit,create}.html` extending `layout.html`.
7. **`with_appcontext`**: Call `sync_newcategory()` in the `with app.app_context()` block at the bottom of `app.py`. 7. **Nav**: Add link to navbar in `templates/layout.html`.
8. **Generator page**: Add to `generator()` route, `build_extras_prompt()`, and `templates/generator.html` accordion. 8. **Startup** (`app.py`): Import and call `sync_newcategory()` in the `with app.app_context()` block.
9. **Generator page**: Add to `routes/generator.py`, `services/prompts.py` `build_extras_prompt()`, and `templates/generator.html` accordion.
--- ---
@@ -374,6 +550,8 @@ The Flask filesystem session stores:
## Running the App ## Running the App
### Directly (development)
```bash ```bash
cd /mnt/alexander/Projects/character-browser cd /mnt/alexander/Projects/character-browser
source venv/bin/activate source venv/bin/activate
@@ -384,6 +562,25 @@ The app runs in debug mode on port 5000 by default. ComfyUI must be running at `
The DB is initialised and all sync functions are called inside `with app.app_context():` at the bottom of `app.py` before `app.run()`. The DB is initialised and all sync functions are called inside `with app.app_context():` at the bottom of `app.py` before `app.run()`.
### Docker
```bash
docker compose up -d
```
The compose file (`docker-compose.yml`) runs two services:
- **`danbooru-mcp`** — built from `https://git.liveaodh.com/aodhan/danbooru-mcp.git`; the MCP tag-search container used by `call_llm()`.
- **`app`** — the Flask app, exposed on host port **5782** → container port 5000.
Key environment variables set by compose:
- `COMFYUI_URL=http://10.0.0.200:8188` — points at ComfyUI on the Docker host network.
- `SKIP_MCP_AUTOSTART=true` — disables the app's built-in danbooru-mcp launch logic (compose manages it).
Volumes mounted into the app container:
- `./data`, `./static/uploads`, `./instance`, `./flask_session` — persistent app data.
- `/Volumes/ImageModels:/ImageModels:ro` — model files for checkpoint/LoRA scanning (**requires Docker Desktop file sharing enabled for `/Volumes/ImageModels`**).
- `/var/run/docker.sock` — Docker socket so the app can exec danbooru-mcp tool containers.
--- ---
## Common Pitfalls ## Common Pitfalls
@@ -395,4 +592,7 @@ The DB is initialised and all sync functions are called inside `with app.app_con
- **LoRA chaining**: If a LoRA node has no LoRA (name is empty/None), the node is skipped and `model_source`/`clip_source` pass through unchanged. Do not set the node inputs for skipped nodes. - **LoRA chaining**: If a LoRA node has no LoRA (name is empty/None), the node is skipped and `model_source`/`clip_source` pass through unchanged. Do not set the node inputs for skipped nodes.
- **AJAX detection**: `request.headers.get('X-Requested-With') == 'XMLHttpRequest'` determines whether to return JSON or redirect. - **AJAX detection**: `request.headers.get('X-Requested-With') == 'XMLHttpRequest'` determines whether to return JSON or redirect.
- **Session must be marked modified for JSON responses**: After setting session values in AJAX-responding routes, set `session.modified = True`. - **Session must be marked modified for JSON responses**: After setting session values in AJAX-responding routes, set `session.modified = True`.
- **Detailer `prompt` is a list**: The `prompt` field in detailer JSON is stored as a list of strings (e.g. `["detailed skin", "pores"]`), not a plain string. When merging into `tags` for `build_prompt`, use `extend` for lists and `append` for strings — never append the list object itself or `", ".join()` will fail on the nested list item. - **Detailer `prompt` is a list**: The `prompt` field in detailer JSON is stored as a list of strings (e.g. `["detailed skin", "pores"]`), not a plain string. In generate routes, the detailer prompt is injected directly into `prompts['main']` after `build_prompt()` returns (not via tags or `build_prompt` itself).
- **`_make_finalize` action semantics**: Pass `action=None` when the route should always update the DB cover (e.g. batch generate, checkpoint generate). Pass `action=request.form.get('action')` for routes that support both "preview" (no DB update) and "replace" (update DB). The factory skips the DB write when `action` is truthy and not `"replace"`.
- **LLM queue runs without request context**: `_enqueue_task()` callbacks execute in a background thread with only `app.app_context()`. Do not access `flask.request`, `flask.session`, or other request-scoped objects inside `task_fn`. Use `has_request_context()` guard if code is shared between HTTP handlers and background tasks.
- **Tags are metadata only**: Tags (`data['tags']`) are never injected into generation prompts. They are purely for UI filtering and search. The old pattern of `parts.extend(data.get('tags', []))` in prompt building has been removed.

View File

@@ -1,51 +0,0 @@
# Feature Development Guide: Gallery Pages & Character Integration
This guide outlines the architectural patterns and best practices developed during the implementation of the **Actions**, **Outfits**, and **Styles** galleries. Use this as a blueprint for adding similar features (e.g., "Scenes", "Props", "Effects").
## 1. Data Model & Persistence
- **Database Model:** Add a new class in `models.py`. Include `default_fields` (JSON) to support persistent prompt selections.
- **JSON Sync:** Implement a `sync_[feature]()` function in `app.py` to keep the SQLite database in sync with the `data/[feature]/*.json` files.
- **Slugs:** Use URL-safe slugs generated from the ID for clean routing.
## 2. Quadruple LoRA Chaining
Our workflow supports chaining up to four distinct LoRAs from specific directories:
1. **Character:** `Illustrious/Looks/` (Node 16)
2. **Outfit:** `Illustrious/Clothing/` (Node 17)
3. **Action:** `Illustrious/Poses/` (Node 18)
4. **Style:** `Illustrious/Styles/` (Node 19)
**Implementation Detail:**
In `_prepare_workflow`, LoRAs must be chained sequentially. If a previous LoRA is missing, the next one must "reach back" to the Checkpoint (Node 4) or the last valid node in the chain to maintain the model/CLIP connection. Node 19 is the terminal LoRA loader before terminal consumers (KSampler, Detailers).
## 3. Style Prompt Construction
Artistic styles follow specific formatting rules in the `build_prompt` engine:
- **Artist Attribution:** Artist names are prefixed with "by " (e.g., "by Sabu").
- **Artistic Styles:** Raw descriptive style tags (e.g., "watercolor painting") are appended to the prompt.
- **Priority:** Style tags are applied after identity and wardrobe tags but before trigger words.
## 4. Adetailer Routing
To improve generation quality, route specific JSON sub-fields to targeted Adetailers:
- **Face Detailer (Node 14):** Receives `character_name`, `expression`, and action-specific `head`/`eyes` tags.
- **Hand Detailer (Node 15):** Receives priority hand tags (Wardrobe Gloves > Wardrobe Hands > Identity Hands) and action-specific `arms`/`hands` tags.
## 5. Character-Integrated Previews
The "Killer Feature" is previewing a standalone item (like an Action, Outfit, or Style) on a specific character.
**Logic Flow:**
1. **Merge Data:** Copy `character.data`.
2. **Override/Merge:** Replace character `defaults` with feature-specific tags (e.g., Action pose overrides Character pose).
3. **Context Injection:** Append character-specific styles (e.g., `[primary_color] simple background`) to the main prompt.
4. **Auto-Selection:** When a character is selected, ensure their essential identity and active wardrobe fields are automatically included in the prompt.
## 6. UI/UX Patterns
- **Selection Boxes:** Use checkboxes next to field labels to allow users to toggle specific tags.
- **Default Selection:** Implement a "Save as Default Selection" button that persists the current checkbox state to the database.
- **Session State:** Store the last selected character and field preferences in the Flask `session` to provide a seamless experience.
- **AJAX Generation:** Use the WebSocket + Polling hybrid pattern in the frontend to show real-time progress bars without page reloads.
## 7. Directory Isolation
Always isolate LoRAs by purpose to prevent dropdown clutter:
- `get_available_loras()` -> Characters
- `get_available_clothing_loras()` -> Outfits
- `get_available_action_loras()` -> Actions/Poses
- `get_available_style_loras()` -> Styles

29
Dockerfile Normal file
View File

@@ -0,0 +1,29 @@
FROM python:3.12-slim
# Install system deps: git (for danbooru-mcp repo clone) + docker CLI
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
curl \
ca-certificates \
&& install -m 0755 -d /etc/apt/keyrings \
&& curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc \
&& chmod a+r /etc/apt/keyrings/docker.asc \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian $(. /etc/os-release && echo "$VERSION_CODENAME") stable" \
> /etc/apt/sources.list.d/docker.list \
&& apt-get update && apt-get install -y --no-install-recommends docker-ce-cli docker-compose-plugin \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Writable dirs that will typically be bind-mounted at runtime
RUN mkdir -p static/uploads instance flask_session data/characters data/clothing \
data/actions data/styles data/scenes data/detailers data/checkpoints data/looks
EXPOSE 5000
CMD ["python", "app.py"]

View File

@@ -39,6 +39,20 @@ A local web-based GUI for managing character profiles (JSON) and generating cons
## Setup & Installation ## Setup & Installation
### Option A — Docker (recommended)
1. **Clone the repository.**
2. Edit `docker-compose.yml` if needed:
- Set `COMFYUI_URL` to your ComfyUI host/port.
- Adjust the `/Volumes/ImageModels` volume path to your model directory. If you're on Docker Desktop, add the path under **Settings → Resources → File Sharing** first.
3. **Start services:**
```bash
docker compose up -d
```
The app will be available at `http://localhost:5782`.
### Option B — Local (development)
1. **Clone the repository** to your local machine. 1. **Clone the repository** to your local machine.
2. **Configure Paths**: Open `app.py` and update the following variables to match your system: 2. **Configure Paths**: Open `app.py` and update the following variables to match your system:
```python ```python

View File

@@ -1,208 +0,0 @@
# danbooru-mcp
An MCP (Model Context Protocol) server that lets an LLM search, validate, and get suggestions for valid **Danbooru tags** — the prompt vocabulary used by Illustrious and other Danbooru-trained Stable Diffusion models.
Tags are scraped directly from the **Danbooru public API** and stored in a local SQLite database with an **FTS5 full-text search index** for fast prefix/substring queries. Each tag includes its post count, category, and deprecation status so the LLM can prioritise well-used, canonical tags.
---
## Tools
| Tool | Description |
|------|-------------|
| `search_tags(query, limit=20, category=None)` | Prefix/full-text search — returns rich tag objects ordered by relevance |
| `validate_tags(tags)` | Exact-match validation — splits into `valid`, `deprecated`, `invalid` |
| `suggest_tags(partial, limit=10, category=None)` | Autocomplete for partial tag strings, sorted by post count |
### Return object shape
All tools return tag objects with:
```json
{
"name": "blue_hair",
"post_count": 1079908,
"category": "general",
"is_deprecated": false
}
```
### Category filter values
`"general"` · `"artist"` · `"copyright"` · `"character"` · `"meta"`
---
## Setup
### 1. Install dependencies
```bash
pip install -e .
```
### 2. Build the SQLite database (scrapes the Danbooru API)
```bash
python scripts/scrape_tags.py
```
This scrapes ~12 million tags from the Danbooru public API (no account required)
and stores them in `db/tags.db` with a FTS5 index.
Estimated time: **515 minutes** depending on network speed.
```
Options:
--db PATH Output database path (default: db/tags.db)
--workers N Parallel HTTP workers (default: 4)
--max-page N Safety cap on pages (default: 2500)
--no-resume Re-scrape all pages from scratch
--no-fts Skip FTS5 rebuild (for incremental runs)
```
The scraper is **resumable** — if interrupted, re-run it and it will
continue from where it left off.
### 3. (Optional) Test API access first
```bash
python scripts/test_danbooru_api.py
```
### 4. Run the MCP server
```bash
python src/server.py
```
---
## Docker
### Quick start (pre-built DB — recommended)
Use this when you've already run `python scripts/scrape_tags.py` and have `db/tags.db`:
```bash
# Build image with the pre-built DB baked in (~30 seconds)
docker build -f Dockerfile.prebuilt -t danbooru-mcp .
# Verify
docker run --rm --entrypoint python danbooru-mcp \
-c "import sqlite3,sys; c=sqlite3.connect('/app/db/tags.db'); sys.stderr.write(str(c.execute('SELECT COUNT(*) FROM tags').fetchone()[0]) + ' tags\n')"
```
### Build from scratch (runs the scraper during Docker build)
```bash
# Scrapes the Danbooru API during build — takes ~15 minutes
docker build \
--build-arg DANBOORU_USER=your_username \
--build-arg DANBOORU_API_KEY=your_api_key \
-t danbooru-mcp .
```
### MCP client config (Docker)
```json
{
"mcpServers": {
"danbooru-tags": {
"command": "docker",
"args": ["run", "--rm", "-i", "danbooru-mcp:latest"]
}
}
}
```
---
## MCP Client Configuration
### Claude Desktop (`claude_desktop_config.json`)
```json
{
"mcpServers": {
"danbooru-tags": {
"command": "python",
"args": ["/absolute/path/to/danbooru-mcp/src/server.py"]
}
}
}
```
### Custom DB path via environment variable
```json
{
"mcpServers": {
"danbooru-tags": {
"command": "python",
"args": ["/path/to/src/server.py"],
"env": {
"DANBOORU_TAGS_DB": "/custom/path/to/tags.db"
}
}
}
}
```
---
## Example LLM Prompt Workflow
```
User: Generate a prompt for a girl with blue hair and a sword.
LLM calls validate_tags(["1girl", "blue_hairs", "sword", "looking_at_vewer"])
→ {
"valid": ["1girl", "sword"],
"deprecated": [],
"invalid": ["blue_hairs", "looking_at_vewer"]
}
LLM calls suggest_tags("blue_hair", limit=3)
→ [
{"name": "blue_hair", "post_count": 1079908, "category": "general"},
{"name": "blue_hairband", "post_count": 26905, "category": "general"},
...
]
LLM calls suggest_tags("looking_at_viewer", limit=1)
→ [{"name": "looking_at_viewer", "post_count": 4567890, "category": "general"}]
Final validated prompt: 1girl, blue_hair, sword, looking_at_viewer
```
---
## Project Structure
```
danbooru-mcp/
├── data/
│ └── all_tags.csv # original CSV export (legacy, replaced by API scrape)
├── db/
│ └── tags.db # SQLite DB (generated, gitignored)
├── plans/
│ └── danbooru-mcp-plan.md # Architecture plan
├── scripts/
│ ├── scrape_tags.py # API scraper → SQLite (primary)
│ ├── import_tags.py # Legacy CSV importer
│ └── test_danbooru_api.py # API connectivity tests
├── src/
│ └── server.py # MCP server
├── pyproject.toml
├── .gitignore
└── README.md
```
---
## Requirements
- Python 3.10+
- `mcp[cli]` — official Python MCP SDK
- `requests` — HTTP client for API scraping
- `sqlite3` — Python stdlib (no install needed)

7186
app.py

File diff suppressed because it is too large Load Diff

View File

@@ -16,7 +16,7 @@
}, },
"4": { "4": {
"inputs": { "inputs": {
"ckpt_name": "Noob/oneObsession_v19Atypical.safetensors" "ckpt_name": ""
}, },
"class_type": "CheckpointLoaderSimple" "class_type": "CheckpointLoaderSimple"
}, },

View File

@@ -2,16 +2,13 @@
"action_id": "3p_sex_000037", "action_id": "3p_sex_000037",
"action_name": "3P Sex 000037", "action_name": "3P Sex 000037",
"action": { "action": {
"full_body": "threesome", "base": "threesome, group_sex, 3_people",
"head": "blush", "head": "blush, half-closed_eyes, sweat",
"eyes": "half-closed_eyes", "upper_body": "nude, reaching",
"arms": "reaching", "lower_body": "sex, spread_legs, intercourse",
"hands": "groping", "hands": "groping",
"torso": "nude",
"pelvis": "sex",
"legs": "spread_legs",
"feet": "toes_curled", "feet": "toes_curled",
"additional": "sweat" "additional": "panting, orgasm, sweat"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/3P_SEX-000037.safetensors", "lora_name": "Illustrious/Poses/3P_SEX-000037.safetensors",
@@ -20,13 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"threesome", "participants": "threesome",
"group_sex", "nsfw": true
"nude", }
"sex",
"blush",
"groping",
"sweat"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "4p_sex", "action_id": "4p_sex",
"action_name": "4P Sex", "action_name": "4P Sex",
"action": { "action": {
"full_body": "Choreographed foursome group sex scene involving four participants (e.g., 1 girl and 3 boys or 3 girls and 1 boy) engaged in simultaneous sexual acts like double penetration or cooperative fellatio.", "base": "group_sex, foursome, 4p, multiple_partners, sexual_act",
"head": "Moaning expression, open mouth, potentially heavily breathing or performing fellatio.", "head": "moaning, open_mouth, closed_eyes, ahegao, heart_eyes, heavy_breathing, flushed_face, sweat",
"eyes": "Heart-shaped pupils, ahegao, or rolling back in pleasure.", "upper_body": "nude, arching_back, standing_on_all_fours, breasts_press, breast_grab, fingers_in_mouth",
"arms": "Bracing on the surface (all fours), holding onto partners, or grabbing sheets.", "lower_body": "vaginal_intercourse, anal_intercourse, double_penetration, legs_apart, kneeing, missionary_position",
"hands": "Grabbing breasts, holding legs, fingering, or resting on knees/shoulders.", "hands": "breast_fondling, clutching_sheets, on_partner, touching_self",
"torso": "Nude, arching back, breasts exposed and pressed or being touched.", "feet": "toes_curled, barefoot",
"pelvis": "Engaged in intercourse, involving vaginal or anal penetration, potentially double penetration.", "additional": "bodily_fluids, semen, sweat, messy, erotic, intimate"
"legs": "Spread wide, positioned in all fours, missionary, or reverse cowgirl depending on specific interaction.",
"feet": "Toes curled, dynamic positioning based on stance (kneeling or lying).",
"additional": "Sexual fluids, messy after-sex atmosphere, sweat, steaming body."
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/4P_sex.safetensors", "lora_name": "Illustrious/Poses/4P_sex.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 0.6, "lora_weight_min": 0.6,
"lora_weight_max": 0.6 "lora_weight_max": 0.6
}, },
"tags": [ "tags": {
"4P_sexV1", "participants": "4people",
"group sex", "nsfw": true
"foursome", }
"4P",
"double penetration",
"fellatio",
"all fours",
"uncensored",
"hetero",
"sex"
]
} }

View File

@@ -1,17 +1,14 @@
{ {
"action_id": "_malebolgia__oral_sex_tounge_afterimage_concept_2_0_illustrious", "action_id": "_malebolgia__oral_sex_tounge_afterimage_concept_2_0_illustrious",
"action_name": " Malebolgia Oral Sex Tounge Afterimage Concept 2 0 Illustrious", "action_name": "Malebolgia Oral Sex Tounge Afterimage Concept 2 0 Illustrious",
"action": { "action": {
"full_body": "kneeling, leaning forward, engaged in oral activity", "base": "kneeling, leaning_forward, oral_sex",
"head": "facing target, mouth wide open, intense expression", "head": "looking_up, mouth_open, intense_expression, half-closed_eyes",
"eyes": "looking up, half-closed", "upper_body": "forward_bend, reaching_forward",
"arms": "reaching forward", "lower_body": "kneeling, legs_spread",
"hands": "grasping partner's thighs or hips", "hands": "grabbing_partner, hand_on_thigh",
"torso": "angled towards partner", "feet": "barefoot",
"pelvis": "stationary", "additional": "afterimage, motion_blur, multiple_tongues, speed_lines, saliva_drool"
"legs": "kneeling on the floor",
"feet": "tucked behind",
"additional": "afterimage, motion blur, multiple tongues, rapid tongue movement, speed lines, saliva trails"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,11 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"oral", "participants": "1girl 1boy",
"rapid motion", "nsfw": true
"tongue play", }
"motion blur",
"surreal"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "actually_reliable_penis_kissing_3_variants_illustrious", "action_id": "actually_reliable_penis_kissing_3_variants_illustrious",
"action_name": "Actually Reliable Penis Kissing 3 Variants Illustrious", "action_name": "Actually Reliable Penis Kissing 3 Variants Illustrious",
"action": { "action": {
"full_body": "kneeling in front of standing or sitting partner, leaning forward towards crotch", "base": "kneeling, fellatio, oral sex, kissing penis",
"head": "face aligned with groin, lips pressing against glans or shaft, tongue slightly out, kissing connection", "head": "eyes closed, half-closed eyes, looking up, kissing, tongue",
"eyes": "looking up at partner or closed in enjoyment, half-closed", "upper_body": "arched back, leaning forward",
"arms": "reaching forward or resting on partner's legs", "lower_body": "kneeling",
"hands": "gently holding the shaft, cupping testicles, or resting on partner's thighs", "hands": "holding penis, hand on thigh",
"torso": "leaning forward, arched back", "feet": "",
"pelvis": "kneeling pose, hips pushed back", "additional": "saliva, slime, connection"
"legs": "kneeling on the ground",
"feet": "toes curled or flat",
"additional": "saliva connection, affectionate oral interaction, unsucked penis"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"penis kissing", "participants": "1girl 1boy",
"fellatio", "nsfw": true
"oral sex", }
"kneeling",
"saliva",
"tongue",
"close-up"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "after_sex_fellatio_illustriousxl_lora_nochekaiser_r1", "action_id": "after_sex_fellatio_illustriousxl_lora_nochekaiser_r1",
"action_name": "After Sex Fellatio Illustriousxl Lora Nochekaiser R1", "action_name": "After Sex Fellatio Illustriousxl Lora Nochekaiser R1",
"action": { "action": {
"full_body": "completely_nude, lying, on_back, m_legs, spread_legs", "base": "1girl, 1boy, completely_nude, lying, on_back, spread_legs",
"head": "looking_at_viewer, tongue, open_mouth, blush, messing_hair", "head": "looking_at_viewer, tongue, open_mouth, blush, disheveled_hair, half-closed_eyes",
"eyes": "half-closed_eyes, blue_eyes", "upper_body": "on_bed, large_breasts, nipples, sweat",
"arms": "arms_at_sides, on_bed", "lower_body": "pussy, cum_in_pussy, leaking_cum, knees_up, thighs_apart",
"hands": "on_bed, pressing_bed", "hands": "on_bed",
"torso": "large_breasts, nipples, sweat", "feet": "barefoot",
"pelvis": "pussy, cum_in_pussy, leaking_cum", "additional": "after_sex, fellatio, penis, cum, cum_drip, messy_body, sweat, bed_sheet"
"legs": "m_legs, spread_legs, legs_up",
"feet": "barefoot, toes",
"additional": "after_sex, after_vaginal, fellatio, penis, cum, cumdrip, messy_body, bed_sheet"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/after-sex-fellatio-illustriousxl-lora-nochekaiser_r1.safetensors", "lora_name": "Illustrious/Poses/after-sex-fellatio-illustriousxl-lora-nochekaiser_r1.safetensors",
@@ -20,20 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"after_sex", "participants": "1girl 1boy",
"after_vaginal", "nsfw": true
"fellatio", }
"cum_in_pussy",
"m_legs",
"lying",
"on_back",
"on_bed",
"cumdrip",
"completely_nude",
"nipples",
"tongue",
"penis",
"cum"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "afterfellatio_ill", "action_id": "afterfellatio_ill",
"action_name": "Afterfellatio Ill", "action_name": "Afterfellatio Ill",
"action": { "action": {
"full_body": "kneeling, leaning_forward, pov", "base": "kneeling, leaning_forward, pov",
"head": "looking_at_viewer, blush, tilted_head, cum_on_face", "head": "looking_at_viewer, blush, tilted_head, cum_on_face, half-closed_eyes, tears, messy_makeup",
"eyes": "half-closed_eyes, tears", "upper_body": "arms_down, reaching_towards_viewer",
"arms": "arms_down, reaching_towards_viewer", "lower_body": "kneeling",
"hands": "handjob, touching_penis", "hands": "hands_on_penis",
"torso": "leaning_forward",
"pelvis": "kneeling",
"legs": "kneeling",
"feet": "barefoot", "feet": "barefoot",
"additional": "cum_string, cum_in_mouth, closed_mouth" "additional": "cum, cum_string, cum_in_mouth, closed_mouth, stringy_cum"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/afterfellatio_ill.safetensors", "lora_name": "Illustrious/Poses/afterfellatio_ill.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"after_fellatio", "participants": "1girl 1boy",
"cum_in_mouth", "nsfw": true
"cum_string", }
"closed_mouth",
"blush",
"half-closed_eyes",
"looking_at_viewer",
"kneeling",
"pov",
"handjob"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "afteroral", "action_id": "afteroral",
"action_name": "Afteroral", "action_name": "Afteroral",
"action": { "action": {
"full_body": "Character depicted immediately after performing oral sex, often focusing on the upper body and face.", "base": "after_fellatio, post-coital, flushed_face, messy_appearance",
"head": "Messy hair, flushed cheeks, mouth slightly open or panting.", "head": "messy_hair, panting, heavy_breathing, half-closed_eyes, dazed, pupil_dilated, flushed, sweat",
"eyes": "Half-closed or dazed expression, potentially with runny mascara or makeup.", "upper_body": "smeared_lipstick, runny_makeup, saliva, saliva_trail, cum_on_face, cum_on_mouth, excessive_cum",
"arms": "Relaxed or wiping mouth.", "lower_body": "",
"hands": "Resting or near face.", "hands": "hands_near_face, curled_fingers",
"torso": "Heaving chest indicative of heavy breathing.", "feet": "",
"pelvis": "N/A (typically upper body focus)", "additional": "after_fellatio, cum_drip, mess"
"legs": "N/A",
"feet": "N/A",
"additional": "Presence of bodily fluids like saliva trails or excessive cum on face and messy makeup."
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/afteroral.safetensors", "lora_name": "Illustrious/Poses/afteroral.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"after_fellatio", "participants": "solo",
"runny_makeup", "nsfw": true
"smeared_lipstick", }
"saliva_trail",
"excessive_cum",
"messy_hair",
"heavy_breathing",
"cum_bubble",
"penis_on_face",
"sweat"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "afterpaizuri", "action_id": "afterpaizuri",
"action_name": "Afterpaizuri", "action_name": "Afterpaizuri",
"action": { "action": {
"full_body": "kneeling or sitting, displaying upper body aftermath, exhausted posture", "base": "kneeling, sitting, exhausted, post-coital, afterpaizuri",
"head": "flushed face, messy hair, panting, mouth slightly open, tongue out", "head": "flushed, messy_hair, panting, mouth_open, tongue_out, half-closed_eyes, dazed, looking_at_viewer",
"eyes": "half-closed eyes, dazed expression, looking at viewer", "upper_body": "bare_shoulders, cleavage, semen_on_breasts, disheveled_clothes, bra_removed_under_clothes",
"arms": "resting on thighs or gesturing towards chest", "lower_body": "kneeling, thighs_together, buttocks_on_heels",
"hands": "presenting breasts or cleaning face", "hands": "hands_on_lap",
"torso": "exposed cleavage, chest covered in white liquid, disheveled clothes", "feet": "barefoot",
"pelvis": "hips settling back, kneeling posture", "additional": "semen_on_face, heavy_breathing, sweat, moisture, viscous_liquid, creamy_fluid"
"legs": "kneeling, thighs together or slightly spread",
"feet": "tucked under buttocks or relaxed",
"additional": "semen on breasts, semen on face, heavy breathing, sweat, sticky fluids"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"after paizuri", "participants": "1girl",
"semen on breasts", "nsfw": true
"semen on face", }
"messy",
"blush",
"dazed",
"sweat",
"disheveled"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "aftersexbreakv2", "action_id": "aftersexbreakv2",
"action_name": "Aftersexbreakv2", "action_name": "Aftersexbreakv2",
"action": { "action": {
"full_body": "lying, on_back, on_bed, bowlegged_pose, spread_legs, twisted_torso", "base": "lying, on_back, on_bed, bowlegged_pose, spread_legs, twisted_torso",
"head": "messy_hair, head_back, sweaty_face", "head": "messy_hair, head_back, sweaty, rolling_eyes, half-closed_eyes, ahegao",
"eyes": "rolling_eyes, half-closed_eyes, ahegao", "upper_body": "arms_spread, arms_above_head, sweat, naked, collarbone, heavy_breathing",
"arms": "arms_spread, arms_above_head", "lower_body": "hips, navel, female_pubic_hair, spread_legs, legs_up, bent_legs",
"hands": "relaxed_hands", "hands": "relaxed_hands",
"torso": "sweat, nipples, collarbone, heavy_breathing",
"pelvis": "hips, navel, female_pubic_hair",
"legs": "spread_legs, legs_up, bent_legs",
"feet": "barefoot", "feet": "barefoot",
"additional": "condom_wrapper, used_tissue, stained_sheets, cum_pool, bead_of_sweat" "additional": "condom_wrapper, used_tissue, stained_sheets, cum_on_bed, sweat_bead"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/AfterSexBreakV2.safetensors", "lora_name": "Illustrious/Poses/AfterSexBreakV2.safetensors",
@@ -20,24 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"after_sex", "participants": "1girl",
"lying", "nsfw": true
"on_back", }
"on_bed",
"fucked_silly",
"spread_legs",
"bowlegged_pose",
"sweat",
"blush",
"messy_hair",
"heavy_breathing",
"rolling_eyes",
"ahegao",
"cum_pool",
"condom_wrapper",
"used_tissue",
"bed_sheet",
"stained_sheets"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "against_glass_bs", "action_id": "against_glass_bs",
"action_name": "Against Glass Bs", "action_name": "Against Glass Bs",
"action": { "action": {
"full_body": "leaning forward, body pressed directly against the viewing plane/glass surface", "base": "against_glass, leaning_forward, pressed_against_surface, glass_surface",
"head": "face close to camera, breath fog on glass, cheek slightly pressed", "head": "face_pressed, cheek_press, breath_on_glass, looking_at_viewer, intimate_gaze",
"eyes": "looking directly at viewer, intimate gaze", "upper_body": "chest_pressed_against_glass, leaning_into_glass",
"arms": "reaching forward towards the viewer", "lower_body": "hips_pushed_forward, standing",
"hands": "palms pressed flat against glass, fingers spread, palm prints", "hands": "hands_on_glass, palms_on_glass, fingers_spread",
"torso": "chest squished against glass, leaning into the surface", "feet": "standing",
"pelvis": "hips pushed forward or slightly angled back depending on angle", "additional": "condensation, translucent_surface, distortion"
"legs": "standing straight or knees slightly bent for leverage",
"feet": "planted firmly on the ground",
"additional": "transparent surface, condensation, distortion from glass, surface interaction"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"against glass", "participants": "solo",
"pressed against glass", "nsfw": false
"palms on glass", }
"view through glass",
"cheek press",
"distorted view"
]
} }

View File

@@ -1,34 +0,0 @@
{
"action_id": "agressivechoking_000010",
"action_name": "Agressivechoking 000010",
"action": {
"full_body": "dynamic perspective, leaning forward, dominant violent stance, POV",
"head": "face close to camera, angry expression, gritting teeth or shouting, heavy breathing",
"eyes": "intense stare, dilated pupils, furious gaze, sanpaku",
"arms": "extended towards viewer or subject, muscles tensed, shoulders shrugged forward",
"hands": "fingers curled tightly, hand around neck, strangling motion, squeezing",
"torso": "hunched forward, tense upper body",
"pelvis": "weight shifted forward",
"legs": "wide stance for leverage, braced",
"feet": "planted firmly",
"additional": "sweat, speed lines, depth of field, high contrast lighting, shadow over eyes"
},
"participants": {
"solo_focus": "true",
"orientation": "MF"
},
"lora": {
"lora_name": "Illustrious/Poses/AgressiveChoking-000010.safetensors",
"lora_weight": 1.0,
"lora_triggers": "AgressiveChoking-000010",
"lora_weight_min": 1.0,
"lora_weight_max": 1.0
},
"tags": [
"violence",
"dominance",
"pov",
"combat",
"anger"
]
}

View File

@@ -1,39 +0,0 @@
{
"action_id": "ahegao_xl_v3_1278075",
"action_name": "Ahegao Xl V3 1278075",
"action": {
"full_body": "portrait or upper body focus, emphasizing facial distortion",
"head": "tilted back slightly, mouth wide open, tongue hanging out, face heavily flushed",
"eyes": "rolled back upwards, cross-eyed, look of exhaustion or ecstasy",
"arms": "raised up near the head",
"hands": "making double peace signs (v-sign) framing the face",
"torso": "facing forward",
"pelvis": "neutral",
"legs": "neutral",
"feet": "not visible",
"additional": "saliva trail, drooling, sweat, heavy blush stickers, heart-shaped pupils"
},
"participants": {
"solo_focus": "true",
"orientation": "F"
},
"lora": {
"lora_name": "Illustrious/Poses/Ahegao_XL_v3_1278075.safetensors",
"lora_weight": 1.0,
"lora_triggers": "Ahegao_XL_v3_1278075",
"lora_weight_min": 1.0,
"lora_weight_max": 1.0
},
"tags": [
"ahegao",
"rolling eyes",
"tongue out",
"open mouth",
"blush",
"drooling",
"saliva",
"cross-eyed",
"double peace sign",
"v-sign"
]
}

View File

@@ -2,16 +2,13 @@
"action_id": "amateur_pov_filming", "action_id": "amateur_pov_filming",
"action_name": "Amateur Pov Filming", "action_name": "Amateur Pov Filming",
"action": { "action": {
"full_body": "selfie pose, standing or sitting, facing viewer or mirror", "base": "pov, selfie, solo, indoors, recording, smartphone, holding_phone",
"head": "looking_at_viewer, blush, maybe open mouth or shy expression", "head": "looking_at_viewer, blush, open_mouth",
"eyes": "looking_at_viewer, contact with camera", "upper_body": "upper_body, breasts, nipples",
"arms": "raised to hold phone or camera", "lower_body": "hips",
"hands": "holding_phone, holding_id_card, or adjusting clothes", "hands": "holding_phone, holding_id_card",
"torso": "upper body in frame, breasts, nipples", "feet": "barefoot",
"pelvis": "hips visible if full body mirror selfie", "additional": "mirror_selfie, amateur_aesthetic"
"legs": "standing or sitting",
"feet": "barefoot if visible",
"additional": "phone recording interface, smartphone, mirror, amateur aesthetic"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/Amateur_POV_Filming.safetensors", "lora_name": "Illustrious/Poses/Amateur_POV_Filming.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"recording", "participants": "solo",
"pov", "nsfw": true
"selfie", }
"holding_phone",
"smartphone",
"mirror_selfie",
"holding_id_card",
"looking_at_viewer",
"prostitution",
"indoors"
]
} }

View File

@@ -2,14 +2,11 @@
"action_id": "arch_back_sex_v1_1_illustriousxl", "action_id": "arch_back_sex_v1_1_illustriousxl",
"action_name": "Arch Back Sex V1 1 Illustriousxl", "action_name": "Arch Back Sex V1 1 Illustriousxl",
"action": { "action": {
"full_body": "doggystyle, sex_from_behind, all_fours", "base": "doggystyle, sex_from_behind, all_fours",
"head": "head_back, looking_back", "head": "head_back, looking_back, closed_eyes, blush",
"eyes": "closed_eyes, blush", "upper_body": "arms_support, arched_back",
"arms": "arms_support", "lower_body": "lifted_hip, kneeling, spread_legs",
"hands": "grabbing_another's_ass", "hands": "grabbing_butt",
"torso": "arched_back",
"pelvis": "lifted_hip",
"legs": "kneeling, spread_legs",
"feet": "toes", "feet": "toes",
"additional": "kiss, sweat, saliva, intense_pleasure" "additional": "kiss, sweat, saliva, intense_pleasure"
}, },
@@ -20,12 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"hetero", "participants": "1girl 1boy",
"sex", "nsfw": true
"vaginal", }
"penis",
"nude",
"indoors"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "arm_grab_missionary_ill_10", "action_id": "arm_grab_missionary_ill_10",
"action_name": "Arm Grab Missionary Ill 10", "action_name": "Arm Grab Missionary Ill 10",
"action": { "action": {
"full_body": "missionary, lying, on_back, sex, vaginal", "base": "missionary, lying, on_back, sex, vaginal_sex",
"head": "expressive face, open mouth, one_eye_closed, blushing", "head": "blushing, open_mouth, one_eye_closed, looking_at_viewer, dilated_pupils",
"eyes": "looking_at_viewer (optional), dilated_pupils", "upper_body": "arms_above_head, pinned, restrained, grabbed_wrists, breasts, nipples, medium_breasts",
"arms": "arms_up, pinned, restrained, grabbed_wrists", "lower_body": "legs_spread, lifted_pelvis, spread_legs, legs_up, knees_up",
"hands": "interlocked_fingers, holding_hands", "hands": "interlocked_fingers, holding_hands",
"torso": "breasts, nipples, medium_breasts", "feet": "barefoot",
"pelvis": "legs_spread, lifted_pelvis", "additional": "faceless_male, sweat, motion_lines"
"legs": "spread_legs, legs_up, knees_up, straddling (if applicable)",
"feet": "barefoot (implied)",
"additional": "faceless_male, male_focus, motion_lines, sweat"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/arm_grab_missionary_ill-10.safetensors", "lora_name": "Illustrious/Poses/arm_grab_missionary_ill-10.safetensors",
@@ -20,21 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"missionary", "participants": "1girl 1boy",
"spread_legs", "nsfw": true
"interlocked_fingers", }
"holding_hands",
"arms_up",
"pinned",
"lying",
"on_back",
"sex",
"vaginal",
"faceless_male",
"one_eye_closed",
"open_mouth",
"breasts",
"nipples"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ballsdeep_il_v2_2_s", "action_id": "ballsdeep_il_v2_2_s",
"action_name": "Ballsdeep Il V2 2 S", "action_name": "Ballsdeep Il V2 2 S",
"action": { "action": {
"full_body": "sexual intercourse, variable position (prone, girl on top, or from behind)", "base": "sexual_intercourse, deep_penetration, thrusting, mating_press, from_behind, doggy_style, missionary, cowgirl_position",
"head": "expression of intensity or pleasure, often looking back or face down", "head": "eyes_rolled_back, closed_eyes, open_mouth, flushed_face, sweat, expressionless, intense_expression",
"eyes": "rolled back or squeezed shut", "upper_body": "arched_back, hands_on_own_body, grabbing, fingers_clenched, sweating",
"arms": "grasping sheets or holding partner", "lower_body": "joined_genitals, spread_legs, wrap_legs, hips_thrusting, stomach_bulge, testicles_pressed",
"hands": "clenched or grabbing", "hands": "finger_clutch, gripping",
"torso": "arched or pressed against contrasting surface", "feet": "curled_toes",
"pelvis": "hips pushed firmly against partner's hips, joined genitals", "additional": "intense, deep_pen, skin_on_skin"
"legs": "spread wide or wrapped around partner",
"feet": "toes curled",
"additional": "deep penetration, testicles pressed flat against skin, stomach bulge visible"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/BallsDeep-IL-V2.2-S.safetensors", "lora_name": "Illustrious/Poses/BallsDeep-IL-V2.2-S.safetensors",
@@ -20,13 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"deep_penetration", "participants": "1girl 1boy",
"testicles", "nsfw": true
"stomach_bulge", }
"sex",
"anal",
"vaginal",
"gaping"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "bathingtogether", "action_id": "bathingtogether",
"action_name": "Bathingtogether", "action_name": "Bathingtogether",
"action": { "action": {
"full_body": "bathing, sitting, partially_submerged", "base": "bathing, sitting, partially_submerged, bathtub",
"head": "looking_at_viewer, facing_viewer", "head": "looking_at_viewer, eye_contact",
"eyes": "eye_contact", "upper_body": "bare_shoulders, skin_to_skin, arms_around_each_other",
"arms": "arms_resting", "lower_body": "underwater, knees_up",
"hands": "resting", "hands": "hands_on_body",
"torso": "bare_shoulders", "feet": "barefoot",
"pelvis": "submerged", "additional": "bubbles, water, steam, wet, wet_hair, mirror_reflection"
"legs": "knees_up, submerged",
"feet": "no_shoes",
"additional": "bathtub, steam, water, bubbles, wet"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/bathingtogether.safetensors", "lora_name": "Illustrious/Poses/bathingtogether.safetensors",
@@ -20,14 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"bathing", "participants": "2girls",
"bathtub", "nsfw": false
"partially_submerged", }
"pov",
"looking_at_viewer",
"wet",
"steam",
"bare_shoulders"
]
} }

View File

@@ -1,35 +1,24 @@
{ {
"action": {
"base": "2koma, side-by-side, comparison",
"head": "facial, cum_on_face, messy_face, eyes_closed, mouth_open, orgasm",
"upper_body": "semi-nude, messy, cum_on_breasts",
"lower_body": "",
"hands": "hands_on_head",
"feet": "",
"additional": "cum, close-up, ejaculation"
},
"action_id": "before_after_1230829", "action_id": "before_after_1230829",
"action_name": "Before After 1230829", "action_name": "Before After 1230829",
"action": {
"full_body": "2koma, before_and_after",
"head": "heavy_breathing, orgasm, sticky_face",
"eyes": "eyes_closed",
"arms": "variation",
"hands": "variation",
"torso": "upper_body",
"pelvis": "variation",
"legs": "variation",
"feet": "variation",
"additional": "facial, bukkake, cum, cum_on_face"
},
"lora": { "lora": {
"lora_name": "Illustrious/Poses/before_after_1230829.safetensors", "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": 0.9,
"lora_weight_max": 0.9 "lora_weight_max": 0.7,
"lora_weight_min": 0.6
}, },
"tags": [ "tags": {
"before_and_after", "participants": "1girl",
"2koma", "nsfw": true
"facial", }
"bukkake",
"cum",
"cum_on_face",
"orgasm",
"heavy_breathing",
"upper_body",
"split_theme"
]
} }

View File

@@ -2,14 +2,11 @@
"action_id": "belly_dancing", "action_id": "belly_dancing",
"action_name": "Belly Dancing", "action_name": "Belly Dancing",
"action": { "action": {
"full_body": "belly dancing, standing", "base": "belly_dancing, dancing, standing",
"head": "", "head": "",
"eyes": "", "upper_body": "arms_up",
"arms": "hands above head", "lower_body": "swaying",
"hands": "palms together", "hands": "own_hands_together",
"torso": "",
"pelvis": "swaying hips",
"legs": "",
"feet": "", "feet": "",
"additional": "" "additional": ""
}, },
@@ -24,8 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"belly dancing", "participants": "solo",
"dance" "nsfw": false
] }
} }

View File

@@ -2,16 +2,13 @@
"action_id": "bentback", "action_id": "bentback",
"action_name": "Bentback", "action_name": "Bentback",
"action": { "action": {
"full_body": "bent_over, leaning_forward, from_behind", "base": "bent_over, from_behind, arched_back",
"head": "looking_at_viewer, looking_back", "head": "looking_back, looking_at_viewer",
"eyes": "open_eyes", "upper_body": "twisted_torso, arms_at_sides",
"arms": "arms_at_sides", "lower_body": "ass_focus, kneepits, spread_legs",
"hands": "hands_on_legs", "hands": "hands_on_legs",
"torso": "twisted_torso, arched_back",
"pelvis": "ass_focus",
"legs": "kneepits",
"feet": "barefoot", "feet": "barefoot",
"additional": "unnatural_body" "additional": "leaning_forward"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/BentBack.safetensors", "lora_name": "Illustrious/Poses/BentBack.safetensors",
@@ -20,12 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"bent_over", "participants": "solo",
"from_behind", "nsfw": true
"looking_back", }
"kneepits",
"twisted_torso",
"ass_focus"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "blowjobcomicpart2", "action_id": "blowjobcomicpart2",
"action_name": "Blowjobcomicpart2", "action_name": "Blowjobcomicpart2",
"action": { "action": {
"full_body": "3koma, comic layout, vertical panel sequence", "base": "3koma, comic_strip, sequence, vertical_strip",
"head": "tongue_out, open mouth, saliva", "head": "tongue_out, open_mouth, saliva, empty_eyes, rolled_eyes",
"eyes": "empty_eyes, rolled eyes", "upper_body": "arms_at_sides, torso, standing_on_knees",
"arms": "arms_down or holding_head", "lower_body": "sexual_activity, kneeling",
"hands": "fingers_on_penis", "hands": "hands_on_penis, grasping",
"torso": "visible torso",
"pelvis": "sexual_activity",
"legs": "kneeling or sitting",
"feet": "out_of_frame", "feet": "out_of_frame",
"additional": "fellatio, irrumatio, licking_penis, ejaculation, excessive_cum" "additional": "fellatio, irrumatio, licking, ejaculation, cum_in_mouth, excessive_cum"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/BlowjobComicPart2.safetensors", "lora_name": "Illustrious/Poses/BlowjobComicPart2.safetensors",
@@ -20,15 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"3koma", "participants": "1girl 1boy",
"comic", "nsfw": true
"fellatio", }
"irrumatio",
"licking_penis",
"ejaculation",
"excessive_cum",
"empty_eyes",
"tongue_out"
]
} }

View File

@@ -2,31 +2,23 @@
"action_id": "bodybengirl", "action_id": "bodybengirl",
"action_name": "Bodybengirl", "action_name": "Bodybengirl",
"action": { "action": {
"full_body": "suspended_congress, lifting_person, standing", "base": "suspended_congress, lifted_by_torso, torso_grab",
"head": "", "head": "",
"eyes": "", "upper_body": "arms_up, bent_over",
"arms": "reaching", "lower_body": "legs_up",
"hands": "", "hands": "",
"torso": "torso_grab, bent_over",
"pelvis": "",
"legs": "legs_hanging",
"feet": "", "feet": "",
"additional": "1boy, 1girl, suspended" "additional": "1boy, 1girl, size_difference, loli"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/BodyBenGirl.safetensors", "lora_name": "Illustrious/Poses/BodyBenGirl.safetensors",
"lora_weight": 1.0, "lora_weight": 1.0,
"lora_triggers": "bentstand-front, bentstand-behind", "lora_triggers": "bentstand-behind",
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"suspended_congress", "participants": "1boy 1girl",
"torso_grab", "nsfw": true
"bent_over", }
"reaching",
"standing",
"1boy",
"1girl"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "bodybengirlpart2", "action_id": "bodybengirlpart2",
"action_name": "Bodybengirlpart2", "action_name": "Bodybengirlpart2",
"action": { "action": {
"full_body": "body suspended in mid-air, held by torso, bent over forward", "base": "suspended, from_side, bent_over, torso_grab",
"head": "embarrassed, sweating, scared", "head": "embarrassed, sweating, scared, mouth_open, looking_away, downcast",
"eyes": "open, looking away or down", "upper_body": "arms_at_sides, limp_arms",
"arms": "arms hanging down, limp arms, arms at sides", "lower_body": "legs_dangling, knees_together, bare_feet, feet_dangling",
"hands": "hands open, limp", "hands": "open_hands, limp_hands",
"torso": "torso grab, bent forward", "feet": "bare_feet, dangling",
"pelvis": "hips raised if bent over", "additional": "motion_lines, sweat_drops"
"legs": "legs dangling, knees together, feet apart",
"feet": "feet off ground, dangling",
"additional": "motion lines, sweat drops"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/BodyBenGirlPart2.safetensors", "lora_name": "Illustrious/Poses/BodyBenGirlPart2.safetensors",
@@ -20,14 +17,8 @@
"lora_weight_min": 0.9, "lora_weight_min": 0.9,
"lora_weight_max": 0.9 "lora_weight_max": 0.9
}, },
"tags": [ "tags": {
"torso_grab", "participants": "solo",
"suspension", "nsfw": false
"bent_over", }
"knees_together_feet_apart",
"arms_at_sides",
"motion_lines",
"embarrassed",
"sweat"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "bored_retrain_000115_1336316", "action_id": "bored_retrain_000115_1336316",
"action_name": "Bored Retrain 000115 1336316", "action_name": "Bored Retrain 000115 1336316",
"action": { "action": {
"full_body": "slouching sitting posture, low energy, visually disinterested, exhibiting ennui", "base": "bored, slouching, leaning_forward, ennui, uninterested",
"head": "tilted to the side, resting heavily on hand, cheek squished against palm, blank or annoyed expression", "head": "head_on_hand, blank_stare, half-lidded_eyes",
"eyes": "half-lidded, dull gaze, looking away or staring into space, heavy eyelids", "upper_body": "slumped, leaning_forward, sitting, arms_crossed",
"arms": "elbow proped on surface, arm supporting the head, other arm dangling loosely or lying flat", "lower_body": "sitting, legs_crossed",
"hands": "palm supporting chin or cheek, fingers lazily curled", "hands": "hand_on_cheek, hand_on_chin",
"torso": "slumped shoulders, curved spine, leaning forward", "feet": "",
"pelvis": "sitting back, relaxed weight", "additional": "sighing, waiting"
"legs": "stretched out under a table or loosely crossed",
"feet": "resting idly",
"additional": "sighing context, waiting, lethargic atmosphere"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"boredom", "participants": "solo",
"uninterested", "nsfw": false
"slouching", }
"ennui",
"tired",
"cheek resting on hand"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "breast_pressh", "action_id": "breast_pressh",
"action_name": "Breast Pressh", "action_name": "Breast Pressh",
"action": { "action": {
"full_body": "sandwiched, girl_sandwich, standing, height_difference, size_difference", "base": "1boy, 2girls, sandwiched, standing, height_difference, size_difference",
"head": "head_between_breasts, face_between_breasts, cheek_squash", "head": "head_between_breasts, face_between_breasts, cheek_squash",
"eyes": "eyes_closed, squints", "upper_body": "breast_press, hugging, arms_around_waist, chest_to_chest",
"arms": "hugging, arms_around_waist", "lower_body": "hips_touching, legs_apart",
"hands": "hands_on_back", "hands": "hands_on_back",
"torso": "breast_press, chest_to_chest",
"pelvis": "hips_touching",
"legs": "standing, legs_apart",
"feet": "barefoot", "feet": "barefoot",
"additional": "1boy, 2girls, multiple_girls, hetero" "additional": "hetero, multiple_girls"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/breast_pressH.safetensors", "lora_name": "Illustrious/Poses/breast_pressH.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 0.6, "lora_weight_min": 0.6,
"lora_weight_max": 0.6 "lora_weight_max": 0.6
}, },
"tags": [ "tags": {
"height_difference", "participants": "1boy 2girls",
"girl_sandwich", "nsfw": true
"breast_press", }
"sandwiched",
"size_difference",
"head_between_breasts",
"cheek_squash",
"face_between_breasts",
"1boy",
"2girls"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "breast_smother_illustriousxl_lora_nochekaiser", "action_id": "breast_smother_illustriousxl_lora_nochekaiser",
"action_name": "Breast Smother Illustriousxl Lora Nochekaiser", "action_name": "Breast Smother Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "intimate upper body POV or side view, character pressing another's face into their chest", "base": "breast_smother, face_in_cleavage, intimate, (POV:1.2), side_view",
"head": "tilted downwards, chin tucked, affectionate or dominant expression", "head": "looking_down, half-closed_eyes, affectionate, dominant",
"eyes": "looking down, half-closed, affectionate gaze", "upper_body": "large_breasts, cleavage, squished_breasts, hugging, embracing, chest_press",
"arms": "wrapping around the partner's head or neck", "lower_body": "close_contact, standing",
"hands": "cradling the back of the head, fingers interlocked in hair, pressing face deeper", "hands": "cradling_head, fingers_in_hair, pressing_head_to_breasts",
"torso": "leaning slightly backward, chest prominent, squished breasts, cleavage", "feet": "barefoot, feet_on_ground",
"pelvis": "close contact", "additional": "skin_compression, soft_lighting, motorboating"
"legs": "standing or sitting, posture relaxed",
"feet": "planted on ground",
"additional": "face buried in breasts, chest covering face, soft lighting, skin compression"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,15 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"breast smother", "participants": "1girl 1boy",
"buried in breasts", "nsfw": true
"face in cleavage", }
"motorboating",
"breast press",
"hugging",
"embrace",
"pov",
"large breasts"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "breast_sucking_fingering_illustriousxl_lora_nochekaiser", "action_id": "breast_sucking_fingering_illustriousxl_lora_nochekaiser",
"action_name": "Breast Sucking Fingering Illustriousxl Lora Nochekaiser", "action_name": "Breast Sucking Fingering Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "duo, sexual interaction, close-up, breast sucking, fingering, intimate embrace", "base": "duo, sex, sexual_intercourse, close-up, breast_sucking, fingering, intimate_embrace",
"head": "face buried in breasts, sucking nipple, kissing breast, saliva", "head": "face_buried_in_breasts, sucking_nipple, nipples_suck, saliva, eyes_closed, heavy_breathing, blush, expression_of_bliss",
"eyes": "eyes closed, heavy breathing, blush, expression of bliss", "upper_body": "reaching_down, holding_partner, arm_around_waist, large_breasts, exposed_breasts, nude_torso, pressing_bodies",
"arms": "reaching down, holding partner close, arm around waist", "lower_body": "legs_spread, pussy_exposed, vaginal_fingering, m_legs, intertwined_legs",
"hands": "fingering, fingers inside, rubbing clitoris, squeezing breast, groping", "hands": "fingering, fingers_inside, clitoris_rubbing, squeezing_breasts, groping",
"torso": "large breasts, exposed nipples, nude torso, pressing bodies", "feet": "toes_curled, relaxed_feet",
"pelvis": "legs spread, pussy exposed, vaginal manipulation", "additional": "saliva_trail, sweat, sweat_drop, uncensored"
"legs": "open legs, m-legs, intertwined legs",
"feet": "toes curled, relaxed feet",
"additional": "saliva trail, sweat, motion lines, uncensored"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"breast sucking", "participants": "1girl 1boy",
"fingering", "nsfw": true
"nipple suck", }
"fingers in pussy",
"duo",
"sexual act",
"exposed breasts",
"pussy juice",
"saliva",
"stimulation"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "brokenglass_illusxl_incrs_v1", "action_id": "brokenglass_illusxl_incrs_v1",
"action_name": "Brokenglass Illusxl Incrs V1", "action_name": "Brokenglass Illusxl Incrs V1",
"action": { "action": {
"full_body": "dynamic shot of character seemingly breaking through a barrier", "base": "breaking_through_barrier, dynamic_pose, impact_frame, dynamic_angle",
"head": "intense expression, face visible through cracks", "head": "intense_expression, facial_focus, visible_through_glass",
"eyes": "sharp focus, wide open", "upper_body": "reaching_towards_viewer, twisted_torso, arms_extended",
"arms": "outstretched towards the viewer or shielding face", "lower_body": "dynamic_pose, movement",
"hands": "touching the surface of the invisible wall, interacting with fragments", "hands": "hands_up, touching_glass, debris_interaction",
"torso": "twisted slightly to suggest impact force", "feet": "grounded, dynamic",
"pelvis": "anchored or mid-air depending on angle", "additional": "broken_glass, glass_shards, shattered, spiderweb_cracks, cinematic_lighting, refraction, debris, explosive_impact"
"legs": "posed dynamically to support the movement",
"feet": "grounded or trailing",
"additional": "foreground filled with sharp broken glass shards, spiderweb cracks glowing with light, refractive surfaces, cinematic debris"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"broken glass", "participants": "solo",
"shattered", "nsfw": false
"cracked screen", }
"fragmentation",
"glass shards",
"impact",
"cinematic",
"destruction"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "butt_smother_ag_000043", "action_id": "butt_smother_ag_000043",
"action_name": "Butt Smother Ag 000043", "action_name": "Butt Smother Ag 000043",
"action": { "action": {
"full_body": "facesitting, character sitting on face, pov from below, dominant pose", "base": "1girl, 1boy, facesitting, pov, first-person_view, dominant_woman, submissive_man",
"head": "looking down at viewer, looking back over shoulder", "head": "looking_down, looking_away, half-closed_eyes, seductive_expression, facial_expression",
"eyes": "looking at viewer, half-closed eyes, seductive gaze", "upper_body": "arms_behind_back, arched_back, upper_body_lean",
"arms": "arms reaching back, supporting weight", "lower_body": "buttocks, ass_focus, heavy_buttocks, spread_legs, kneeling, thighs_straddling",
"hands": "hands spreading buttocks, hands on thighs, hands grasping victim's head", "hands": "hands_on_thighs, hands_on_head",
"torso": "back arched, leaning forward", "feet": "feet_together, curled_toes",
"pelvis": "buttocks pressing down slightly, buttocks covering screen, heavy weight", "additional": "extreme_close-up, squashed, muffling, soft_lighting, skin_texture"
"legs": "thighs straddling viewer, knees bent, spread legs",
"feet": "feet planted on ground, toes curled",
"additional": "extreme close-up, squished face, muffling, soft lighting on skin"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"facesitting", "participants": "1girl 1boy",
"butt smother", "nsfw": true
"femdom", }
"pov",
"big ass",
"ass focus",
"suffocation",
"submissive view"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "buttjob", "action_id": "buttjob",
"action_name": "Buttjob", "action_name": "Buttjob",
"action": { "action": {
"full_body": "bent over, back turned to viewer, kneeling or standing", "base": "buttjob, intercrural_sex, sex_positions",
"head": "looking back over shoulder", "head": "",
"eyes": "looking at viewer, half-closed", "upper_body": "bent_over",
"arms": "supporting upper body weight on cool surface or knees", "lower_body": "buttjob, genitals_between_buttocks",
"hands": "resting on bed, knees or holding buttocks apart", "hands": "hands_on_own_thighs",
"torso": "arched back, leaning forward", "feet": "",
"pelvis": "pushed backward, hips elevated high", "additional": "missionary_position"
"legs": "kneeling with thighs spread or standing bent",
"feet": "arched or plantar flexion",
"additional": "glutes pressed together, friction focus, skin indentation"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"buttjob", "participants": "1girl 1boy",
"back to viewer", "nsfw": true
"bent over", }
"arched back",
"kneeling",
"ass focus",
"glutes",
"between buttocks"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "carwashv2", "action_id": "carwashv2",
"action_name": "Carwashv2", "action_name": "Carwashv2",
"action": { "action": {
"full_body": "washing_vehicle, standing, bending_over", "base": "washing_vehicle, bending_over, suggestive_pose",
"head": "wet_hair", "head": "wet_hair",
"eyes": "looking_at_viewer", "upper_body": "wet_clothes, breast_press, cleavage, breasts_on_glass",
"arms": "reaching, arms_up", "lower_body": "",
"hands": "holding_sponge, holding_hose", "hands": "holding_sponge, holding_hose",
"torso": "wet_clothes, breast_press, breasts_on_glass", "feet": "",
"pelvis": "shorts, denim_shorts", "additional": "car, motor_vehicle, soap_bubbles, wet, water_splashing"
"legs": "standing, legs_apart",
"feet": "barefoot",
"additional": "car, motor_vehicle, soap_bubbles, outdoors, car_interior"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/CarWashV2.safetensors", "lora_name": "Illustrious/Poses/CarWashV2.safetensors",
@@ -20,19 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"car", "participants": "1girl",
"motor_vehicle", "nsfw": true
"washing_vehicle", }
"soap_bubbles",
"wet",
"wet_hair",
"wet_clothes",
"holding_sponge",
"holding_hose",
"breasts_on_glass",
"breast_press",
"outdoors",
"car_interior"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cat_stretchill", "action_id": "cat_stretchill",
"action_name": "Cat Stretchill", "action_name": "Cat Stretchill",
"action": { "action": {
"full_body": "kneeling, all_fours, cat_stretch, pose", "base": "cat_stretch, pose, all_fours",
"head": "looking_ahead, head_down", "head": "head_down, looking_at_viewer, closed_eyes",
"eyes": "closed_eyes, trembling", "upper_body": "arched_back, outstretched_arms, chest_support, hands_on_ground",
"arms": "outstretched_arms, reaching_forward, hands_on_ground", "lower_body": "hips_up, buttocks_up, kneeling, knees_on_ground",
"hands": "palms_down", "hands": "palms_down",
"torso": "arched_back, chest_down",
"pelvis": "hips_up, buttocks_up",
"legs": "kneeling, knees_on_ground",
"feet": "feet_up", "feet": "feet_up",
"additional": "cat_ears, cat_tail, trembling" "additional": "trembling, cat_tail, cat_ears"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cat_stretchILL.safetensors", "lora_name": "Illustrious/Poses/cat_stretchILL.safetensors",
@@ -20,17 +17,8 @@
"lora_weight_min": 0.7, "lora_weight_min": 0.7,
"lora_weight_max": 0.7 "lora_weight_max": 0.7
}, },
"tags": [ "tags": {
"cat_stretch", "participants": "solo",
"kneeling", "nsfw": false
"all_fours", }
"stretching",
"arched_back",
"outstretched_arms",
"hands_on_ground",
"downward_dog",
"trembling",
"cat_ears",
"cat_tail"
]
} }

View File

@@ -1,40 +0,0 @@
{
"action_id": "caught_masturbating_illustrious",
"action_name": "Caught Masturbating Illustrious",
"action": {
"full_body": "standing in doorway, confronting viewer",
"head": "looking down or at viewer, surprised expression, blushing",
"eyes": "wide open, looking away or at penis",
"arms": "arms at sides or covering mouth",
"hands": "relaxed or raised in shock",
"torso": "facing viewer",
"pelvis": "standing straight",
"legs": "standing, legs together",
"feet": "standing on floor",
"additional": "male pov, male masturbation in foreground, open door background"
},
"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_weight_min": 0.75,
"lora_weight_max": 0.75
},
"tags": [
"pov",
"male_masturbation",
"penis",
"erection",
"walk-in",
"caught",
"doorway",
"open_door",
"standing",
"surprised",
"blush",
"looking_at_penis",
"looking_at_viewer",
"wide_shot",
"indoors"
]
}

View File

@@ -2,16 +2,13 @@
"action_id": "charm_person_magic", "action_id": "charm_person_magic",
"action_name": "Charm Person Magic", "action_name": "Charm Person Magic",
"action": { "action": {
"full_body": "casting_spell, standing, magical_presence", "base": "casting_spell, magic_circle, spell_casting",
"head": "smile, confident_expression, glowing_eyes", "head": "smile, confident_expression, glowing_eyes, looking_at_viewer",
"eyes": "looking_at_viewer, glowing_eyes", "upper_body": "outstretched_hand, reaching_towards_viewer, arms_up, upper_body",
"arms": "outstretched_hand, reaching_towards_viewer, arms_up", "lower_body": "",
"hands": "open_hand, hand_gesture", "hands": "open_hand, hand_gesture",
"torso": "upper_body, facing_viewer", "feet": "",
"pelvis": "n/a", "additional": "aura, light_particles, glittering, magical_energy"
"legs": "n/a",
"feet": "n/a",
"additional": "aura, soft_light, magic_effects, sparkling"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/charm_person_magic.safetensors", "lora_name": "Illustrious/Poses/charm_person_magic.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 0.7, "lora_weight_min": 0.7,
"lora_weight_max": 0.7 "lora_weight_max": 0.7
}, },
"tags": [ "tags": {
"casting_spell", "participants": "solo",
"magic", "nsfw": false
"aura", }
"outstretched_hand",
"reaching_towards_viewer",
"glowing_eyes",
"looking_at_viewer",
"smile",
"cowboy_shot",
"solo"
]
} }

View File

@@ -2,31 +2,23 @@
"action_id": "cheekbulge", "action_id": "cheekbulge",
"action_name": "Cheekbulge", "action_name": "Cheekbulge",
"action": { "action": {
"full_body": "fellatio", "base": "fellatio",
"head": "cheek_bulge, head_tilt, saliva", "head": "cheek_bulge, head_tilt, saliva, penis_in_mouth, fellatio, looking_up, mouth_fill",
"eyes": "looking_up", "upper_body": "arms_behind_back, upper_body",
"arms": "arms_behind_back", "lower_body": "kneeling, kneeling_position",
"hands": "hands_on_head", "hands": "hands_on_head",
"torso": "upper_body",
"pelvis": "kneeling",
"legs": "kneeling",
"feet": "plantar_flexion", "feet": "plantar_flexion",
"additional": "deepthroat, pov, penis" "additional": "deepthroat, pov, penis, male_focus"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cheekbulge.safetensors", "lora_name": "Illustrious/Poses/cheekbulge.safetensors",
"lora_weight": 1.0, "lora_weight": 1.0,
"lora_triggers": "cheek bulge", "lora_triggers": "cheek bulge, male pov",
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cheek_bulge", "participants": "1girl 1boy",
"deepthroat", "nsfw": true
"fellatio", }
"saliva",
"head_tilt",
"penis",
"pov"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "chokehold", "action_id": "chokehold",
"action_name": "Chokehold", "action_name": "Chokehold",
"action": { "action": {
"full_body": "rear_naked_choke, from_behind, struggling, kneeling", "base": "rear_naked_choke, from_behind, struggling, kneeling",
"head": "head_back, expressionless, open_mouth", "head": "head_back, open_mouth, rolling_eyes, teardrops, veins, suffocation, air_hunger",
"eyes": "rolling_eyes, tearing_up, empty_eyes", "upper_body": "arm_around_neck, struggling, grabbing_arm, posture_leaned_forward, arched_back",
"arms": "arm_around_neck, struggling, grabbing_arm", "lower_body": "kneeling, bent_over, spread_legs",
"hands": "clenched_hands, struggling", "hands": "clenched_hands, struggling",
"torso": "leaning_forward, arched_back",
"pelvis": "kneeling, bent_over",
"legs": "kneeling, spread_legs",
"feet": "barefoot, toes_curled", "feet": "barefoot, toes_curled",
"additional": "distress, blushing, saliva, veins" "additional": "distress, blushing, drooling, saliva, sweat"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/chokehold.safetensors", "lora_name": "Illustrious/Poses/chokehold.safetensors",
@@ -20,18 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"choke_hold", "participants": "1girl 1boy",
"rear_naked_choke", "nsfw": true
"strangling", }
"arm_around_neck",
"from_behind",
"struggling",
"head_back",
"clenched_teeth",
"rolling_eyes",
"drooling",
"saliva",
"ohogao"
]
} }

View File

@@ -2,15 +2,12 @@
"action_id": "cleavageteasedwnsty_000008", "action_id": "cleavageteasedwnsty_000008",
"action_name": "Cleavageteasedwnsty 000008", "action_name": "Cleavageteasedwnsty 000008",
"action": { "action": {
"full_body": "leaning_forward, sexually_suggestive", "base": "leaning_forward, sexually_suggestive",
"head": "looking_at_viewer, smile, blush, one_eye_closed", "head": "looking_at_viewer, smile, blush, one_eye_closed, blue_eyes",
"eyes": "blue_eyes, looking_at_viewer", "upper_body": "arms_bent_at_elbows, cleavage, breasts_squeezed_together, areola_slip, bare_shoulders, collarbone",
"arms": "arms_bent_at_elbows", "lower_body": "",
"hands": "hands_on_own_chest, clothes_pull, adjusting_clothes", "hands": "hands_on_own_chest, pulling_down_clothes, adjusting_clothes",
"torso": "cleavage, breasts_squeezed_together, areola_slip, bare_shoulders, collarbone", "feet": "",
"pelvis": "n/a",
"legs": "n/a",
"feet": "n/a",
"additional": "teasing, undressing" "additional": "teasing, undressing"
}, },
"lora": { "lora": {
@@ -20,20 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"clothes_pull", "participants": "solo",
"shirt_pull", "nsfw": true
"teasing", }
"breasts_squeezed_together",
"areola_slip",
"undressing",
"leaning_forward",
"cleavage",
"hands_on_own_chest",
"collarbone",
"bare_shoulders",
"sexually_suggestive",
"blush",
"one_eye_closed"
]
} }

View File

@@ -1,15 +1,12 @@
{ {
"action": { "action": {
"additional": "nsfw, semen, cum", "base": "close-up, portrait, face_focus",
"arms": "", "head": "open_mouth, tongue, saliva, blush, looking_at_viewer, eyes_visible",
"eyes": "looking_at_viewer, eyes_open", "upper_body": "",
"feet": "", "lower_body": "",
"full_body": "close-up, portrait",
"hands": "", "hands": "",
"head": "facial, open_mouth, tongue, saliva, blush", "feet": "",
"legs": "", "additional": "cum, messy, fluids"
"pelvis": "",
"torso": ""
}, },
"action_id": "closeup_facial_illus", "action_id": "closeup_facial_illus",
"action_name": "Closeup Facial Illus", "action_name": "Closeup Facial Illus",
@@ -20,14 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"facial", "participants": "solo",
"close-up", "nsfw": true
"portrait", }
"open_mouth",
"tongue",
"looking_at_viewer",
"saliva",
"blush"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cof", "action_id": "cof",
"action_name": "Cum on Figure", "action_name": "Cum on Figure",
"action": { "action": {
"full_body": "figurine, mini-girl", "base": "faux_figurine, miniature, cum_on_body",
"head": "", "head": "cum_on_face",
"eyes": "", "upper_body": "",
"arms": "", "lower_body": "",
"hands": "", "hands": "",
"torso": "",
"pelvis": "",
"legs": "",
"feet": "", "feet": "",
"additional": "cum, cum on body, excessive cum, cum on face, cum on breasts, cum on chest" "additional": "cum, excessive_cum"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"standing force", "participants": "solo",
"carry on front", "nsfw": true
"carry", }
"lifting",
"legs wrapped",
"straddling"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cooperative_grinding", "action_id": "cooperative_grinding",
"action_name": "Cooperative Grinding", "action_name": "Cooperative Grinding",
"action": { "action": {
"full_body": "duo, standing, carrying, straddling, lift and carry, legs wrapped around waist, body to body", "base": "duo, standing, lift_and_carry, straddling, legs_wrapped_around_waist, physical_contact",
"head": "head thrown back, blushing, heavy breathing, intense pleasure", "head": "head_thrown_back, blushing, panting, eyes_closed, half-closed_eyes, rolled_back_eyes, expressionless_pleasure",
"eyes": "eyes closed, half-closed eyes, rolled back eyes", "upper_body": "arms_around_neck, holding_buttocks, supporting_thighs, chest_to_chest, close_embrace",
"arms": "arms around neck, holding buttocks, supporting thighs, strong grip", "lower_body": "hips_touching, grinding, mating_press, pelvic_curtain, thighs_spread, lifted_legs",
"hands": "grabbing, squeezing, gripping back", "hands": "grabbing, gripping_back, squeezing",
"torso": "chest to chest, pressed together, close physical contact", "feet": "arched_toes, dangling_feet",
"pelvis": "hips touching, grinding, mating press, pelvic curtain", "additional": "sweat, motion_lines, intimate, sexual_intercourse, erotic"
"legs": "legs wrapped around, thighs spread, lifted legs",
"feet": "dangling feet, arched toes",
"additional": "sweat, motion lines, intimate, erotic atmosphere"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"standing sex", "participants": "1boy 2girls",
"carry", "nsfw": true
"legs wrapped around", }
"straddle",
"grinding",
"lift and carry"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cooperativepaizuri", "action_id": "cooperativepaizuri",
"action_name": "Cooperativepaizuri", "action_name": "Cooperativepaizuri",
"action": { "action": {
"full_body": "cooperative_paizuri, 2girls, 1boy, sexual_activity", "base": "cooperative_paizuri, 2girls, 1boy, sexual_activity, sex_position",
"head": "smile, open_mouth, facial", "head": "smile, open_mouth, facial, looking_at_partner, eyes_closed, flushed",
"eyes": "looking_at_partner, half_closed_eyes", "upper_body": "arms_around_neck, breasts_between_breasts, large_breasts, cleavage, nipple_tweaking",
"arms": "arms_around_neck, grabbing_penis", "lower_body": "penis, glans, erection, kneeling, straddling, cowgirl_position",
"hands": "on_penis, guiding_penis", "hands": "holding_penis, touching_partner, reaching_for_partner",
"torso": "large_breasts, breasts_touching, nipples", "feet": "barefoot, toes_curled",
"pelvis": "penis, glans, erection", "additional": "pov, cum_on_body, fluids, (multiple_girls:1.2), erotic, masterpiece"
"legs": "kneeling, straddling",
"feet": "barefoot",
"additional": "pov, cum_on_body, fluids"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cooperativepaizuri.safetensors", "lora_name": "Illustrious/Poses/cooperativepaizuri.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cooperative_paizuri", "participants": "2girls 1boy",
"2girls", "nsfw": true
"1boy", }
"paizuri",
"breasts",
"penis",
"facial",
"pov",
"from_side",
"large_breasts"
]
} }

View File

@@ -2,14 +2,11 @@
"action_id": "covering_privates_illustrious_v1_0", "action_id": "covering_privates_illustrious_v1_0",
"action_name": "Covering Privates Illustrious V1 0", "action_name": "Covering Privates Illustrious V1 0",
"action": { "action": {
"full_body": "covering_privates", "base": "covering_genitals, covering_breasts",
"head": "embarrassed, blush", "head": "blush, embarrassed, looking_at_viewer",
"eyes": "looking_at_viewer", "upper_body": "arms_crossed, covering_breasts, upper_body",
"arms": "arm_across_chest", "lower_body": "legs_together, hips",
"hands": "covering_breasts, covering_crotch", "hands": "covering_crotch",
"torso": "upper_body",
"pelvis": "hips",
"legs": "legs_together",
"feet": "standing", "feet": "standing",
"additional": "modesty" "additional": "modesty"
}, },
@@ -20,13 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"covering_privates", "participants": "solo",
"covering_breasts", "nsfw": true
"covering_crotch", }
"embarrassed",
"blush",
"arm_across_chest",
"legs_together"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "coveringownmouth_ill_v1", "action_id": "coveringownmouth_ill_v1",
"action_name": "Coveringownmouth Ill V1", "action_name": "Coveringownmouth Ill V1",
"action": { "action": {
"full_body": "character covering their mouth with their hand", "base": "covering_own_mouth, solo",
"head": "lower face obscured by hand", "head": "hand_over_mouth",
"eyes": "neutral or expressive (depending on context)", "upper_body": "arm_raised",
"arms": "arm raised towards face", "lower_body": "variable",
"hands": "hand placed over mouth, palm inward", "hands": "palm_inward",
"torso": "upper body visible",
"pelvis": "variable",
"legs": "variable",
"feet": "variable", "feet": "variable",
"additional": "often indicates surprise, embarrassment, or silence" "additional": "pensive, shy, embarrassed, surprise"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/CoveringOwnMouth_Ill_V1.safetensors", "lora_name": "Illustrious/Poses/CoveringOwnMouth_Ill_V1.safetensors",
@@ -20,7 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"covering_own_mouth" "participants": "solo",
] "nsfw": false
}
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cowgirl_position_breast_press_illustriousxl_lora_nochekaiser", "action_id": "cowgirl_position_breast_press_illustriousxl_lora_nochekaiser",
"action_name": "Cowgirl Position Breast Press Illustriousxl Lora Nochekaiser", "action_name": "Cowgirl Position Breast Press Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "straddling pose, body leaning forward directly into the camera view", "base": "straddling, pov, on_top, leaning_forward",
"head": "face close to the viewer, looking down or directly ahead", "head": "looking_at_viewer, intense_gaze, half-closed_eyes",
"eyes": "looking at viewer, intense or half-closed gaze", "upper_body": "arms_extended, breasts_pressed_against_viewer, breast_squish, cleavage",
"arms": "arms extending forward or bent to support weight", "lower_body": "spread_legs, knees_up, straddling_partner",
"hands": "placed on an invisible surface or partner's chest", "hands": "on_man's_chest, hand_on_partner",
"torso": "upper body leaning forward, breasts heavily pressed and flattened against the screen/viewer", "feet": "out_of_frame",
"pelvis": "hips wide, seated in a straddling motion", "additional": "breast_deformation, intimate, close-up, first-person_view"
"legs": "knees bent, thighs spread wide apart",
"feet": "tucked behind or out of frame",
"additional": "pov, squish, breast deformation, intimate distance"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cowgirl position", "participants": "1girl 1boy",
"breast press", "nsfw": true
"straddling", }
"pov",
"leaning forward",
"close-up",
"breast deformation",
"squish"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cuckold_ntr_il_nai_py", "action_id": "cuckold_ntr_il_nai_py",
"action_name": "Cuckold Ntr Il Nai Py", "action_name": "Cuckold Ntr Il Nai Py",
"action": { "action": {
"full_body": "from behind, bent over, doggy style, looking back, pov", "base": "from_behind, bent_over, doggy_style, looking_back, pov",
"head": "turned to look back over shoulder, face flushed, heavy breathing, expression of pleasure or distress", "head": "looking_back, flushed, heavy_breathing, facial_expression, looking_at_viewer, tears, heart_shaped_pupils, eyes_rolled_back",
"eyes": "looking at viewer, tears, heart-shaped pupils or rolled back", "upper_body": "arched_back, leaning_forward",
"arms": "supporting body weight on surface", "lower_body": "hips_up, kneeling, legs_spread",
"hands": "gripping sheets or surface tightly", "hands": "hands_gripping_bed_sheets",
"torso": "arched back, leaning forward", "feet": "curled_toes",
"pelvis": "hips raised high, exposed", "additional": "sweat, messy_hair, man_in_background"
"legs": "kneeling, spread wide",
"feet": "toes curled",
"additional": "sweat, rude, messy hair, partner silhouette implied behind"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"ntr", "participants": "1girl 1boy",
"cuckold", "nsfw": true
"pov", }
"from behind",
"doggy style",
"looking back"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cum_bathillustrious", "action_id": "cum_bathillustrious",
"action_name": "Cum Bathillustrious", "action_name": "Cum Bathillustrious",
"action": { "action": {
"full_body": "reclining or sitting inside a bathtub filled with viscous white liquid, cum pool, partially submerged", "base": "cum_bath, bathtub, viscous_white_liquid, partially_submerged",
"head": "wet hair sticking to face, flushed cheeks, steam rising", "head": "wet_hair, blush, steam, half-closed_eyes, looking_at_viewer",
"eyes": "half-closed, glossy, looking at viewer", "upper_body": "nude, wet, cum_on_chest, cum_on_stomach",
"arms": "resting on the rim of the bathtub or submerged", "lower_body": "submerged, knees_up",
"hands": "coated in white fluid, dripping", "hands": "dripping_cum",
"torso": "naked, wet skin, heavy coverage of white liquid on chest and stomach",
"pelvis": "submerged in pool of white liquid",
"legs": "knees bent and poking out of the liquid or spread slighty",
"feet": "submerged", "feet": "submerged",
"additional": "tiled bathroom background, steam, excessive cum, sticky texture, overflowing tub" "additional": "bathroom, steam, excessive_cum, sticky"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cum_bath", "participants": "1girl solo",
"covered_in_cum", "nsfw": true
"bathtub", }
"wet",
"naked",
"bukkake",
"messy"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cum_in_cleavage_illustrious", "action_id": "cum_in_cleavage_illustrious",
"action_name": "Cum In Cleavage Illustrious", "action_name": "Cum In Cleavage Illustrious",
"action": { "action": {
"full_body": "passionate upper body focus, intimacy", "base": "upper_body, focus_on_breasts, intimate",
"head": "blush, mouth slightly open, expression of pleasure or service", "head": "blush, open_mouth, expressive_eyes, looking_at_viewer, heavy_lidded_eyes",
"eyes": "looking at viewer, potentially heavy lidded or heart-shaped pupils", "upper_body": "arms_bent, breasts, cleavage, cum_in_cleavage, bare_breasts, liquid_in_cleavage",
"arms": "arms bent, hands bringing breasts together", "lower_body": "",
"hands": "holding own breasts, squeezing or pressing breasts together", "hands": "hands_on_breasts, squeezing_breasts",
"torso": "bare chest, medium to large breasts, pronounced cleavage, cum pooling in cleavage", "feet": "",
"pelvis": "not visible or seated", "additional": "messy, erotic, semen, cum_on_skin"
"legs": "not visible",
"feet": "not visible",
"additional": "pool of liquid in cleavage, messy, erotic context"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cum_in_cleavage_illustrious.safetensors", "lora_name": "Illustrious/Poses/cum_in_cleavage_illustrious.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cum_on_breasts", "participants": "1girl",
"paizuri", "nsfw": true
"cleavage", }
"breasts",
"breast_lift",
"plump",
"mature_female",
"short_hair",
"black_hair",
"indoors"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cum_inside_slime_v0_2", "action_id": "cum_inside_slime_v0_2",
"action_name": "Cum Inside Slime V0 2", "action_name": "Cum Inside Slime V0 2",
"action": { "action": {
"full_body": "front view, focus on midsection, semi-transparent body structure", "base": "front_view, focus_on_midsection, semi-transparent_body, translucent_skin",
"head": "flustered expression, open mouth, heavy blush, tongue out", "head": "flustered, open_mouth, heavy_blush, tongue_out, eyes_rolled_back, heart-shaped_pupils",
"eyes": "rolled back, heart-shaped pupils", "upper_body": "bent_arms, hands_on_stomach, visible_internal_cum, stomach_fill, distended_belly",
"arms": "bent at elbows, hands touching abdomen", "lower_body": "glowing, slime_texture, dripping, thighs_together",
"hands": "cupping lower belly, emphasizing fullness", "hands": "cupping_stomach",
"torso": "translucent skin, visible white liquid filling the stomach and womb area, slightly distended belly", "feet": "standing, melting",
"pelvis": "glowing with internal white fluid, see-through outer layer", "additional": "internal_cum, x-ray, cross-section, viscous_liquid, bioluminescence"
"legs": "thighs touching, slime texture dripping",
"feet": "standing firmly or slightly melting into floor",
"additional": "internal cum, x-ray, cross-section, viscous liquid, glowing interior"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"slime girl", "participants": "solo",
"monster girl", "nsfw": true
"transparent skin", }
"internal cum",
"cum filled",
"x-ray",
"stomach fill",
"viscous"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cum_shot", "action_id": "cum_shot",
"action_name": "Cum Shot", "action_name": "Cum Shot",
"action": { "action": {
"full_body": "portrait or upper body focus, capturing the moment of ejaculation or aftermath", "base": "cum_shot, cum, from_above",
"head": "tilted back or facing forward, expression of pleasure or shock", "head": "cum_on_face, facial, cum_in_eye, cum_in_mouth, open_mouth, messy_face",
"eyes": "closed or rolling back, eyelashes detailed", "upper_body": "cum_on_breasts, cum_on_body, sticky",
"arms": "out of frame or hands touching face", "lower_body": "",
"hands": "optional, touching face or wiping", "hands": "",
"torso": "chest visible, potentially with cum_on_body", "feet": "",
"pelvis": "usually out of frame in this context", "additional": "white_fluid, dripping, shiny_skin, fluid_on_skin"
"legs": "out of frame",
"feet": "out of frame",
"additional": "white fluids, messy, dripping, shiny skin"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cum_shot.safetensors", "lora_name": "Illustrious/Poses/cum_shot.safetensors",
@@ -20,26 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"cum", "participants": "1girl",
"facial", "nsfw": true
"ejaculation", }
"cum_on_body",
"cum_on_breasts",
"cum_in_eye",
"cum_in_mouth",
"bukkake",
"after_sex",
"messy_body",
"sticky",
"white_fluid",
"open_mouth",
"tongue",
"bukkake",
"tongue_out",
"saliva",
"sweat",
"blush",
"ahegao"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cum_swap", "action_id": "cum_swap",
"action_name": "Cum Swap", "action_name": "Cum Swap",
"action": { "action": {
"full_body": "two characters in close intimate proximity, upper bodies pressed together", "base": "1girl 1girl, duo, close embrace, intimate, body contact",
"head": "faces close, mouths open and connected, engaging in a deep kiss", "head": "kissing, deep kiss, open mouth, closed eyes, blush",
"eyes": "half-closed, heavy lidded, blushing cheeks", "upper_body": "arms around neck, arms around waist, chests touching, leaning in",
"arms": "embracing partner, wrapped around neck or waist", "lower_body": "leg lock, standing, pressing.",
"hands": "cupping partner's face, holding back of head, fingers entagled in hair", "hands": "face_grabbing, hand in hair, touching partner",
"torso": "chests touching, leaning inward", "feet": "barefoot, grounded",
"pelvis": "aligned with torso", "additional": "cum_swap, spit_take, saliva, seminal_fluid, mess, liquid_bridge"
"legs": "standing or sitting positions",
"feet": "grounded or out of frame",
"additional": "visible liquid bridge between mouths, thick white fluid transfer, saliva trail, messy chin"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cum swap", "participants": "1girl 1girl",
"mouth to mouth", "nsfw": true
"kissing", }
"open mouth",
"liquid bridge",
"saliva",
"semen",
"duo",
"sharing fluids",
"intimacy"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cumblastfacial", "action_id": "cumblastfacial",
"action_name": "Cumblastfacial", "action_name": "Cumblastfacial",
"action": { "action": {
"full_body": "solo, bukkake", "base": "solo, ejaculation, cumshot",
"head": "facial, head_tilt, looking_up", "head": "facial, head_tilt, looking_up, cum_in_eye, cum_on_face, covered_in_cum",
"eyes": "cum_in_eye", "upper_body": "arms_at_side, cum_on_upper_body, wet_clothes",
"arms": "arms_down", "lower_body": "standing",
"hands": "hands_down", "hands": "hands_at_side",
"torso": "cum_on_upper_body",
"pelvis": "standing",
"legs": "standing",
"feet": "standing", "feet": "standing",
"additional": "projectile_cum, excessive_cum, ejaculation" "additional": "projectile_cum, excessive_cum, semen, cum_on_hair"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cumblastfacial.safetensors", "lora_name": "Illustrious/Poses/cumblastfacial.safetensors",
@@ -20,15 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"facial", "participants": "solo",
"projectile_cum", "nsfw": true
"bukkake", }
"excessive_cum",
"ejaculation",
"head_tilt",
"looking_up",
"cum_in_eye",
"cum_on_hair"
]
} }

View File

@@ -2,15 +2,12 @@
"action_id": "cuminhands", "action_id": "cuminhands",
"action_name": "Cuminhands", "action_name": "Cuminhands",
"action": { "action": {
"full_body": "after_fellatio", "base": "after_fellatio, ejaculation",
"head": "facial, cum_string, cum_in_mouth", "head": "facial, cum_on_face, cum_in_mouth, cum_string, looking_at_hands",
"eyes": "looking_at_hands", "upper_body": "arms_bent, upper_body",
"arms": "arms_bent", "lower_body": "",
"hands": "cupping_hands, cum_on_hands", "hands": "cupping_hands, cum_on_hands",
"torso": "upper_body", "feet": "",
"pelvis": "n/a",
"legs": "n/a",
"feet": "n/a",
"additional": "excessive_cum" "additional": "excessive_cum"
}, },
"lora": { "lora": {
@@ -20,14 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cum_on_hands", "participants": "solo",
"cupping_hands", "nsfw": true
"excessive_cum", }
"facial",
"cum_in_mouth",
"cum_string",
"after_fellatio",
"looking_at_hands"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cumshot", "action_id": "cumshot",
"action_name": "Cumshot", "action_name": "Cumshot",
"action": { "action": {
"full_body": "close-up portrait shot, high angle view", "base": "close-up, high_angle, macro",
"head": "head tilted back, mouth slightly open, tongue out, face covered in white fluid", "head": "head_back, mouth_open, tongue_out, face_covered_in_cum, closed_eyes, rolling_eyes, ecstatic_expression, wet_eyelashes",
"eyes": "eyes closed or rolling back, expression of pleasure, wet eyelashes", "upper_body": "bare_shoulders, cleavage",
"arms": "out of frame", "lower_body": "out_of_frame",
"hands": "out of frame", "hands": "out_of_frame",
"torso": "upper chest and collarbone visible", "feet": "out_of_frame",
"pelvis": "kout of frame", "additional": "cum_on_face, facial, seminal_fluid, cum_drip, dynamic_angle, splashing, messy, thick_liquid"
"legs": "out of frame",
"feet": "out of frame",
"additional": "seminal fluid dripping from face, splashing liquid, thick texture, messy"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cum", "participants": "solo",
"cum on face", "nsfw": true
"facial", }
"messy",
"tongue out",
"seminal fluid",
"detailed liquid"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cumtube_000035", "action_id": "cumtube_000035",
"action_name": "Cumtube 000035", "action_name": "Cumtube 000035",
"action": { "action": {
"full_body": "kneeling or sitting, leaning back slightly to receive contents of tube", "base": "kneeling, leaning_back",
"head": "force feeeding, feeding tube,tilted back, face directed upwards, mouth wide open, tongue extended, chaotic facial mess", "head": "force_feeding, tube, head_tilted_back, mouth_open, tongue_out, facial_fluids, looking_up, eyes_rolled_back",
"eyes": "looking up, anticipating expression, half-closed or rolled back", "upper_body": "arms_raised, holding_object, chest_pushed_forward, fluids_dripping, torso_drenched",
"arms": "raised, holding a large clear cylinder", "lower_body": "kneeling, legs_together",
"hands": "firmly grasping the sides of the tube", "hands": "hands_on_object",
"torso": "chest pushed forward, liquid dripping down neck and chest", "feet": "toes, feet_together",
"pelvis": "kneeling, hips resting on heels", "additional": "clear_tube, cum, white_viscous_liquid, messy, splatter, overflow"
"legs": "legs folded underneath, knees apart",
"feet": "toes pointed backward",
"additional": "clear tube filled with white viscous liquid, heavy splatter, overflowing liquid, messy environment, bubbles inside tube"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,15 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cumtube", "participants": "1girl",
"viscous liquid", "nsfw": true
"excessive liquid", }
"facial mess",
"pouring",
"drinking",
"holding object",
"open mouth",
"wet skin"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "cunnilingus_on_back_illustriousxl_lora_nochekaiser", "action_id": "cunnilingus_on_back_illustriousxl_lora_nochekaiser",
"action_name": "Cunnilingus On Back Illustriousxl Lora Nochekaiser", "action_name": "Cunnilingus On Back Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "lying, on_back, spread_legs, nude", "base": "lying, on_back, spread_legs, nude",
"head": "torogao, blush, sweat", "head": "torogao, blush, sweat, half-closed_eyes, tongue_out",
"eyes": "half-closed_eyes", "upper_body": "navel, nipples, sweat",
"arms": "bent_arms", "lower_body": "cunnilingus, vulva, spread_legs, thighs",
"hands": "hands_on_own_chest", "hands": "hands_on_chest",
"torso": "navel, nipples, sweat",
"pelvis": "cunnilingus, pussy",
"legs": "spread_legs, thighs",
"feet": "", "feet": "",
"additional": "on_bed, pillow, from_side" "additional": "on_bed, pillow, profile"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/cunnilingus-on-back-illustriousxl-lora-nochekaiser.safetensors", "lora_name": "Illustrious/Poses/cunnilingus-on-back-illustriousxl-lora-nochekaiser.safetensors",
@@ -20,20 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cunnilingus", "participants": "1girl 1boy",
"lying", "nsfw": true
"on_back", }
"spread_legs",
"hands_on_own_chest",
"torogao",
"half-closed_eyes",
"sweat",
"blush",
"navel",
"nipples",
"hetero",
"on_bed",
"from_side"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "danglinglegs", "action_id": "danglinglegs",
"action_name": "Danglinglegs", "action_name": "Danglinglegs",
"action": { "action": {
"full_body": "suspended_congress, lifting_person, standing_sex", "base": "suspended_congress, lifting_person, standing_sex, sex_from_behind",
"head": "clenched_teeth, head_back", "head": "clenched_teeth, head_back, eyes_closed",
"eyes": "eyes_closed", "upper_body": "arms_around_neck, body_lifted, breasts_pressed_against_body",
"arms": "arms_around_neck", "lower_body": "penis_in_vagina, hips_held, legs_apart, feet_off_ground",
"hands": "hands_on_shoulders", "hands": "hands_on_shoulders, grabbing_shoulders",
"torso": "body_lifted", "feet": "toes_curled, barefoot",
"pelvis": "hips_held", "additional": "size_difference, larger_male, orgasm, sweat"
"legs": "legs_apart, feet_off_ground",
"feet": "toes_up, barefoot",
"additional": "size_difference, larger_male, sex_from_behind"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/danglinglegs.safetensors", "lora_name": "Illustrious/Poses/danglinglegs.safetensors",
@@ -20,14 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"suspended_congress", "participants": "1girl 1boy",
"lifting_person", "nsfw": true
"standing_sex", }
"sex_from_behind",
"size_difference",
"toes_up",
"barefoot",
"clenched_teeth"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "deep_kiss_000007", "action_id": "deep_kiss_000007",
"action_name": "Deep Kiss 000007", "action_name": "Deep Kiss 000007",
"action": { "action": {
"full_body": "intimate couple pose, two characters kissing passionately, bodies pressed tightly together in an embrace", "base": "1girl, 1boy, duo, kissing, deep_kiss, french_kiss, romantic, passionate, intimacy",
"head": "heads tilted, lips locked, mouths open, french kiss, tongue touching, cheeks flushed", "head": "eyes_closed, open_mouth, tongue, tongue_touching, flushed, blushing, tilted_head",
"eyes": "eyes tightly closed, passionate expression", "upper_body": "embrace, hugging, holding_each_other, arms_around_neck, arms_around_waist, chest_to_chest",
"arms": "arms wrapped around neck, arms holding waist, engulfing embrace", "lower_body": "hips_pressed_together, standing_close",
"hands": "cupping face, fingers running through hair, gripping shoulders or back", "hands": "cupping_face, hands_in_hair, gripping, back_embrace",
"torso": "chest to chest contact, breasts pressed against chest", "feet": "tiptoes, standing",
"pelvis": "hips pressed together, zero distance", "additional": "saliva, dripping_saliva, saliva_string, tongue_kiss"
"legs": "standing close, interlocked or one leg lifted behind",
"feet": "standing, on tiptoes",
"additional": "saliva trail, saliva string, connecting tongue, romantic atmosphere"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,20 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"deep kiss", "participants": "1girl 1boy",
"french kiss", "nsfw": true
"kissing", }
"tongue",
"saliva",
"saliva trail",
"open mouth",
"couple",
"intimate",
"romance",
"love",
"passionate",
"eyes closed",
"duo"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "deepthroat_ponytailhandle_anime_il_v1", "action_id": "deepthroat_ponytailhandle_anime_il_v1",
"action_name": "Deepthroat Ponytailhandle Anime Il V1", "action_name": "Deepthroat Ponytailhandle Anime Il V1",
"action": { "action": {
"full_body": "irrumatio, fellatio, 1boy, 1girl, duo", "base": "irrumatio, fellatio, 1boy, 1girl, duo, deepthroat",
"head": "forced_oral, head_back, mouth_open, saliva, drooling", "head": "forced, head_back, mouth_open, saliva, drooling, crying, tears, expressionless, wide_eyes",
"eyes": "crying, tears, glare, wide_eyes", "upper_body": "arms_at_sides, upper_body",
"arms": "arms_at_sides", "lower_body": "",
"hands": "hands_down", "hands": "hands_on_hair, grabbing_hair",
"torso": "upper_body", "feet": "",
"pelvis": "n/a", "additional": "penis, ponytail, pov"
"legs": "n/a",
"feet": "n/a",
"additional": "grabbing_another's_hair, penis, deepthroat, ponytail"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/Deepthroat_PonytailHandle_Anime_IL_V1.safetensors", "lora_name": "Illustrious/Poses/Deepthroat_PonytailHandle_Anime_IL_V1.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"irrumatio", "participants": "1boy 1girl",
"deepthroat", "nsfw": true
"fellatio", }
"grabbing_another's_hair",
"ponytail",
"drooling",
"tears",
"crying",
"penis",
"forced"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "defeat_ntr_il_nai_py", "action_id": "defeat_ntr_il_nai_py",
"action_name": "Defeat Ntr Il Nai Py", "action_name": "Defeat Ntr Il Nai Py",
"action": { "action": {
"full_body": "kneeling on the ground, slumped forward in defeat, on hands and knees, orz pose, sex from behind", "base": "kneeling, on_all_fours, orz, slumped, defeat, dogeza, sex_from_behind",
"head": "bowed head, looking down, face shadowed or hiding face", "head": "bowed_head, looking_down, shadowed_face, crying, tears, empty_eyes, closed_eyes, anguish",
"eyes": "crying, tears, empty eyes, or eyes squeezed shut in anguish", "upper_body": "arms_on_ground, hunched_back, leaning_forward",
"arms": "arms straight down supporting weight against the floor", "lower_body": "hips_up, kneeling, on_knees",
"hands": "hands flat on the ground, palms down, or clenched fists on ground", "hands": "hands_on_ground, palms_down, clenched_hand",
"torso": "hunched back, crushed posture, leaning forward", "feet": "barefoot, curled_toes",
"pelvis": "hips raised slightly or sitting back on heels in submission", "additional": "gloom, depression, dramatic_shadows, humiliation, emotional_breakdown"
"legs": "knees on ground, kneeling",
"feet": "tops of feet flat on floor",
"additional": "gloom, depression, dramatic shadows, humiliation, emotional devastation"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"defeat", "participants": "1girl 1boy",
"on hands and knees", "nsfw": true
"all fours", }
"despair",
"crying",
"orz",
"humiliation",
"kneeling",
"looking down",
"tears"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "defeat_suspension_il_nai_py", "action_id": "defeat_suspension_il_nai_py",
"action_name": "Defeat Suspension Il Nai Py", "action_name": "Defeat Suspension Il Nai Py",
"action": { "action": {
"full_body": "suspended sex, holding waist, dangling legs, full body suspended in air, hanging limp, defeated posture, complete lack of resistance", "base": "suspension, hanging, bondage, arms_up, limp, dangling, defeated, total_submission",
"head": "head hanging low, chin resting on chest, looking down, neck relaxed", "head": "head_down, hair_over_eyes, eyes_closed, unconscious, expressionless",
"eyes": "eyes closed, unconscious, pained expression, or empty gaze", "upper_body": "arms_above_head, stretched_arms, chest_up, ribcage",
"arms": "arms stretched vertically upwards, arms above head, shoulders pulled up by weight", "lower_body": "limp_legs, dangling_legs, sagging_hips",
"hands": "wrists bound together, hands tied overhead, handcuffs, shackles", "hands": "bound, wrists_bound, handcuffs",
"torso": "torso elongated by gravity, ribcage visible, stomach stretched", "feet": "barefoot, dangling",
"pelvis": "hips sagging downwards, dead weight", "additional": "ropes, chains, dungeon, interior"
"legs": "legs dangling freely, limp legs, knees slightly bent or hanging straight",
"feet": "feet pointing downwards, hovering off the ground, toes dragging",
"additional": "ropes, chains, metal hooks, dungeon background, exhaustion"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,15 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"suspension", "participants": "solo",
"hanging", "nsfw": true
"bound", }
"arms_up",
"limp",
"unconscious",
"dangling",
"bdsm",
"bondage"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "defeatspitroast_illustrious", "action_id": "defeatspitroast_illustrious",
"action_name": "Defeatspitroast Illustrious", "action_name": "Defeatspitroast Illustrious",
"action": { "action": {
"full_body": "oral sex, vaginal, threesome, double penetration, suspended sex, dangling legs", "base": "threesome, double penetration, oral, vaginal, spitroast, suspended, dangling_legs",
"head": "tilted back or looking aside, mouth wide open, tongue sticking out, exhausted expression", "head": "head_back, mouth_open, tongue_out, exhausted, eyes_rolled_back, semi-closed_eyes, ahegao",
"eyes": "rolled back, half-closed, ahegao", "upper_body": "arms_bent, arched_back, sweaty",
"arms": "bent at elbows, supporting upper body weight", "lower_body": "ass_up, kneeling, spread_legs",
"hands": "gripping the ground or sheets, clenching", "hands": "gripping, clenching",
"torso": "sweaty, deeply arched spine", "feet": "toes_curled",
"pelvis": "ass up, presenting rear", "additional": "messy_hair, trembling, heavy_breathing, defeated"
"legs": "kneeling, thighs spread wide",
"feet": "toes curled",
"additional": "messy hair, trembling, heavy breathing, defeated posture"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,18 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"doggystyle", "participants": "1girl 2boys",
"spitroast", "nsfw": true
"double_penetration", }
"all_fours",
"ass_up",
"open_mouth",
"tongue_out",
"ahegao",
"sweat",
"looking_back",
"",
"1girl"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "disinterested_sex___bored_female", "action_id": "disinterested_sex___bored_female",
"action_name": "Disinterested Sex Bored Female", "action_name": "Disinterested Sex Bored Female",
"action": { "action": {
"full_body": "female lying on back, legs spread, passive body language, completely disengaged from implicit activity", "base": "1girl, hetero, doggystyle, male_focused, (solo_focus:1.2)",
"head": "turned slightly or facing forward but focused on phone, resting on pillow", "head": "lying, stomach, on_stomach, pillow, looking_at_phone, bored, uninterested, expressionless",
"eyes": "looking at smartphone, dull gaze, half-closed, unenthusiastic", "upper_body": "lying, stomach",
"arms": "holding smartphone above face with one or both hands, elbows resting on surface", "lower_body": "doggystyle",
"hands": "holding phone, scrolling on screen", "hands": "holding_phone",
"torso": "lying flat, relaxed, exposed", "feet": "",
"pelvis": "hips passive, legs open", "additional": ""
"legs": "spread wide, knees bent, relaxed",
"feet": "loose, resting on bed",
"additional": "holding smartphone, checking phone, indifference, ignoring, nonchalant attitude"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,15 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"bored", "participants": "1girl 1boy",
"disinterested", "nsfw": true
"looking at phone", }
"smartphone",
"lying",
"spread legs",
"passive",
"indifferent",
"expressionless"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "display_case_bdsm_illus", "action_id": "display_case_bdsm_illus",
"action_name": "Display Case Bdsm Illus", "action_name": "Display Case Bdsm Illus",
"action": { "action": {
"full_body": "trapped inside a rectangular glass display case, standing or kneeling limitation, whole body confined", "base": "glass_box, confinement, trapped, human_exhibit, enclosure",
"head": "looking out through the glass, potentially gagged or expressionless", "head": "looking_at_viewer, open_mouth, empty_eyes, expressionless",
"eyes": "open, staring at the viewer through reflections", "upper_body": "bound, arms_behind_back, arms_pressed_against_glass, restricted_movement",
"arms": "restricted movement, potentially bound behind back or pressed against glass", "lower_body": "kneeling, standing",
"hands": "palms pressed against the transparent wall or tied", "hands": "hands_pressed_against_glass, bound_hands",
"torso": "upright relative to the container, visible behind glass", "feet": "barefoot",
"pelvis": "hips aligned with the standing or kneeling posture", "additional": "reflections, glass, transparent_wall, exhibit, bondage, bdsm"
"legs": "straight or folded to fit inside the box",
"feet": "resting on the bottom platform of the case",
"additional": "glass reflections, airtight container aesthetic, museum or auction setting, objectification"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"glass box", "participants": "solo",
"confinement", "nsfw": true
"exhibitionism", }
"trapped",
"through glass",
"human exhibit"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "display_case_illustr", "action_id": "display_case_illustr",
"action_name": "Display Case Illustr", "action_name": "Display Case Illustr",
"action": { "action": {
"full_body": "standing stiffly like an action figure, encased inside a rectangular transparent box", "base": "standing, action_figure, encased, display_box, transparent_packaging",
"head": "neutral expression, facing forward, slightly doll-like", "head": "neutral_expression, face_forward, fixed_gaze, doll_joint",
"eyes": "fixed gaze, looking at viewer", "upper_body": "rigid_posture, standing_stiffly, front_view",
"arms": "resting at sides or slightly bent in a static pose", "lower_body": "standing_straight, feet_together",
"hands": "open palms or loosely curled, possibly pressing against the front glass", "hands": "hands_at_sides, open_palm, pressing_against_glass",
"torso": "facing front, rigid posture", "feet": "flat_feet",
"pelvis": "aligned with torso", "additional": "cardboard_backing, toy_packaging, barcode, reflections_on_glass, sealed_box, plastic_container"
"legs": "standing straight, feet positioned securely on the box base",
"feet": "flat on the floor of the case",
"additional": "transparent plastic packaging, cardboard backing with product design, barcode, reflections on glass, sealed box"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,15 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"display case", "participants": "solo",
"action figure", "nsfw": false
"packaging", }
"in box",
"plastic box",
"collectible",
"sealed",
"toy",
"transparent"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "doggydoublefingering", "action_id": "doggydoublefingering",
"action_name": "Doggydoublefingering", "action_name": "Doggydoublefingering",
"action": { "action": {
"full_body": "Three females arranged side-by-side in a row, all facing away from viewer or towards viewer depending on angle, engaged in group sexual activity", "base": "3girls, group_sex, doggystyle, fingering, multiple_females_fingered",
"head": "various expressions, blushing, sweating, looking back or down", "head": "blushing, sweating, facial_expression, eyes_closed, looking_at_viewer",
"eyes": "open or closed in pleasure", "upper_body": "leaning_forward, upper_body_focus",
"arms": "varied, gripping sheets or supporting body", "lower_body": "all_fours, spread_legs, hips_up",
"hands": "resting on surface or gripping", "hands": "arms_extended, fingers_touching_surface",
"torso": "leaning forward, breasts visible if from front", "feet": "kneeling, soles_of_feet",
"pelvis": "hips raised, bent over", "additional": "male_focus, male_fingering, multiple_females, group_sex, vaginal_penetration, doggystyle_from_behind, shared_pleasure"
"legs": "kneeling on all fours",
"feet": "resting on bed or ground",
"additional": "center female receiving vaginal penetration from behind (doggystyle), two distinct side females being fingered simultaneously, male figure or disembodied hands performing the fingering"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/DoggyDoubleFingering.safetensors", "lora_name": "Illustrious/Poses/DoggyDoubleFingering.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"3girls", "participants": "3girls, 1boy",
"group_sex", "nsfw": true
"doggystyle", }
"fingering",
"all_fours",
"sex_from_behind",
"vaginal",
"hetero",
"harem",
"male_fingering"
]
} }

View File

@@ -2,37 +2,23 @@
"action_id": "dunking_face_in_a_bowl_of_cum_r1", "action_id": "dunking_face_in_a_bowl_of_cum_r1",
"action_name": "Dunking Face In A Bowl Of Cum R1", "action_name": "Dunking Face In A Bowl Of Cum R1",
"action": { "action": {
"full_body": "leaning_forward, head_down, drowning", "base": "kneeling, all_fours, head_down, humiliation, close-up, from_below, solo",
"head": "face_down, air_bubble, crying, tears, embarrassed, disgust", "head": "face_down, cum_in_mouth, cum_bubble, crying, closed_eyes",
"eyes": "closed_eyes, tears", "upper_body": "",
"arms": "clutching_head, arms_up", "lower_body": "",
"hands": "clutching_head", "hands": "clutching_head",
"torso": "leaning_forward", "feet": "",
"pelvis": "leaning_forward", "additional": "bowl, cum, drowning, air_bubble"
"legs": "standing",
"feet": "standing",
"additional": "bowl, cum"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/Dunking_face_in_a_bowl_of_cum_r1.safetensors", "lora_name": "Illustrious/Poses/Dunking_face_in_a_bowl_of_cum_r1.safetensors",
"lora_weight": 1.0, "lora_weight": 1.0,
"lora_triggers": "face in cum bowl, cum in bowl, cum bubble, excessive cum", "lora_triggers": "gokkun, cum bowl",
"lora_weight_min": 1.0, "lora_weight_min": 0.4,
"lora_weight_max": 1.0 "lora_weight_max": 0.6
}, },
"tags": [ "tags": {
"1girl", "participants": "1girl",
"solo", "nsfw": true
"leaning_forward", }
"head_down",
"clutching_head",
"drowning",
"air_bubble",
"crying",
"tears",
"embarrassed",
"disgust",
"bowl",
"cum"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ekiben_ill_10", "action_id": "ekiben_ill_10",
"action_name": "Ekiben Ill 10", "action_name": "Ekiben Ill 10",
"action": { "action": {
"full_body": "duo, 1boy, 1girl, standing, male lifting female, carrying, sexual position", "base": "duo, 1boy, 1girl, male_lifting_female, standing, holding, sexual_position, intercourse",
"head": "looking at another, head back or looking down", "head": "looking_at_each_other, head_back, closed_eyes",
"eyes": "eye contact or eyes closed", "upper_body": "arms_around_neck, chest_to_chest, close_embrace, torso_embrace",
"arms": "arms supporting legs, arms around neck", "lower_body": "connected, groins_touching, legs_around_male, legs_up, m_legs, bent_knees",
"hands": "holding legs, grabbing thighs, gripping", "hands": "hands_on_thighs, gripping_thighs, holding_legs",
"torso": "chest to chest, upright", "feet": "dangling_feet, toes_curled",
"pelvis": "connected, groins touching", "additional": "strength, suspension, height_difference, lifting_person"
"legs": "spread legs, legs up, legs around waist, m-legs, bent knees",
"feet": "dangling feet, plantar flexion",
"additional": "strength, suspension, height difference"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,14 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"ekiben", "participants": "1boy, 1girl, duo",
"lifting", "nsfw": true
"carrying", }
"standing",
"spread legs",
"holding legs",
"duo",
"sex"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "elbow_squeeze__concept_lora_000008", "action_id": "elbow_squeeze__concept_lora_000008",
"action_name": "Elbow Squeeze Concept Lora 000008", "action_name": "Elbow Squeeze Concept Lora 000008",
"action": { "action": {
"full_body": "Character standing with upper arms pressed tightly against the torso, emphasizing the chest area through the pressure of the elbows.", "base": "standing, arms_at_sides, upper_body, elbow_squeeze, pushing_together",
"head": "Facing forward, slightly tucked chin or tilted, expression often shy or teasing.", "head": "looking_at_viewer, shy, teasing",
"eyes": "Looking directly at viewer.", "upper_body": "arms_pressed_against_body, cleavage, breast_compression, arms_crossed_under_breasts",
"arms": "Upper arms squeezing inward against the sides of the ribs/chest, elbows tucked tight to the body.", "lower_body": "standing, standing_on_one_leg, knock-kneed",
"hands": "Forearms angled out or hands clasped near the navel/chest area.", "hands": "hands_together, hand_on_torso",
"torso": "Chest pushed upward or compressed slightly by the lateral pressure of the arms.", "feet": "barefoot, shoes",
"pelvis": "Neutral stance.", "additional": "tight_clothes"
"legs": "Standing straight or slightly knock-kneed for a shy effect.",
"feet": "Planted firmly.",
"additional": "Clothing often pulled tight across the chest due to the arm position."
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,11 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"elbow squeeze", "participants": "solo",
"arms at sides", "nsfw": false
"upper body", }
"squeezing",
"tight clothes"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "extreme_sex_v1_0_illustriousxl", "action_id": "extreme_sex_v1_0_illustriousxl",
"action_name": "Extreme Sex V1 0 Illustriousxl", "action_name": "Extreme Sex V1 0 Illustriousxl",
"action": { "action": {
"full_body": "sitting, engaging in sexual activity, intense body language", "base": "sexual_activity, sex, multiple_positions",
"head": "tilted back, expression of ecstasy", "head": "ahegao, rolling_eyes, head_back, mouth_open, drooling, saliva_trail",
"eyes": "rolling_eyes, loss of focus, cross-eyed (ahegao)", "upper_body": "sweaty, flushed, messy_hair, heavy_breathing",
"arms": "clinging or holding partner", "lower_body": "legs_spread, wrapped_around_partner",
"hands": "grasping details", "hands": "hands_on_partner, gripping",
"torso": "heaving, covered in sweat", "feet": "curled_toes",
"pelvis": "engaged in action", "additional": "passionate, climax, facial_flush, intense_expression"
"legs": "wrapped around or spread",
"feet": "toes curled",
"additional": "drooling, saliva_trail, flushing, messy_hair"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/extreme-sex-v1.0-illustriousxl.safetensors", "lora_name": "Illustrious/Poses/extreme-sex-v1.0-illustriousxl.safetensors",
@@ -20,17 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"rolling_eyes", "participants": "1girl 1boy",
"ahegao", "nsfw": true
"drooling", }
"sweat",
"open_mouth",
"tongue_out",
"messy_hair",
"heavy_breathing",
"blush",
"mind_break",
"sex"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "face_grab_illustrious", "action_id": "face_grab_illustrious",
"action_name": "Face Grab Illustrious", "action_name": "Face Grab Illustrious",
"action": { "action": {
"full_body": "POV close-up of a character having their face grabbed by the viewer", "base": "pov, first-person_view, close-up, grabbing_another's_face",
"head": "forced expression, open mouth, tongue out, pout, grabbing cheeks or chin", "head": "forced_expression, open_mouth, tongue_out, pout, crying, streaming_tears, looking_at_viewer",
"eyes": "looking at viewer, crying, streaming tears", "upper_body": "upper_body, nude, partially_clad",
"arms": "often not visible or passive", "lower_body": "out_of_frame",
"hands": "pov hands, hand grabbing face", "hands": "pov_hands, grabbing_face",
"torso": "upper body, often nude or partially visible", "feet": "out_of_frame",
"pelvis": "usually out of frame", "additional": "after_fellatio, cum_on_tongue, cum_on_face"
"legs": "out of frame",
"feet": "out of frame",
"additional": "context often after fellatio with fluids on face or tongue"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/face_grab_illustrious.safetensors", "lora_name": "Illustrious/Poses/face_grab_illustrious.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 0.5, "lora_weight_min": 0.5,
"lora_weight_max": 0.5 "lora_weight_max": 0.5
}, },
"tags": [ "tags": {
"grabbing_another's_face", "participants": "1girl 1boy",
"pov", "nsfw": true
"pov_hands", }
"after_fellatio",
"cum_on_tongue",
"open_mouth",
"tongue_out",
"pout",
"streaming_tears",
"cheek_pinching"
]
} }

View File

@@ -2,14 +2,11 @@
"action_id": "facesit_08", "action_id": "facesit_08",
"action_name": "Facesit 08", "action_name": "Facesit 08",
"action": { "action": {
"full_body": "sitting_on_face, cunnilingus, oral", "base": "sitting_on_face, cunnilingus, oral",
"head": "looking_at_viewer, looking_down", "head": "looking_at_viewer, looking_down",
"eyes": "looking_at_viewer", "upper_body": "hand_on_head, nude, close-up",
"arms": "head_grab", "lower_body": "pussy, spread_legs, vaginal_fluids, clitoris",
"hands": "on_head", "hands": "hands_on_head",
"torso": "nude, close-up",
"pelvis": "panties_aside, clitoris, pussy_juice",
"legs": "spread_legs",
"feet": "out_of_frame", "feet": "out_of_frame",
"additional": "yuri, female_pov, 2girls" "additional": "yuri, female_pov, 2girls"
}, },
@@ -20,20 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"2girls", "participants": "2girls",
"female_pov", "nsfw": true
"close-up", }
"looking_at_viewer",
"sitting_on_face",
"oral",
"cunnilingus",
"spread_legs",
"pussy_juice",
"clitoris",
"yuri",
"panties_aside",
"head_grab",
"looking_down"
]
} }

View File

@@ -1,39 +0,0 @@
{
"action_id": "facial_bukkake",
"action_name": "Facial Bukkake",
"action": {
"full_body": "close-up portrait shot, focus primarily on the face and neck area",
"head": "tilted slightly backward, mouth open or tongue out, face heavily covered in white liquid",
"eyes": "closed or looking upward, eyelashes wet/clumped",
"arms": "out of frame or hands interacting with face/hair",
"hands": "holding hair back or wiping cheek",
"torso": "upper chest or shoulders visible, possibly stained",
"pelvis": "not visible",
"legs": "not visible",
"feet": "not visible",
"additional": "streaming white liquid, dripping, messy, wet skin texture, high viscosity"
},
"participants": {
"solo_focus": "true",
"orientation": "F"
},
"lora": {
"lora_name": "Illustrious/Poses/facial_bukkake.safetensors",
"lora_weight": 1.0,
"lora_triggers": "facial_bukkake",
"lora_weight_min": 1.0,
"lora_weight_max": 1.0
},
"tags": [
"bukkake",
"facial",
"cum on face",
"semen",
"messy",
"white liquid",
"cum in eyes",
"cum in mouth",
"splatter",
"after sex"
]
}

View File

@@ -2,16 +2,13 @@
"action_id": "fellatio_from_below_illustriousxl_lora_nochekaiser", "action_id": "fellatio_from_below_illustriousxl_lora_nochekaiser",
"action_name": "Fellatio From Below Illustriousxl Lora Nochekaiser", "action_name": "Fellatio From Below Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "squatting, fellatio, from_below", "base": "fellatio, from_below, squatting",
"head": "facing_viewer, open_mouth", "head": "looking_at_viewer, open_mouth, looking_down",
"eyes": "looking_down", "upper_body": "nude, navel, breasts, nipples",
"arms": "arms_visible", "lower_body": "nude, pussy, spread_legs, bent_legs",
"hands": "hands_visible", "hands": "hands_on_ground",
"torso": "nude, navel, nipples", "feet": "barefoot",
"pelvis": "nude, pussy, spread_legs", "additional": "penis, testicles, fellatio, sweat, cum"
"legs": "squatting, bent_legs",
"feet": "feet_visible",
"additional": "penis, testicles, oral, sweat, cum"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/fellatio-from-below-illustriousxl-lora-nochekaiser.safetensors", "lora_name": "Illustrious/Poses/fellatio-from-below-illustriousxl-lora-nochekaiser.safetensors",
@@ -20,18 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"fellatio", "participants": "1girl 1boy",
"from_below", "nsfw": true
"squatting", }
"penis",
"testicles",
"completely_nude",
"hetero",
"oral",
"navel",
"nipples",
"sweat",
"pussy"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fellatio_on_couch_illustriousxl_lora_nochekaiser", "action_id": "fellatio_on_couch_illustriousxl_lora_nochekaiser",
"action_name": "Fellatio On Couch Illustriousxl Lora Nochekaiser", "action_name": "Fellatio On Couch Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "fellatio, sitting, on_couch, hetero, oral", "base": "fellatio, oral, sitting, on_couch, sex, hetero",
"head": "blush, sweat, head_down", "head": "blush, sweat, head_down, eyes_closed, looking_down",
"eyes": "looking_down, eyes_closed", "upper_body": "nude, breasts, breast_press, leaning_forward",
"arms": "arms_at_side", "lower_body": "sitting, spread_legs, nude",
"hands": "hands_on_legs", "hands": "hands_on_legs",
"torso": "breast_press, nipples, nude, leaning_forward",
"pelvis": "sitting, nude",
"legs": "sitting, legs_apart",
"feet": "feet_on_floor", "feet": "feet_on_floor",
"additional": "couch, penis, testicles, uncensored" "additional": "couch, penis, testicles, focus_on_penis"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/fellatio-on-couch-illustriousxl-lora-nochekaiser.safetensors", "lora_name": "Illustrious/Poses/fellatio-on-couch-illustriousxl-lora-nochekaiser.safetensors",
@@ -20,20 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"fellatio", "participants": "1girl 1boy",
"on_couch", "nsfw": true
"hetero", }
"penis",
"oral",
"sitting",
"testicles",
"blush",
"sweat",
"breast_press",
"nipples",
"nude",
"uncensored",
"couch"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "femdom_face_between_breasts", "action_id": "femdom_face_between_breasts",
"action_name": "Femdom Face Between Breasts", "action_name": "Femdom Face Between Breasts",
"action": { "action": {
"full_body": "upper body view, female character pressing a person's face into her chest", "base": "upper_body, 1girl, 1boy, couple, breast_smother",
"head": "looking down, chin tucked, dominant expression", "head": "looking_down, dominant, smirk, narrowed_eyes, looking_at_viewer",
"eyes": "narrowed, looking down at the person", "upper_body": "arms_around_head, chest, breasts_pressed_together, cleavage, breast_smother",
"arms": "wrapping around the person's head, holding head firmly", "lower_body": "standing",
"hands": "fingers tangled in hair, or pressing the back of the head", "hands": "hands_in_hair, holding_head",
"torso": "chest pushed forward, breasts pressed tightly together around a face", "feet": "",
"pelvis": "neutral alignment", "additional": "face_buried_in_breasts, squished_face, dominance, sexual_intercourse, suggestive"
"legs": "standing or sitting",
"feet": "not visible",
"additional": "male face buried in breasts, squished face, soft lighting, close-up"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"breast smother", "participants": "1girl 1boy",
"buried in breasts", "nsfw": true
"face between breasts", }
"facesitting",
"femdom",
"big breasts",
"cleavage"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "femdom_held_down_illust", "action_id": "femdom_held_down_illust",
"action_name": "Femdom Held Down Illust", "action_name": "Femdom Held Down Illust",
"action": { "action": {
"full_body": "girl_on_top, straddling, lying_on_back", "base": "straddling, pin, 1girl, 1boy, lying_on_back",
"head": "looking_down, looking_at_another", "head": "looking_down, looking_at_viewer, intense_expression",
"eyes": "forced_eye_contact", "upper_body": "arms_above_head, holding_wrists, dominant_female",
"arms": "holding_another's_wrists, arms_above_head", "lower_body": "spread_legs, crotch_straddle",
"hands": "grab, clenched_hands", "hands": "hands_holding, grasping, clenched_hand",
"torso": "on_back",
"pelvis": "straddled",
"legs": "spread_legs",
"feet": "barefoot", "feet": "barefoot",
"additional": "femdom, struggling, pinned, assertive_female" "additional": "femdom, power_dynamic, struggle, restraint"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/Femdom_Held_Down_Illust.safetensors", "lora_name": "Illustrious/Poses/Femdom_Held_Down_Illust.safetensors",
@@ -20,15 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"femdom", "participants": "1girl 1boy",
"assertive_female", "nsfw": true
"rough_sex", }
"girl_on_top",
"straddling",
"holding_another's_wrists",
"lying_on_back",
"pinned",
"struggling"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fertilization_illustriousxl_lora_nochekaiser", "action_id": "fertilization_illustriousxl_lora_nochekaiser",
"action_name": "Fertilization Illustriousxl Lora Nochekaiser", "action_name": "Fertilization Illustriousxl Lora Nochekaiser",
"action": { "action": {
"full_body": "sex, vaginal, on_bed, nude, cowboy_shot", "base": "sex, vaginal, on_bed, nude, cowboy_shot, ejaculation",
"head": "ahegao, blush, open_mouth, head_back", "head": "ahegao, flushed, open_mouth, head_back, rolled_eyes, half-closed_eyes",
"eyes": "rolled_eyes, half_closed_eyes", "upper_body": "nude, nipples, navel, arms_at_sides",
"arms": "arms_at_sides", "lower_body": "pussy, cum_in_pussy, internal_cumshot, penis, hetero, spread_legs, legs_up",
"hands": "clenched_hands", "hands": "clenched_hands",
"torso": "nude, nipples, navel",
"pelvis": "pussy, cum_in_pussy, internal_cumshot, penis, hetero",
"legs": "spread_legs, legs_up",
"feet": "bare_feet", "feet": "bare_feet",
"additional": "cross-section, fertilization, impregnation, uterus, ovum, sperm_cell, ovaries, ejaculation" "additional": "cross-section, fertilization, pregnancy, uterus, ovum, sperm_cell, ovaries"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/fertilization-illustriousxl-lora-nochekaiser.safetensors", "lora_name": "Illustrious/Poses/fertilization-illustriousxl-lora-nochekaiser.safetensors",
@@ -20,18 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"fertilization", "participants": "1girl 1boy",
"cross-section", "nsfw": true
"ovum", }
"sperm_cell",
"impregnation",
"uterus",
"internal_cumshot",
"cum_in_pussy",
"vaginal",
"ovaries",
"ahegao",
"on_bed"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fff_imminent_masturbation", "action_id": "fff_imminent_masturbation",
"action_name": "Fff Imminent Masturbation", "action_name": "Fff Imminent Masturbation",
"action": { "action": {
"full_body": "hand_on_own_crotch, trembling, legs_together, knock-kneed", "base": "hand_on_crotch, trembling, legs_together, knock-kneed, blushing, arousal",
"head": "heavy_breathing, sweating, looking_down", "head": "heavy_breathing, sweat, looking_down, narrowed_eyes, half-closed_eyes, dilated_pupils, flushed",
"eyes": "narrowed_eyes, half-closed_eyes, dilated_pupils", "upper_body": "arched_back, squirming, knees_together",
"arms": "arms_down, hand_between_legs", "lower_body": "hips_forward, standing, legs_together",
"hands": "hand_on_own_crotch, squeezing, rubbing_crotch", "hands": "hand_on_crotch, grasping, squeezing, rubbing_crotch",
"torso": "arched_back, squirming", "feet": "standing, feet_together",
"pelvis": "hips_forward", "additional": "clothed_masturbation, urgency, arousal, intimate_touch"
"legs": "legs_together, knock-kneed",
"feet": "standing",
"additional": "clothed_masturbation, urgency, arousal, through_clothes"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/FFF_imminent_masturbation.safetensors", "lora_name": "Illustrious/Poses/FFF_imminent_masturbation.safetensors",
@@ -20,16 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"hand_on_own_crotch", "participants": "solo",
"heavy_breathing", "nsfw": true
"trembling", }
"sweat",
"blush",
"legs_together",
"clothed_masturbation",
"hand_between_legs",
"aroused",
"rubbing_crotch"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffm3some_footjob_efeme3ftfe_il_1475115", "action_id": "ffm3some_footjob_efeme3ftfe_il_1475115",
"action_name": "Ffm3Some Footjob Efeme3Ftfe Il 1475115", "action_name": "Ffm3Some Footjob Efeme3Ftfe Il 1475115",
"action": { "action": {
"full_body": "FFM threesome scenario, one male lying on back receiving stimulation, two females sitting or reclining near his, performing a double footjob", "base": "ffm, threesome, 1boy, 2girls, footjob, multiple_partners, sexual_activity",
"head": "females looking down at their feet, male head bathed in pleasure, expressions of focus and arousal", "head": "looking_down, male focus, arousal, eyes_closed, looking_at_penis, eye_contact",
"eyes": "looking at penis, eyes closed, eye contact with male", "upper_body": "supine, bare_torso, torso_focus, arms_at_sides, reclining",
"arms": "females arms resting behind them for support or on their own legs", "lower_body": "spread_legs, legs_up, legs_spread",
"hands": "hands resting on bed sheets, gripping sheets, or touching own legs", "hands": "gripping_sheets, hands_on_bed, hands_on_legs",
"torso": "male torso exposed supine, females upper bodies leaning back or sitting upright", "feet": "barefoot, soles, toes_curling, sandwich, four_feet",
"pelvis": "hips positioned to extend legs towards the male", "additional": "indoors, bed, crumpled_sheets, climax, sweaty"
"legs": "females legs extended towards center, male legs spread or straight",
"feet": "barefoot, soles rubbing against penis, toes curling, sandwiching penis between feet, four feet visible",
"additional": "indoors, bed, crumpled sheets, sexual activity, multiple partners"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"footjob", "participants": "1boy, 2girls, ffm, threesome",
"ffm", "nsfw": true
"threesome", }
"2girls",
"1boy",
"soles",
"barefoot",
"legs",
"penis",
"sexual"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffm_threesome___kiss_and_fellatio_illustrious", "action_id": "ffm_threesome___kiss_and_fellatio_illustrious",
"action_name": "Ffm Threesome Kiss And Fellatio Illustrious", "action_name": "Ffm Threesome Kiss And Fellatio Illustrious",
"action": { "action": {
"full_body": "ffm_threesome, 2girls, 1boy, group_sex, sandwich_position", "base": "ffm_threesome, 2girls, 1boy, group_sex, sandwich_position",
"head": "kissing, sucking, head_grab", "head": "kissing, fellatio, head_grab, closed_eyes, tilted_head",
"eyes": "closed_eyes, looking_at_partner", "upper_body": "arms_around_neck, hand_on_head, leaning_forward, physical_contact, messy_hair, collarbone",
"arms": "arms_around_neck, holding_penis, hand_on_head", "lower_body": "kneeling, sitting, straddling, spread_legs, barefoot",
"hands": "stroking", "hands": "stroking, hand_on_penis",
"torso": "leaning_forward, physical_contact",
"pelvis": "sitting, straddling",
"legs": "kneeling, spread_legs",
"feet": "barefoot", "feet": "barefoot",
"additional": "indoor, couch, faceless_male, saliva, blush" "additional": "indoor, couch, faceless_male, saliva, blush, intimate, pleasure"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/FFM_threesome_-_Kiss_and_Fellatio_Illustrious.safetensors", "lora_name": "Illustrious/Poses/FFM_threesome_-_Kiss_and_Fellatio_Illustrious.safetensors",
@@ -20,21 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"2girls", "participants": "1boy, 2girls",
"1boy", "nsfw": true
"ffm_threesome", }
"group_sex",
"hetero",
"kissing",
"fellatio",
"faceless_male",
"sitting",
"couch",
"indoor",
"nude",
"blush",
"saliva",
"sandwich_position"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffm_threesome_doggy_style_front_view_illustrious", "action_id": "ffm_threesome_doggy_style_front_view_illustrious",
"action_name": "Ffm Threesome Doggy Style Front View Illustrious", "action_name": "Ffm Threesome Doggy Style Front View Illustrious",
"action": { "action": {
"full_body": "threesome, 2girls, 1boy, doggy style, all fours, kneeling, from front, bodies overlapping", "base": "threesome, 2girls, 1boy, doggy_style, from_front, all_fours, kneeling, bodies_overlapping",
"head": "looking at viewer, head raised, blushing, sweating, tongues out", "head": "looking_at_viewer, head_raised, blushes, sweat, tongue_out, open_eyes, heart_pupils, eye_contact",
"eyes": "open eyes, heart-shaped pupils, eye contact", "upper_body": "arms_straight, hands_on_ground, leaning_forward, arched_back, breasts_hanging",
"arms": "arms straight, supporting weight, hands on ground", "lower_body": "hips_raised, buttocks, knees_bent, kneeling, legs_spread",
"hands": "palms flat, fingers spread, on bed sheet", "hands": "palms_flat, fingers_spread, on_bed",
"torso": "leaning forward, arched back, breasts hanging", "feet": "toes_curled, feet_relaxed",
"pelvis": "hips raised high, buttocks touching", "additional": "sex, penetration, vaginal_intercourse, motion_lines, saliva_trail, indoors, bed"
"legs": "knees bent, kneeling, legs spread",
"feet": "toes curled, feet relaxed",
"additional": "sex, penetration, vaginal, motion lines, saliva trail, indoors, bed"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"threesome", "participants": "2girls 1boy",
"2girls", "nsfw": true
"1boy", }
"doggy style",
"from front",
"all fours",
"sex",
"penetration",
"blush",
"sweat"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffm_threesome_girl_sandwichdouble_dip_illustrious", "action_id": "ffm_threesome_girl_sandwichdouble_dip_illustrious",
"action_name": "Ffm Threesome Girl Sandwichdouble Dip Illustrious", "action_name": "Ffm Threesome Girl Sandwichdouble Dip Illustrious",
"action": { "action": {
"full_body": "Three-person stack on a bed: one girl lying flat on her back, the male (often faceless/obscured) positioned in the middle, and the second girl straddling on top of the pile.", "base": "ffm_threesome, 2girls, 1boy, sandwiched, bed, messy_bed",
"head": "Girls' faces visible, often with flushed cheeks or ahegao expressions; male face usually out of frame or obscured.", "head": "ahegao, flushed, closed_eyes, rolled_back_eyes, looking_at_viewer",
"eyes": "rolled_back, closed_eyes, or looking_at_viewer", "upper_body": "embracing, cleavage, breasts_pressed_together, holding_bed_sheet",
"arms": "Arms embracing the partner in the middle or holding bed sheets.", "lower_body": "straddling, legs_spread, pelvis_against_pelvis, implied_penetration",
"hands": "grabbing_sheet or touching_partner", "hands": "grabbing_sheet, touching_partner",
"torso": "Sandwiched torsos, breasts pressed against the middle partner.",
"pelvis": "Interconnected pelvises, implied penetration.",
"legs": "Bottom girl with legs_spread, top girl straddling.",
"feet": "barefoot", "feet": "barefoot",
"additional": "Scene typically set on a bed with messy sheets." "additional": "group_sex, orgasm, erotic, indoors"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/FFM_threesome_girl_sandwichdouble_dip_Illustrious.safetensors", "lora_name": "Illustrious/Poses/FFM_threesome_girl_sandwichdouble_dip_Illustrious.safetensors",
@@ -20,23 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"ffm_threesome", "participants": "1boy, 2girls",
"group_sex", "nsfw": true
"sandwiched", }
"2girls",
"1boy",
"girl_on_top",
"on_back",
"lying",
"straddling",
"faceless_male",
"male_on_top",
"stack",
"sex",
"implied_penetration",
"ahegao",
"bed_sheet",
"messy_bed"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffm_threesome_one_girl_on_top_and_bj", "action_id": "ffm_threesome_one_girl_on_top_and_bj",
"action_name": "Ffm Threesome One Girl On Top And Bj", "action_name": "Ffm Threesome One Girl On Top And Bj",
"action": { "action": {
"full_body": "ffm_threesome, cowgirl_position, straddling, lying, on_back", "base": "ffm_threesome, cowgirl_position, straddling, lying, on_back",
"head": "blush, half-closed_eyes", "head": "blush, half-closed_eyes, heavy_breathing, open_mouth",
"eyes": "half-closed_eyes", "upper_body": "nude, breasts",
"arms": "arms_at_sides", "lower_body": "legs_apart, straddling, kneeling, bent_legs",
"hands": "hands_on_chest", "hands": "hands_on_body, touching_self",
"torso": "nude, breasts",
"pelvis": "legs_apart, straddling",
"legs": "kneeling, bent_legs",
"feet": "barefoot", "feet": "barefoot",
"additional": "fellatio, licking, penis, testicles, size_difference, 2girls, 1boy" "additional": "fellatio, penis, testicles, multiple_girls, 2girls, 1boy, sex"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/FFM_threesome_one_girl_on_top_and_BJ.safetensors", "lora_name": "Illustrious/Poses/FFM_threesome_one_girl_on_top_and_BJ.safetensors",
@@ -20,21 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"ffm_threesome", "participants": "1girl 1boy 1girl",
"cowgirl_position", "nsfw": true
"fellatio", }
"straddling",
"2girls",
"1boy",
"reaction",
"lying",
"on_back",
"nude",
"sex",
"penis",
"testicles",
"erotic",
"cum"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "ffmnursinghandjob_ill_v3", "action_id": "ffmnursinghandjob_ill_v3",
"action_name": "Ffmnursinghandjob Ill V3", "action_name": "Ffmnursinghandjob Ill V3",
"action": { "action": {
"full_body": "threesome, 2girls, 1boy, ffm, male lying on back, two females kneeling or straddling", "base": "threesome, 2girls, 1boy, ffm, male_lying_on_back, females_kneeling, straddle",
"head": "blushing faces, looking down, ecstatic expressions, tongue out", "head": "blush, looking_down, ecstatic, tongue_out, half-closed_eyes, heart-shaped_pupils, looking_at_penis",
"eyes": "half-closed eyes, heart-shaped pupils, looking at penis", "upper_body": "holding_breasts, reaching_for_penis, exposed_breasts, leaning_forward, nipples",
"arms": "holding breasts, offering breast, reaching for penis", "lower_body": "kneeling, spread_legs, phallus_straddle",
"hands": "double handjob, stroking penis, squeezing breasts", "hands": "double_handjob, stroking_penis, squeezing_breasts",
"torso": "exposed breasts, leaning forward, nipples visible",
"pelvis": "hips positioned near male's face or chest",
"legs": "kneeling, spread legs",
"feet": "barefoot", "feet": "barefoot",
"additional": "lactation, breast milk, saliva string, messy" "additional": "lactation, breast_milk, saliva, mess"
}, },
"participants": { "participants": {
"solo_focus": "false", "solo_focus": "false",
@@ -24,18 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"threesome", "participants": "1boy, 2girls, threesome",
"2girls", "nsfw": true
"1boy", }
"ffm",
"handjob",
"double_handjob",
"nursing",
"breast_feeding",
"lactation",
"breast_milk",
"big_breasts",
"kneeling"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "finish_blow_ill_v0_90_000004", "action_id": "finish_blow_ill_v0_90_000004",
"action_name": "Finish Blow Ill V0 90 000004", "action_name": "Finish Blow Ill V0 90 000004",
"action": { "action": {
"full_body": "highly dynamic combat pose, delivering a final powerful strike, lunging forward or mid-air jump", "base": "dynamic_pose, fighting_stance, lunging, aerial_pose, mid-air",
"head": "intense battle expression, shouting or gritted teeth, hair flowing with motion", "head": "intense_expression, screaming, gritted_teeth, flowing_hair, fierce_eyes, glare",
"eyes": "fierce gaze, focused on target, angry eyes", "upper_body": "weapon_swing, motion_blur, torso_twist, dynamic_angle",
"arms": "swinging wildy, outstretched with weapon, motion blur on limbs", "lower_body": "wide_stance, knees_bent, rotated_hips, foreshortening",
"hands": "tightly gripping weapon, two-handed grip, or clenched fist", "hands": "grip, clenched_hand, holding_weapon, two-handed_weapon",
"torso": "twisted torso for momentum, leaning into the attack", "feet": "standing_on_ground, mid-air",
"pelvis": "hips rotated to generate power, low center of gravity", "additional": "speed_lines, impact_frames, shockwave, cinematic_lighting, dutch_angle, smear_frame"
"legs": "wide stance, knees bent, dynamic foreshortening",
"feet": "planted firmly on ground or pointed in air, debris kicks up",
"additional": "light trails, speed lines, impact effects, shockwaves, cinematic lighting, dutch angle, weapon smear"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,12 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"action shot", "participants": "solo",
"fighting", "nsfw": false
"masterpiece", }
"motion blur",
"intense",
"cinematic composition"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fixed_perspective_v3_1558768", "action_id": "fixed_perspective_v3_1558768",
"action_name": "Fixed Perspective V3 1558768", "action_name": "Fixed Perspective V3 1558768",
"action": { "action": {
"full_body": "Character positioned with exaggerated depth, utilizing strong foreshortening to create a 3D effect aimed at the viewer", "base": "foreshortening, exaggerated_perspective, depth, 3d, cinematic_composition",
"head": "Face centered and close to the camera, looking directly at the viewer", "head": "extreme_close_up, looking_at_viewer, eye_contact, detailed_eyes, face_focus",
"eyes": "Intense eye contact, detailed eyes", "upper_body": "reaching_towards_viewer, hand_in_foreground, perspective_distortion, angled_body",
"arms": "One or both arms reaching towards the lens, appearing larger due to perspective", "lower_body": "diminutive, distant, perspective_shift",
"hands": "Enlarged hands/fingers reaching out (foreshortened)", "hands": "enlarged_hand, fingers_spread, reaching, holding_frame",
"torso": "Angled to recede into the background", "feet": "",
"pelvis": "Visually smaller, further back", "additional": "fisheye, low_angle, depth_of_field, wide_angle_lens, distortion"
"legs": "Trailing off into the distance, significantly smaller than the upper body",
"feet": "Small or out of frame due to depth",
"additional": "Fisheye lens effect, dramatic camera angle, depth of field, high distortion, 3D composition"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"foreshortening", "participants": "solo",
"perspective", "nsfw": false
"fisheye", }
"reaching",
"dynamic angle",
"portrait",
"depth of field"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fixed_point_v2", "action_id": "fixed_point_v2",
"action_name": "Fixed Point V2", "action_name": "Fixed Point V2",
"action": { "action": {
"full_body": "kneeling on floor in bedroom", "base": "kneeling, on_floor, indoors, bedroom",
"head": "looking at viewer", "head": "looking_at_viewer, open_eyes",
"eyes": "open eyes", "upper_body": "leaning_on_bed, torso_facing_viewer",
"arms": "resting on bed", "lower_body": "kneeling, legs_together",
"hands": "resting", "hands": "hands_resting",
"torso": "facing viewer",
"pelvis": "kneeling",
"legs": "kneeling",
"feet": "barefoot", "feet": "barefoot",
"additional": "full room view, fxdpt" "additional": "fxdpt, wide_shot, room_interior"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/fixed_point_v2.safetensors", "lora_name": "Illustrious/Poses/fixed_point_v2.safetensors",
@@ -20,14 +17,8 @@
"lora_weight_min": 0.8, "lora_weight_min": 0.8,
"lora_weight_max": 0.8 "lora_weight_max": 0.8
}, },
"tags": [ "tags": {
"kneeling", "participants": "solo",
"on_floor", "nsfw": false
"indoors", }
"bedroom",
"bed",
"wide_shot",
"from_above",
"perspective"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "flaccid_after_cum_illustrious_000009", "action_id": "flaccid_after_cum_illustrious_000009",
"action_name": "Flaccid After Cum Illustrious 000009", "action_name": "Flaccid After Cum Illustrious 000009",
"action": { "action": {
"full_body": "exhausted post-coital slump, relaxing", "base": "post-coital, exhausted, lying, bed",
"head": "flushed face, head tilted back, disheveled hair", "head": "flushed_face, eyes_rolled_back, messy_hair, half-closed_eyes, expressionless",
"eyes": "half-closed, ahegao or glazed expression", "upper_body": "sweaty, bare_chest, heaving_chest",
"arms": "limp, resting at sides", "lower_body": "flaccid_penis, soft_penis, semen, legs_spread",
"hands": "relaxed, open", "hands": "relaxed_hands",
"torso": "sweaty skin, heaving chest", "feet": "relaxed_feet",
"pelvis": "flaccid penis exposed, soft, seminal fluid leaking", "additional": "messy_bed, steam"
"legs": "spread wide, relaxed",
"feet": "loose",
"additional": "messy bed sheets, heavy breathing, steamy atmosphere"
}, },
"lora": { "lora": {
"lora_name": "Illustrious/Poses/Flaccid_After_Cum_Illustrious-000009.safetensors", "lora_name": "Illustrious/Poses/Flaccid_After_Cum_Illustrious-000009.safetensors",
@@ -20,15 +17,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"after_sex", "participants": "1boy",
"flaccid", "nsfw": true
"cum_in_pussy", }
"sweat",
"heavy_breathing",
"messy_hair",
"cum_on_body",
"cum_in_mouth",
"after_fellatio"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "fleshlight_position_doggystyle_dangling_legs_sex_from_behind_hanging_legs_ponyilsdsdxl", "action_id": "fleshlight_position_doggystyle_dangling_legs_sex_from_behind_hanging_legs_ponyilsdsdxl",
"action_name": "Fleshlight Position Doggystyle Dangling Legs Sex From Behind Hanging Legs Ponyilsdsdxl", "action_name": "Fleshlight Position Doggystyle Dangling Legs Sex From Behind Hanging Legs Ponyilsdsdxl",
"action": { "action": {
"full_body": "doggystyle, sex from behind, hanging legs, vaginal", "base": "doggystyle, sex, vaginal, from_behind, hanging_legs",
"head": "facing down or looking back over shoulder", "head": "looking_back, expressionless, open_mouth, closed_eyes",
"eyes": "half-closed or expression of pleasure", "upper_body": "arched_back, leaning_forward, elbows_on_bed",
"arms": "supporting upper body weight, elbows often bent", "lower_body": "raised_hips, legs_dangling, dangling",
"hands": "gripping the sheets or resting flat on the surface", "hands": "hands_on_bed, gripping_bedclothes",
"torso": "prone, leaning forward, back deeply arched", "feet": "barefoot, curled_toes",
"pelvis": "elevated and pushed back to the edge of the surface", "additional": "on_bed, from_behind, sex_position"
"legs": "dangling down off the edge, knees slightly bent, not supporting weight",
"feet": "hanging freely, toes connecting with nothing, off the ground",
"additional": "on edge of bed, precarious balance, from behind perspective"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,16 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"doggystyle", "participants": "1girl 1boy",
"dangling legs", "nsfw": true
"hanging legs", }
"edge of bed",
"prone",
"arched back",
"from behind",
"raised hips",
"feet off ground",
"sex act"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "folded_xl_illustrious_v1_0", "action_id": "folded_xl_illustrious_v1_0",
"action_name": "Folded Xl Illustrious V1 0", "action_name": "Folded Xl Illustrious V1 0",
"action": { "action": {
"full_body": "Character standing in a confident or defensive posture with weight shifted to one side", "base": "standing, crossed_arms, posture",
"head": "Chin slightly raised, facing the viewer directly", "head": "looking_at_viewer, chin_up, confident_expression, skeptical_expression, annoyed",
"eyes": "Sharp gaze, expressing confidence, skepticism, or annoyance", "upper_body": "crossed_arms",
"arms": "Both arms crossed firmly over the chest (folded arms)", "lower_body": "standing, hip_cocked",
"hands": "Hands tucked under the biceps or grasping the opposite upper arm", "hands": "hands_on_upper_arms",
"torso": "Upright posture, chest slightly expanded", "feet": "feet_together, standing",
"pelvis": "Hips slightly cocked to one side for attitude", "additional": "arrogance, defiance"
"legs": "Standing straight, legs apart or one knee relaxed",
"feet": "Planted firmly on the ground",
"additional": "Often implies an attitude of arrogance, patience, or defiance"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,13 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"crossed arms", "participants": "solo",
"standing", "nsfw": false
"confident", }
"attitude",
"looking at viewer",
"skeptical",
"upper body"
]
} }

View File

@@ -2,16 +2,13 @@
"action_id": "forced_cunnilingus", "action_id": "forced_cunnilingus",
"action_name": "Forced Cunnilingus", "action_name": "Forced Cunnilingus",
"action": { "action": {
"full_body": "female lying on back, legs spread wide, partner positioning head between legs performing oral sex", "base": "cunnilingus, oral_sex, lying_on_back, legs_spread, partner_positioning, 1girl, 1boy",
"head": "head tilted back, blushing, expression of distress or shock, mouth slightly open", "head": "head_tilted_back, blushing, distressed, tears, mouth_open, looking_away, teary_eyes",
"eyes": "teary eyes, squeezed shut or looking away", "upper_body": "arms_pinned, arched_back, chest_heaving",
"arms": "arms pinned above head or held down against surface", "lower_body": "hips_lifted, spread_legs, m_legs, knees_bent, exposed_crotch",
"hands": "clenched fists, wrists held", "hands": "clenched_hands, held_wrists",
"torso": "arched back, chest heaving", "feet": "curled_toes",
"pelvis": "hips lifted slightly, exposed crotch", "additional": "saliva, head_between_thighs, struggle, non-consensual"
"legs": "legs spread, m-legs, knees bent, thighs held apart by partner",
"feet": "toes curled in tension",
"additional": "cunnilingus, saliva trail, partner's head buried in crotch, struggle, non-consensual undertones"
}, },
"participants": { "participants": {
"solo_focus": "true", "solo_focus": "true",
@@ -24,17 +21,8 @@
"lora_weight_min": 1.0, "lora_weight_min": 1.0,
"lora_weight_max": 1.0 "lora_weight_max": 1.0
}, },
"tags": [ "tags": {
"cunnilingus", "participants": "1girl 1boy",
"oral sex", "nsfw": true
"lying on back", }
"legs spread",
"legs held",
"pinned down",
"distressed",
"blushing",
"crying",
"vaginal",
"sex act"
]
} }

Some files were not shown because too many files have changed in this diff Show More