eachlabs-fashion-ai
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseEachLabs Fashion AI
EachLabs Fashion AI
Generate AI fashion model imagery, virtual try-on experiences, runway content, and campaign visuals using EachLabs models.
使用EachLabs模型生成AI时尚模特图像、虚拟试穿体验、走秀内容以及营销活动视觉素材。
Authentication
认证
Header: X-API-Key: <your-api-key>Set the environment variable. Get your key at eachlabs.ai.
EACHLABS_API_KEYHeader: X-API-Key: <your-api-key>设置环境变量。可在eachlabs.ai获取您的密钥。
EACHLABS_API_KEYRecommended Models
推荐模型
Image Generation & Editing
图像生成与编辑
| Task | Model | Slug |
|---|---|---|
| Fashion model generation | GPT Image v1.5 | |
| Virtual try-on (best) | Kolors Virtual Try-On | |
| Virtual try-on (alt) | IDM VTON | |
| Garment on model | Wan v2.6 Image-to-Image | |
| Model photoshoot | Product Photo to Modelshoot | |
| Photoshoot styling | Nano Banana Pro Photoshoot | |
| Face/look consistency | Omni Zero | |
| Character consistency | Ideogram Character | |
| Photomaker | Photomaker | |
| Photomaker Style | Photomaker Style | |
| Avatar generation | Instant ID | |
| Soul styling | Higgsfield AI Soul | |
| Become image | Become Image | |
| 任务 | 模型 | Slug |
|---|---|---|
| 时尚模特生成 | GPT Image v1.5 | |
| 虚拟试穿(最优) | Kolors Virtual Try-On | |
| 虚拟试穿(备选) | IDM VTON | |
| 服装上身效果 | Wan v2.6 Image-to-Image | |
| 模特棚拍 | Product Photo to Modelshoot | |
| 棚拍风格调整 | Nano Banana Pro Photoshoot | |
| 面部/造型一致性 | Omni Zero | |
| 角色一致性 | Ideogram Character | |
| 照片生成模型 | Photomaker | |
| 照片生成风格 | Photomaker Style | |
| 虚拟形象生成 | Instant ID | |
| 风格重塑 | Higgsfield AI Soul | |
| 图像风格迁移 | Become Image | |
Training
模型训练
| Task | Model | Slug |
|---|---|---|
| Brand style training | Z Image Trainer | |
| Portrait LoRA | Flux LoRA Portrait Trainer | |
| 任务 | 模型 | Slug |
|---|---|---|
| 品牌风格训练 | Z Image Trainer | |
| 人像LoRA训练 | Flux LoRA Portrait Trainer | |
Video
视频生成
| Task | Model | Slug |
|---|---|---|
| Runway video | Pixverse v5.6 Image-to-Video | |
| Catwalk animation | Bytedance Omnihuman v1.5 | |
| Motion reference | Kling v2.6 Pro Motion | |
| 任务 | 模型 | Slug |
|---|---|---|
| 走秀视频生成 | Pixverse v5.6 Image-to-Video | |
| 台步动画 | Bytedance Omnihuman v1.5 | |
| 动作参考控制 | Kling v2.6 Pro Motion | |
Prediction Flow
预测流程
- Check model — validates the model exists and returns the
GET https://api.eachlabs.ai/v1/model?slug=<slug>with exact input parameters. Always do this before creating a prediction to ensure correct inputs.request_schema - POST with model slug, version
https://api.eachlabs.ai/v1/prediction, and input matching the schema"0.0.1" - Poll until status is
GET https://api.eachlabs.ai/v1/prediction/{id}or"success""failed" - Extract output URL from response
- 检查模型 — 验证模型是否存在,并返回包含精确输入参数的
GET https://api.eachlabs.ai/v1/model?slug=<slug>。创建预测前务必执行此步骤,以确保输入参数正确。request_schema - 提交请求 向发送POST请求,携带模型slug、版本
https://api.eachlabs.ai/v1/prediction以及符合schema的输入参数"0.0.1" - 轮询结果 调用轮询状态,直到状态变为
GET https://api.eachlabs.ai/v1/prediction/{id}或"success""failed" - 提取结果 从响应中获取输出URL
Workflows
工作流示例
AI Fashion Model Generation
AI时尚模特生成
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gpt-image-v1-5-text-to-image",
"version": "0.0.1",
"input": {
"prompt": "Professional fashion model wearing a tailored navy blazer, editorial photography, studio lighting, full body shot, neutral background",
"image_size": "1024x1536",
"quality": "high"
}
}'bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gpt-image-v1-5-text-to-image",
"version": "0.0.1",
"input": {
"prompt": "Professional fashion model wearing a tailored navy blazer, editorial photography, studio lighting, full body shot, neutral background",
"image_size": "1024x1536",
"quality": "high"
}
}'Virtual Try-On
虚拟试穿
Combine a garment image with a model image:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "wan-v2-6-image-to-image",
"version": "0.0.1",
"input": {
"prompt": "The person in image 1 wearing the clothing from image 2, professional fashion photography, editorial style",
"image_urls": ["https://example.com/model.jpg", "https://example.com/garment.jpg"],
"image_size": "portrait_4_3"
}
}'将服装图像与模特图像结合:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "wan-v2-6-image-to-image",
"version": "0.0.1",
"input": {
"prompt": "The person in image 1 wearing the clothing from image 2, professional fashion photography, editorial style",
"image_urls": ["https://example.com/model.jpg", "https://example.com/garment.jpg"],
"image_size": "portrait_4_3"
}
}'Runway / Catwalk Video
走秀/台步视频
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-6-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/fashion-model.jpg",
"prompt": "Fashion model walking confidently on a runway, camera follows from front, professional fashion show lighting",
"duration": "5",
"resolution": "1080p"
}
}'bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-6-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/fashion-model.jpg",
"prompt": "Fashion model walking confidently on a runway, camera follows from front, professional fashion show lighting",
"duration": "5",
"resolution": "1080p"
}
}'Catwalk with Motion Reference
基于动作参考的台步生成
Use a real runway walk as motion reference:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v2-6-pro-motion-control",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/fashion-model.jpg",
"video_url": "https://example.com/runway-walk-reference.mp4",
"character_orientation": "video"
}
}'使用真实走秀视频作为动作参考:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v2-6-pro-motion-control",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/fashion-model.jpg",
"video_url": "https://example.com/runway-walk-reference.mp4",
"character_orientation": "video"
}
}'Brand Style Training
品牌风格训练
Train a LoRA on your brand's visual style for consistent campaign imagery:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "z-image-trainer",
"version": "0.0.1",
"input": {
"image_data_url": "https://example.com/brand-photos.zip",
"default_caption": "brand editorial fashion photography style",
"training_type": "style",
"steps": 1500
}
}'针对品牌视觉风格训练LoRA模型,以生成一致性的营销活动素材:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "z-image-trainer",
"version": "0.0.1",
"input": {
"image_data_url": "https://example.com/brand-photos.zip",
"default_caption": "brand editorial fashion photography style",
"training_type": "style",
"steps": 1500
}
}'Prompt Tips for Fashion
时尚领域提示词技巧
- Specify pose: "full body shot", "half body", "close-up on garment details"
- Include lighting: "editorial studio lighting", "natural light", "dramatic side lighting"
- Mention style: "editorial", "street style", "haute couture", "casual lookbook"
- For diversity: specify body types, skin tones, and ages in prompts
- For consistency: use the same style keywords across a campaign series
- 指定姿势:"全身照"、"半身照"、"服装细节特写"
- 包含光线描述:"杂志级棚拍光线"、"自然光"、"戏剧性侧光"
- 提及风格:"杂志大片风"、"街头风"、"高级定制"、"休闲型录风"
- 多样性需求:在提示词中指定体型、肤色和年龄
- 一致性需求:在系列营销活动中使用相同的风格关键词
Parameter Reference
参数参考
See the eachlabs-image-generation and eachlabs-video-generation references for complete model parameters.
完整的模型参数请参考eachlabs-image-generation和eachlabs-video-generation文档。