NSFW Video Generation
Generate adult video content using each::sense API with safety checker disabled
What this skill does
# NSFW Video Generation
Generate adult video content, artistic nude videos, and mature-themed animations using the each::sense API with safety restrictions disabled.
## Overview
The each::sense API enables creation of adult video content when the `enable_safety_checker` parameter is set to `false`. This unlocks generation capabilities for:
- **Artistic nude videos** - Fine art inspired videography
- **Glamour content** - Fashion and lingerie video production
- **Boudoir videos** - Intimate, tasteful bedroom aesthetics
- **Fantasy themes** - Mythological and fantasy adult content
- **Couples content** - Romantic and intimate pair scenarios
> **Important**: All requests must include `"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false` to generate NSFW content.
## Quick Start
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create an artistic nude video of a woman in a classical renaissance painting style, soft natural lighting, elegant pose"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
## Video Types
| Type | Description | Best For |
|------|-------------|----------|
| Artistic | Fine art nude videography, classical aesthetics | Museum-quality artistic expression |
| Glamour | Fashion-forward, lingerie, elegant styling | Professional modeling portfolios |
| Boudoir | Intimate bedroom settings, soft lighting | Personal romantic content |
| Fantasy | Mythological, cosplay, themed scenarios | Creative storytelling |
| Couples | Romantic pairs, intimate moments | Relationship-focused content |
| Dance | Sensual movement, choreography | Performance and movement art |
## Use Case Examples
### 1. Artistic Video Content
Create fine art inspired nude videography with classical aesthetics.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate an artistic nude video inspired by Botticelli, woman emerging from water, flowing hair, golden hour lighting, slow graceful movement, renaissance painting aesthetic"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 2. Glamour/Lingerie Video
Professional glamour and lingerie video production.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a glamour video of a model in black lace lingerie, luxury bedroom setting, soft studio lighting, slow confident walk toward camera, high fashion editorial style"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 3. Boudoir Video
Intimate boudoir-style video with soft, romantic aesthetics.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate a boudoir video, woman in silk robe by window, morning sunlight streaming through sheer curtains, gentle movement, intimate atmosphere, warm color palette"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 4. Dance/Movement Video
Sensual dance and movement-focused video content.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a sensual contemporary dance video, woman in flowing sheer fabric, dramatic spotlight, fluid graceful movements, artistic choreography, black background"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 5. Fantasy Themed Video
Mythological and fantasy adult content with creative themes.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate a fantasy video of a forest nymph, ethereal nude figure with flower crown, enchanted forest setting, magical glowing particles, mystical atmosphere, slow ethereal movement"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 6. Couples Content
Romantic and intimate couples video scenarios.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a romantic couples video, intimate embrace on bed with white sheets, soft natural lighting, tender moment, tasteful artistic framing, warm romantic atmosphere"
}
],
"mode": "video",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 7. Image-to-Video Animation
Animate an existing image into NSFW video content by providing image URLs.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Animate this artistic nude photo, add subtle breathing movement, gentle hair flowing, soft blinking, maintain the elegant pose and lighting"
}
],
"mode": "video",
"image_urls": ["https://example.com/artistic-photo.jpg"],
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 8. Consistent Character Video Series
Create multiple videos with the same character using session_id for continuity.
```bash
# First video in series
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a glamour video introducing a character: tall brunette model, green eyes, elegant features, in a luxury penthouse, wearing silk robe, walking to window"
}
],
"mode": "video",
"session_id": "glamour-series-001",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
# Second video continuing the series
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Continue with the same model, now she removes the robe to reveal lingerie, turns to face camera with confident expression"
}
],
"mode": "video",
"session_id": "glamour-series-001",
"model": "eachsense/beta",
"stream": true,
"enable_safety_checker": false
}'
```
### 9. Poolside/Beach Scene
Outdoor sensual video content with natural settings.
```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.