nsfw-content-generation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

NSFW Content Generation with each::sense

使用each::sense生成NSFW内容

Generate adult and mature content using each::sense API with the safety checker disabled. This skill enables creation of artistic nude, glamour photography, boudoir, fantasy art, and other adult-themed visual content.
Features:
  • Artistic nude and figure photography
  • Glamour and boudoir photography
  • Fantasy and pin-up art
  • Mature-themed character generation
  • Consistent character across multiple generations via session_id
  • Full creative control with no content filtering
禁用安全检查器,通过each::sense API生成成人及成熟主题内容。该技能支持创作艺术裸体、魅力摄影、闺房摄影、奇幻艺术及其他成人主题视觉内容。
功能特性:
  • 艺术裸体与人体摄影
  • 魅力与闺房摄影
  • 奇幻与海报女郎艺术
  • 成熟主题角色生成
  • 通过session_id实现多轮生成中角色的一致性
  • 无内容过滤,拥有完全创作控制权

Authentication

身份验证

Header: X-API-Key: <your-api-key>
Get your API key at eachlabs.ai -> API Keys.
Set the
EACHLABS_API_KEY
environment variable.
Header: X-API-Key: <your-api-key>
前往eachlabs.ai -> API Keys获取你的API密钥。
设置
EACHLABS_API_KEY
环境变量。

Base URL

基础URL

https://sense.eachlabs.run
https://sense.eachlabs.run

Quick Start

快速开始

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an artistic nude portrait with renaissance painting style, soft dramatic lighting",
    "mode": "max",
    "enable_safety_checker": false
  }'
The endpoint returns Server-Sent Events (SSE) with real-time progress and the final generated output.
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an artistic nude portrait with renaissance painting style, soft dramatic lighting",
    "mode": "max",
    "enable_safety_checker": false
  }'
该端点返回Server-Sent Events (SSE),包含实时生成进度和最终输出结果。

Content Types

内容类型

TypeDescriptionExample Prompt Keywords
Artistic NudeFine art style nude photography/paintingsclassical, renaissance, figure study, artistic
GlamourSophisticated adult modelingglamour, elegant, sensual, fashion
BoudoirIntimate bedroom photography styleboudoir, intimate, romantic, soft light
Pin-UpRetro/vintage style pin-up artpin-up, retro, vintage, playful
FantasyFantasy-themed adult artfantasy, ethereal, mythological, magical
CinematicMovie/film style mature scenescinematic, dramatic, moody, film still
Fine ArtMuseum-quality artistic compositionsfine art, gallery, sculptural, classical
EditorialMagazine/editorial style contenteditorial, fashion, high-end, professional
类型描述提示词示例关键词
艺术裸体美术风格裸体摄影/绘画classical, renaissance, figure study, artistic
魅力摄影高端成人模特摄影glamour, elegant, sensual, fashion
闺房摄影私密卧室风格摄影boudoir, intimate, romantic, soft light
海报女郎复古风格海报女郎艺术pin-up, retro, vintage, playful
奇幻风格成人主题奇幻艺术fantasy, ethereal, mythological, magical
电影质感电影风格成熟场景cinematic, dramatic, moody, film still
纯艺术博物馆级艺术构图fine art, gallery, sculptural, classical
编辑风格杂志/编辑风格内容editorial, fashion, high-end, professional

Request Schema

请求 Schema

json
{
  "message": "string (required) - Content description",
  "session_id": "string (optional) - Session ID for consistent characters",
  "mode": "string (optional, default: 'max') - Quality mode: 'max' or 'eco'",
  "image_urls": "array[string] (optional) - Reference images",
  "enable_safety_checker": "boolean (required for NSFW) - Set to false"
}
json
{
  "message": "string (required) - Content description",
  "session_id": "string (optional) - Session ID for consistent characters",
  "mode": "string (optional, default: 'max') - Quality mode: 'max' or 'eco'",
  "image_urls": "array[string] (optional) - Reference images",
  "enable_safety_checker": "boolean (required for NSFW) - Set to false"
}

Key Parameters

关键参数

ParameterTypeDefaultDescription
message
stringrequiredNatural language content description
session_id
stringnullUse for consistent characters across generations
mode
string"max"
max
= best quality,
eco
= faster/cheaper
image_urls
arraynullReference images for style/pose guidance
enable_safety_checker
booleantrueMust be set to false for NSFW content
参数类型默认值描述
message
string必填自然语言内容描述
session_id
stringnull用于在多轮生成中保持角色一致性
mode
string"max"
max
= 最佳质量,
eco
= 更快/更经济
image_urls
arraynull用于风格/姿势参考的图片URL
enable_safety_checker
booleantrue生成NSFW内容必须设为false

Use Case Examples

用例示例

1. Artistic Nude Portrait

1. 艺术裸体肖像

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an artistic nude portrait of a woman, renaissance painting style, soft chiaroscuro lighting, classical pose reminiscent of Botticelli, fine art gallery quality",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an artistic nude portrait of a woman, renaissance painting style, soft chiaroscuro lighting, classical pose reminiscent of Botticelli, fine art gallery quality",
    "mode": "max",
    "enable_safety_checker": false
  }'

2. Glamour Photography

2. 魅力摄影

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a glamour photography shot, elegant woman in silk lingerie, luxurious bedroom setting, soft golden hour lighting through sheer curtains, high-end fashion magazine quality",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a glamour photography shot, elegant woman in silk lingerie, luxurious bedroom setting, soft golden hour lighting through sheer curtains, high-end fashion magazine quality",
    "mode": "max",
    "enable_safety_checker": false
  }'

3. Boudoir Photography

3. 闺房摄影

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an intimate boudoir photograph, woman on a vintage chaise lounge, romantic candlelit atmosphere, soft focus, warm skin tones, tasteful and elegant composition",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate an intimate boudoir photograph, woman on a vintage chaise lounge, romantic candlelit atmosphere, soft focus, warm skin tones, tasteful and elegant composition",
    "mode": "max",
    "enable_safety_checker": false
  }'

4. Fantasy Art

4. 奇幻艺术

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a fantasy art scene, elven queen in a moonlit forest glade, ethereal beauty, flowing translucent fabrics, magical atmosphere with floating lights, sensual and mystical",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a fantasy art scene, elven queen in a moonlit forest glade, ethereal beauty, flowing translucent fabrics, magical atmosphere with floating lights, sensual and mystical",
    "mode": "max",
    "enable_safety_checker": false
  }'

5. Vintage Pin-Up Style

5. 复古海报女郎风格

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a 1950s style pin-up illustration, playful pose, retro swimsuit, classic Vargas girl aesthetic, vibrant colors, vintage americana style",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a 1950s style pin-up illustration, playful pose, retro swimsuit, classic Vargas girl aesthetic, vibrant colors, vintage americana style",
    "mode": "max",
    "enable_safety_checker": false
  }'

6. Fine Art Figure Study

6. 纯艺术人体研究

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a classical figure study, graceful female form, marble sculpture aesthetic, dramatic studio lighting, museum quality fine art, anatomically elegant",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a classical figure study, graceful female form, marble sculpture aesthetic, dramatic studio lighting, museum quality fine art, anatomically elegant",
    "mode": "max",
    "enable_safety_checker": false
  }'

7. Cinematic Sensual Scene

7. 电影质感私密场景

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a cinematic film still, intimate moment between lovers, noir lighting with venetian blind shadows, moody atmosphere, art house film aesthetic",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a cinematic film still, intimate moment between lovers, noir lighting with venetian blind shadows, moody atmosphere, art house film aesthetic",
    "mode": "max",
    "enable_safety_checker": false
  }'

8. Editorial Fashion Nude

8. 编辑风格时尚裸体

bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a high fashion editorial photograph, artistic partial nude, avant-garde styling with dramatic jewelry, stark white studio background, Helmut Newton inspired composition",
    "mode": "max",
    "enable_safety_checker": false
  }'
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a high fashion editorial photograph, artistic partial nude, avant-garde styling with dramatic jewelry, stark white studio background, Helmut Newton inspired composition",
    "mode": "max",
    "enable_safety_checker": false
  }'

9. Consistent Character Series (Multi-Turn)

9. 一致性角色系列(多轮生成)

Use
session_id
to maintain character consistency across multiple generations:
bash
undefined
使用
session_id
在多轮生成中保持角色一致性:
bash
undefined

First image - establish character

第一张图 - 建立角色

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate a glamour portrait, woman with long auburn hair, green eyes, elegant features, wearing a silk robe, soft window lighting", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate a glamour portrait, woman with long auburn hair, green eyes, elegant features, wearing a silk robe, soft window lighting", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'

Second image - same character, different scene

第二张图 - 同一角色,不同场景

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate the same woman from the previous image, now in an outdoor setting, sheer summer dress, golden hour beach scene", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate the same woman from the previous image, now in an outdoor setting, sheer summer dress, golden hour beach scene", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'

Third image - same character, artistic pose

第三张图 - 同一角色,艺术姿势

curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate the same woman in an artistic nude pose, classical sculpture aesthetic, studio lighting", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'
undefined
curl -X POST https://sense.eachlabs.run/chat
-H "Content-Type: application/json"
-H "X-API-Key: $EACHLABS_API_KEY"
-H "Accept: text/event-stream"
-d '{ "message": "Generate the same woman in an artistic nude pose, classical sculpture aesthetic, studio lighting", "session_id": "glamour-series-001", "mode": "max", "enable_safety_checker": false }'
undefined

10. Reference-Based Generation

10. 基于参考图的生成

Use
image_urls
to provide style or pose references:
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a glamour photograph matching the pose and lighting style from this reference image, but with a different model and setting",
    "image_urls": ["https://example.com/reference-pose.jpg"],
    "mode": "max",
    "enable_safety_checker": false
  }'
使用
image_urls
提供风格或姿势参考:
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate a glamour photograph matching the pose and lighting style from this reference image, but with a different model and setting",
    "image_urls": ["https://example.com/reference-pose.jpg"],
    "mode": "max",
    "enable_safety_checker": false
  }'

Mode Selection

模式选择

MAX Mode (Recommended for NSFW)

MAX模式(NSFW推荐使用)

Uses the highest quality models for detailed, refined output. Best for final content and publication-ready images.
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate artistic boudoir photography...",
    "mode": "max",
    "enable_safety_checker": false
  }'
使用最高质量模型,生成细节丰富、精美的输出。适合最终内容和可发布的图片。
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate artistic boudoir photography...",
    "mode": "max",
    "enable_safety_checker": false
  }'

ECO Mode

ECO模式

Faster and more cost-effective. Good for testing prompts and generating drafts.
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate artistic boudoir photography...",
    "mode": "eco",
    "enable_safety_checker": false
  }'
速度更快、更经济。适合测试提示词和生成草稿。
bash
curl -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate artistic boudoir photography...",
    "mode": "eco",
    "enable_safety_checker": false
  }'

Best Practices

最佳实践

Artistic Approach

艺术创作方法

  1. Use artistic terminology - Reference fine art, photography styles, and classical aesthetics
  2. Describe lighting - Chiaroscuro, golden hour, soft diffused, dramatic shadows
  3. Reference art movements - Renaissance, Baroque, Art Nouveau, contemporary
  4. Emphasize composition - Rule of thirds, leading lines, negative space
  1. 使用艺术术语 - 参考美术、摄影风格和古典美学
  2. 描述光线 - 明暗对比、黄金时刻、柔和漫射光、戏剧性阴影
  3. 参考艺术运动 - 文艺复兴、巴洛克、新艺术运动、当代艺术
  4. 强调构图 - 三分法、引导线、负空间

Quality Prompts

高质量提示词

  1. Be descriptive - Include setting, mood, lighting, and artistic style
  2. Use quality modifiers - "gallery quality," "high-end editorial," "museum-worthy"
  3. Specify camera details - Depth of field, focal length, lens characteristics
  4. Define mood - Romantic, dramatic, playful, mysterious, elegant
  1. 描述详细 - 包含场景、氛围、光线和艺术风格
  2. 使用质量修饰词 - "画廊品质"、"高端编辑风格"、"博物馆级别"
  3. 指定相机细节 - 景深、焦距、镜头特性
  4. 定义氛围 - 浪漫、戏剧性、俏皮、神秘、优雅

Content Guidelines

内容准则

  1. Artistic intent - Frame requests as art or professional photography
  2. Consent themes - All generated content depicts fictional, consenting adults
  3. Platform compliance - Ensure generated content meets your platform's policies
  4. Commercial use - Review EachLabs terms for commercial usage rights
  1. 艺术意图 - 将请求表述为艺术或专业摄影
  2. 同意主题 - 所有生成内容均描绘虚构、自愿的成年人
  3. 平台合规 - 确保生成内容符合你的平台政策
  4. 商业使用 - 查看EachLabs条款了解商业使用权限

Prompt Tips

提示词技巧

Effective prompt structure:
[Subject description] + [Setting/environment] + [Lighting] + [Style/aesthetic] + [Quality modifiers]
Example:
"Elegant woman with flowing dark hair + luxurious marble bathroom setting +
soft candlelight with warm reflections + Helmut Newton inspired glamour +
fashion magazine quality, 8K, detailed"
有效的提示词结构:
[主体描述] + [场景/环境] + [光线] + [风格/美学] + [质量修饰词]
示例:
"Elegant woman with flowing dark hair + luxurious marble bathroom setting +
soft candlelight with warm reflections + Helmut Newton inspired glamour +
fashion magazine quality, 8K, detailed"

Age Verification Disclaimer

年龄验证声明

This API feature is intended for adult users only. By using
enable_safety_checker: false
, you acknowledge that:
  1. You are of legal age in your jurisdiction to view and create adult content
  2. You will not generate content depicting minors
  3. You will comply with all applicable laws regarding adult content
  4. You assume responsibility for the appropriate use and distribution of generated content
  5. Generated content is fictional and does not represent real individuals unless you have explicit consent
此API功能仅面向成年用户。通过设置
enable_safety_checker: false
使用时,你确认:
  1. 你已达到所在司法辖区查看和创作成人内容的法定年龄
  2. 你不会生成描绘未成年人的内容
  3. 你将遵守所有与成人内容相关的适用法律
  4. 你对生成内容的合理使用和分发承担责任
  5. 生成内容为虚构,除非获得明确同意,否则不代表真实个人

Error Handling

错误处理

Common Errors

常见错误

Error MessageCauseSolution
Safety check failed
Forgot to disable safety checkerAdd
"enable_safety_checker": false
Failed to create prediction: HTTP 422
Insufficient balanceTop up at eachlabs.ai
Invalid API key
Missing/wrong API keyCheck EACHLABS_API_KEY
Rate limit exceeded
Too many requestsWait and retry
错误信息原因解决方案
Safety check failed
忘记禁用安全检查器添加
"enable_safety_checker": false
Failed to create prediction: HTTP 422
余额不足在eachlabs.ai充值
Invalid API key
API密钥缺失/错误检查EACHLABS_API_KEY
Rate limit exceeded
请求过于频繁等待后重试

Timeout Settings

超时设置

For complex generations, increase your timeout:
bash
curl --max-time 600 -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate detailed artistic content...",
    "mode": "max",
    "enable_safety_checker": false
  }'
对于复杂的生成任务,增加超时时间:
bash
curl --max-time 600 -X POST https://sense.eachlabs.run/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "message": "Generate detailed artistic content...",
    "mode": "max",
    "enable_safety_checker": false
  }'

SSE Response Format

SSE响应格式

The endpoint returns Server-Sent Events (SSE) with real-time updates.
Key events to monitor:
EventDescription
thinking_delta
AI reasoning in real-time
status
Current operation status
generation_response
Generated image URL
complete
Final event with all outputs
error
Error information
See SSE-EVENTS.md for complete event documentation.
该端点返回Server-Sent Events (SSE),包含实时更新。
需关注的关键事件:
事件描述
thinking_delta
AI实时推理过程
status
当前操作状态
generation_response
生成的图片URL
complete
包含所有输出的最终事件
error
错误信息
完整事件文档请查看SSE-EVENTS.md

Related Skills

相关技能

  • each-sense - General purpose content generation
  • ai-influencer-generation - Consistent character creation
  • eachlabs-image-generation - Standard image generation
  • each-sense - 通用内容生成
  • ai-influencer-generation - 一致性角色创建
  • eachlabs-image-generation - 标准图像生成