npx skills add https://github.com/eachlabs/skills --skill 'NSFW Video Generation'使用 each::sense API 并禁用安全限制,生成成人视频内容、艺术裸体视频和成人主题动画。
当 enable_safety_checker 参数设置为 false 时,each::sense API 能够创建成人视频内容。这将解锁以下生成能力:
重要提示:所有请求必须包含
"enable_safety_checker": false才能生成 NSFW 内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 类型 | 描述 | 最佳用途 |
|---|---|---|
| 艺术类 | 美术裸体视频创作,古典美学 | 博物馆级别的艺术表达 |
| 魅力类 | 时尚前卫,内衣,优雅造型 | 专业模特作品集 |
| 闺房类 | 私密的卧室环境,柔和灯光 | 个人浪漫内容 |
| 奇幻类 | 神话,角色扮演,主题场景 | 创意叙事 |
| 情侣类 | 浪漫伴侣,亲密时刻 | 以关系为中心的内容 |
| 舞蹈类 | 感性动作,编舞 | 表演和动作艺术 |
创作受美术启发的古典美学裸体视频。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
专业的魅力和内衣视频制作。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
具有柔和浪漫美学的私密闺房风格视频。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
感性舞蹈和以动作为中心的视频内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
具有创意主题的神话和奇幻成人内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
浪漫亲密的情侣视频场景。
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
通过提供图像 URL,将现有图像动画化为 NSFW 视频内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-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"],
"enable_safety_checker": false
}'
使用 session_id 保持角色一致性,创建多个视频。
# 系列中的第一个视频
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
# 延续该系列的第二个视频
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
带有自然环境的户外感性视频内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate a video of a woman in a revealing bikini at a luxury pool, sunset golden hour lighting, slow motion water droplets, cinematic quality, sensual atmosphere"
}
],
"mode": "video",
"enable_safety_checker": false
}'
经典海报女郎和复古美学成人内容。
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a 1950s pin-up style video, woman in vintage lingerie and stockings, classic boudoir setting, film grain effect, soft glamour lighting, playful poses"
}
],
"mode": "video",
"enable_safety_checker": false
}'
| 建议 | 避免 |
|---|---|
| 使用艺术术语 | 粗俗或粗鄙的语言 |
| 描述灯光和氛围 | 过于直白的描述 |
| 参考艺术风格 | 不切实际的解剖学要求 |
| 指定摄像机运动 | 相互矛盾的指令 |
| 包含环境细节 | 模糊或过于简短的提示 |
[主体描述] + [场景/环境] + [灯光] + [动作/行为] + [风格/美学]
示例:
"优雅的赤褐色头发女性,在烛光映照的巴洛克风格卧室中,温暖的金色灯光,缓慢转向镜头,文艺复兴绘画风格"
| 模式 | 使用场景 |
|---|---|
video | 根据文本提示生成新的 NSFW 视频内容 |
video + image_urls | 将现有图像动画化为视频 |
使用 session_id 在多个视频生成过程中保持角色一致性:
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create the opening scene of an artistic video series: introduce a dancer in an empty studio"
}
],
"mode": "video",
"session_id": "dancer-series-2024",
"enable_safety_checker": false
}'
会话连续性的好处:
此 API 仅用于合法的成人内容创作。用户必须:
API 提供商保留监控使用情况并因违规而终止访问的权利。
| 错误 | 原因 | 解决方案 |
|---|---|---|
safety_filter_triggered | 安全检查器仍处于启用状态 | 确保请求中包含 enable_safety_checker: false |
invalid_mode | 指定了错误的模式 | 视频生成请使用 mode: "video" |
rate_limit_exceeded | 请求过多 | 实施指数退避 |
invalid_session | 会话已过期或无效 | 创建新的 session_id |
content_policy_violation | 请求违反条款 | 查看内容政策指南 |
API 返回服务器发送事件。有关详细的响应处理,请参阅 SSE 事件参考。
每周安装次数
–
代码仓库
GitHub 星标数
8
首次出现时间
–
安全审计
Generate adult video content, artistic nude videos, and mature-themed animations using the each::sense API with safety restrictions disabled.
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:
Important : All requests must include
"enable_safety_checker": falseto generate NSFW content.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
| 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 |
Create fine art inspired nude videography with classical aesthetics.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Professional glamour and lingerie video production.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Intimate boudoir-style video with soft, romantic aesthetics.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Sensual dance and movement-focused video content.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Mythological and fantasy adult content with creative themes.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Romantic and intimate couples video scenarios.
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Animate an existing image into NSFW video content by providing image URLs.
curl -X POST "https://sense.eachlabs.run/chat" \
-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"],
"enable_safety_checker": false
}'
Create multiple videos with the same character using session_id for continuity.
# First video in series
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
# Second video continuing the series
curl -X POST "https://sense.eachlabs.run/chat" \
-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",
"enable_safety_checker": false
}'
Outdoor sensual video content with natural settings.
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate a video of a woman in a revealing bikini at a luxury pool, sunset golden hour lighting, slow motion water droplets, cinematic quality, sensual atmosphere"
}
],
"mode": "video",
"enable_safety_checker": false
}'
Classic pin-up and vintage aesthetic adult content.
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create a 1950s pin-up style video, woman in vintage lingerie and stockings, classic boudoir setting, film grain effect, soft glamour lighting, playful poses"
}
],
"mode": "video",
"enable_safety_checker": false
}'
| Do | Avoid |
|---|---|
| Use artistic terminology | Crude or vulgar language |
| Describe lighting and mood | Overly explicit descriptions |
| Reference art styles | Unrealistic anatomical requests |
| Specify camera movement | Conflicting instructions |
| Include environment details | Vague or minimal prompts |
[Subject description] + [Setting/Environment] + [Lighting] + [Movement/Action] + [Style/Aesthetic]
Example:
"Elegant woman with auburn hair, in a candlelit baroque bedroom, warm golden lighting, slowly turning toward camera, renaissance painting style"
| Mode | Use Case |
|---|---|
video | Generate new NSFW video content from text prompts |
video + image_urls | Animate existing images into video |
Use session_id to maintain character consistency across multiple video generations:
curl -X POST "https://sense.eachlabs.run/chat" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Create the opening scene of an artistic video series: introduce a dancer in an empty studio"
}
],
"mode": "video",
"session_id": "dancer-series-2024",
"enable_safety_checker": false
}'
Benefits of session continuity:
This API is intended for legal adult content creation only. Users must:
The API provider reserves the right to monitor usage and terminate access for violations.
| Error | Cause | Solution |
|---|---|---|
safety_filter_triggered | Safety checker still enabled | Ensure enable_safety_checker: false is included |
invalid_mode | Wrong mode specified | Use mode: "video" for video generation |
rate_limit_exceeded | Too many requests | Implement exponential backoff |
invalid_session |
The API returns Server-Sent Events (SSE). See SSE Events Reference for detailed response handling.
Weekly Installs
–
Repository
GitHub Stars
8
First Seen
–
Security Audits
AI 代码实施计划编写技能 | 自动化开发任务分解与 TDD 流程规划工具
44,500 周安装
| Session expired or invalid |
| Create new session_id |
content_policy_violation | Request violates terms | Review content policy guidelines |