ByteDance/Seedream-3 - Generador de imágenes

Intermedio

Este es unContent Creation, Multimodal AIflujo de automatización del dominio deautomatización que contiene 15 nodos.Utiliza principalmente nodos como If, Set, Code, Wait, HttpRequest. ByteDance Seedream 3: plantilla de conversión de texto a imagen

Requisitos previos
  • Pueden requerirse credenciales de autenticación para la API de destino
Vista previa del flujo de trabajo
Visualización de las conexiones entre nodos, con soporte para zoom y panorámica
Exportar flujo de trabajo
Copie la siguiente configuración JSON en n8n para importar y usar este flujo de trabajo
{
  "meta": {
    "instanceId": "1f5a2fec-39f4-4349-9b27-e2102cbed9ac",
    "model_name": "seedream-3",
    "model_type": "image",
    "version_id": "e97385a576173b08a6a87546457582b01f65bf29a4dc00f1191e884894e0bc73",
    "model_owner": "bytedance",
    "generated_at": "2025-08-01T14:47:17.107003"
  },
  "name": "bytedance/seedream-3 - Image Generator",
  "nodes": [
    {
      "id": "7c70a742-ad5c-41fe-b67a-3789fa4e092f",
      "name": "Activador Manual",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -896,
        -176
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "286c2748-4d2f-4302-b9d1-9351b0d770f1",
      "name": "Establecer Token API",
      "type": "n8n-nodes-base.set",
      "position": [
        -608,
        -80
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "api_token",
              "name": "api_token",
              "type": "string",
              "value": "YOUR_REPLICATE_API_TOKEN"
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "65c18fb5-2bb6-41a5-85ac-f6797899ba89",
      "name": "Establecer Parámetros de Imagen",
      "type": "n8n-nodes-base.set",
      "position": [
        -288,
        -128
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "api_token",
              "name": "api_token",
              "type": "string",
              "value": "={{ $('Set API Token').item.json.api_token }}"
            },
            {
              "id": "seed",
              "name": "seed",
              "type": "number",
              "value": -1
            },
            {
              "id": "size",
              "name": "size",
              "type": "string",
              "value": "regular"
            },
            {
              "id": "width",
              "name": "width",
              "type": "number",
              "value": 2048
            },
            {
              "id": "height",
              "name": "height",
              "type": "number",
              "value": 2048
            },
            {
              "id": "prompt",
              "name": "prompt",
              "type": "string",
              "value": "A beautiful landscape with mountains and a lake at sunset"
            },
            {
              "id": "aspect_ratio",
              "name": "aspect_ratio",
              "type": "string",
              "value": "16:9"
            },
            {
              "id": "guidance_scale",
              "name": "guidance_scale",
              "type": "number",
              "value": 2.5
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "e4b14fdf-9aa5-4afb-8757-e7ba31de4f7a",
      "name": "Crear Predicción de Imagen",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -64,
        -128
      ],
      "parameters": {
        "url": "https://api.replicate.com/v1/predictions",
        "method": "POST",
        "options": {
          "response": {
            "response": {
              "neverError": true,
              "responseFormat": "json"
            }
          }
        },
        "jsonBody": "={\n  \"version\": \"bytedance/seedream-3:e97385a576173b08a6a87546457582b01f65bf29a4dc00f1191e884894e0bc73\",\n  \"input\": {\n    \"seed\": {{ $json.seed }},\n    \"size\": \"{{ $json.size }}\",\n    \"width\": {{ $json.width }},\n    \"height\": {{ $json.height }},\n    \"prompt\": \"{{ $json.prompt }}\",\n    \"aspect_ratio\": \"{{ $json.aspect_ratio }}\",\n    \"guidance_scale\": {{ $json.guidance_scale }}\n  }\n}",
        "sendBody": true,
        "sendHeaders": true,
        "specifyBody": "json",
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "=Bearer {{ $json.api_token }}"
            },
            {
              "name": "Prefer",
              "value": "wait"
            }
          ]
        }
      },
      "typeVersion": 4.1
    },
    {
      "id": "c69c73eb-3ffc-4ff5-90b1-c1dba7973284",
      "name": "Esperar 5s",
      "type": "n8n-nodes-base.wait",
      "position": [
        160,
        -128
      ],
      "webhookId": "d2c4ca16-0eb2-45b4-8a2d-eec2f99df89c",
      "parameters": {
        "unit": "seconds",
        "amount": 5
      },
      "typeVersion": 1
    },
    {
      "id": "635fba91-6137-40bc-9673-8aab72fc69c8",
      "name": "Verificar Estado",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        384,
        -128
      ],
      "parameters": {
        "url": "=https://api.replicate.com/v1/predictions/{{ $('Create Image Prediction').item.json.id }}",
        "options": {
          "response": {
            "response": {
              "neverError": true,
              "responseFormat": "json"
            }
          }
        },
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "=Bearer {{ $('Set API Token').item.json.api_token }}"
            }
          ]
        }
      },
      "typeVersion": 4.1
    },
    {
      "id": "30a253aa-9d94-40ea-93e0-af414ff57c75",
      "name": "¿Está Completado?",
      "type": "n8n-nodes-base.if",
      "position": [
        528,
        -240
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 1,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "loose"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "c93d7ba1-0ef9-4087-aa10-389cb2a2c6bd",
              "operator": {
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "={{ $json.status }}",
              "rightValue": "succeeded"
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "ae00258b-253b-450f-b220-6c4c5ba4901b",
      "name": "¿Ha Fallado?",
      "type": "n8n-nodes-base.if",
      "position": [
        848,
        -80
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 1,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "loose"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "d1bfd044-3a07-4c18-b55f-72d192596139",
              "operator": {
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "={{ $json.status }}",
              "rightValue": "failed"
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "0f401c8d-582b-444b-abe5-c9fef92c0d20",
      "name": "Esperar 10s",
      "type": "n8n-nodes-base.wait",
      "position": [
        720,
        128
      ],
      "webhookId": "51a05aef-e220-406d-8c2c-e59c82c3e26e",
      "parameters": {
        "unit": "seconds",
        "amount": 10
      },
      "typeVersion": 1
    },
    {
      "id": "07a12655-16fd-43d7-9cf7-a2f4651bd711",
      "name": "Respuesta de Éxito",
      "type": "n8n-nodes-base.set",
      "position": [
        832,
        -320
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "success-response",
              "name": "response",
              "type": "object",
              "value": "={{ { success: true, image_url: $json.output, prediction_id: $json.id, status: $json.status, message: 'Image generated successfully' } }}"
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "5762b602-866b-4d7c-8ae9-4bb51cb22f5c",
      "name": "Respuesta de Error",
      "type": "n8n-nodes-base.set",
      "position": [
        1344,
        144
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "error-response",
              "name": "response",
              "type": "object",
              "value": "={{ { success: false, error: $json.error || 'Image generation failed', prediction_id: $json.id, status: $json.status, message: 'Failed to generate image' } }}"
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "156f1f5a-9bdc-4663-a9f4-4d0d473bb756",
      "name": "Mostrar Resultado",
      "type": "n8n-nodes-base.set",
      "position": [
        1552,
        -144
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "final-result",
              "name": "final_result",
              "type": "object",
              "value": "={{ $json.response }}"
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "fcf1219b-7956-4afd-af9e-25051b535276",
      "name": "Registrar Solicitud",
      "type": "n8n-nodes-base.code",
      "position": [
        160,
        -320
      ],
      "parameters": {
        "jsCode": "// Log generation details for monitoring\nconst data = $input.all()[0].json;\n\nconsole.log('bytedance/seedream-3 Request:', {\n  timestamp: new Date().toISOString(),\n  prediction_id: data.id,\n  model_type: 'image'\n});\n\nreturn $input.all();"
      },
      "typeVersion": 2
    },
    {
      "id": "991b2f2b-ae9d-4c33-a53a-f174826b115a",
      "name": "Nota Adhesiva9",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1536,
        -304
      ],
      "parameters": {
        "color": 4,
        "width": 580,
        "height": 320,
        "content": "=======================================\n        SEEDREAM-3 GENERATOR\n=======================================\nFor any questions or support, please contact:\n    Yaron@nofluff.online\n\nExplore more tips and tutorials here:\n   - YouTube: https://www.youtube.com/@YaronBeen/videos\n   - LinkedIn: https://www.linkedin.com/in/yaronbeen/\n======================================="
      },
      "typeVersion": 1
    },
    {
      "id": "51cf2652-514e-415c-821b-100d550dd209",
      "name": "Nota Adhesiva4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1536,
        48
      ],
      "parameters": {
        "color": 4,
        "width": 589,
        "height": 1958,
        "content": "## 🤖 **BYTEDANCE/SEEDREAM-3 - IMAGE GENERATION WORKFLOW**\n\n**🔥 Powered by Replicate API and n8n Automation**\n\n---\n\n### 📝 **Model Overview**\n\n- **Owner**: bytedance\n- **Model**: seedream-3\n- **Type**: Image Generation\n- **API Endpoint**: https://api.replicate.com/v1/predictions\n\n**🎯 What This Model Does:**\nA text-to-image model with support for native high-resolution (2K) image generation\n\n---\n\n### 📋 **Parameter Reference**\n\n**🔴 Required Parameters:** prompt\n**🔵 Optional Parameters:** seed, size, width, height, aspect_ratio, guidance_scale\n\n**📖 Detailed Parameter Guide:**\n- **seed** (integer): Random seed. Set for reproducible generation\n- **size** (string): Big images will have their longest dimension be 2048px. Small images will have their shortest dim... (Default: regular)\n- **width** (integer): Image width (Default: 2048)\n- **height** (integer): Image height (Default: 2048)\n- **prompt** (string): Text prompt for image generation\n- **aspect_ratio** (string): Image aspect ratio. Set to 'custom' to specify width and height. (Default: 16:9)\n- **guidance_scale** (number): Prompt adherence. Higher = more literal. (Default: 2.5)\n\n---\n\n### 🔧 **Workflow Components Explained**\n\n**🎯 Manual Trigger**\n- Starts the workflow execution\n- Click to begin image generation process\n\n**🔐 Set API Token** \n- Configures your Replicate API authentication\n- Replace 'YOUR_REPLICATE_API_TOKEN' with your actual token\n- Essential for accessing the bytedance/seedream-3 model\n\n**⚙️ Set Image Parameters**\n- Configures all input parameters for the model\n- Includes both required and optional parameters\n- Pre-filled with sensible defaults for testing\n\n**🚀 Create Image Prediction**\n- Sends the generation request to Replicate API\n- Uses the image parameters you configured\n- Returns a prediction ID for status tracking\n\n**⏳ Wait & Status Checking Loop**\n- Waits 5 seconds then checks prediction status\n- Continues checking until completion or failure\n- Implements intelligent retry logic with 10-second delays\n\n**✅ Success/Error Handling**\n- Routes successful completions to success response\n- Handles failures gracefully with error details\n- Returns structured JSON response with URLs/errors\n\n**📊 Logging & Monitoring**\n- Logs all requests for debugging and monitoring\n- Tracks timestamps and prediction IDs\n- Helps identify issues during development\n\n---\n\n### 🌟 **Key Benefits**\n\n- **🎨 Instant Image Generation**: Transform ideas into images using state-of-the-art AI\n- **🔄 Automated Workflow**: Handles the complete generation pipeline automatically\n- **🛡️ Error Resilience**: Built-in retry logic and comprehensive error handling\n- **📈 Production Ready**: Includes logging, monitoring, and structured responses\n- **🔧 Customizable**: Easy to modify parameters and extend functionality\n- **⚡ Efficient Processing**: Optimized API calls with intelligent status checking\n\n---\n\n### 🚀 **Quick Start Instructions**\n\n1. **🔑 Get Your API Key**\n   - Sign up at https://replicate.com\n   - Navigate to your account settings\n   - Copy your API token\n\n2. **🔧 Configure the Workflow**\n   - Replace 'YOUR_REPLICATE_API_TOKEN' with your actual token\n   - Adjust parameters in the 'Set Image Parameters' node\n   - Customize the prompt or other inputs as needed\n\n3. **▶️ Execute the Workflow**\n   - Click the 'Manual Trigger' to start\n   - Monitor the execution in the n8n interface\n   - Check logs for detailed execution information\n\n4. **📥 Get Your Results**\n   - Successful generations return a URL to your image\n   - Download or use the generated content as needed\n   - Results are available immediately upon completion\n\n---\n\n### 🔍 **Troubleshooting Guide**\n\n**Common Issues:**\n- **Invalid API Token**: Ensure your Replicate token is valid and has sufficient credits\n- **Parameter Validation**: Check that required parameters match expected types\n- **Generation Timeout**: Some images take longer - monitor the logs\n- **Output Format**: Verify the model returns the expected output format\n\n**Best Practices:**\n- Test with default parameters first\n- Monitor your Replicate usage and billing\n- Keep API tokens secure and never commit them to code\n- Use appropriate parameter values for your use case\n\n---\n\n**🔗 Additional Resources:**\n- Model Documentation: https://replicate.com/bytedance/seedream-3\n- Replicate API Docs: https://replicate.com/docs\n- n8n Documentation: https://docs.n8n.io\n\n---"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "versionId": "1",
  "connections": {
    "c69c73eb-3ffc-4ff5-90b1-c1dba7973284": {
      "main": [
        [
          {
            "node": "635fba91-6137-40bc-9673-8aab72fc69c8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "0f401c8d-582b-444b-abe5-c9fef92c0d20": {
      "main": [
        [
          {
            "node": "635fba91-6137-40bc-9673-8aab72fc69c8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ae00258b-253b-450f-b220-6c4c5ba4901b": {
      "main": [
        [
          {
            "node": "5762b602-866b-4d7c-8ae9-4bb51cb22f5c",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "0f401c8d-582b-444b-abe5-c9fef92c0d20",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "fcf1219b-7956-4afd-af9e-25051b535276": {
      "main": [
        [
          {
            "node": "c69c73eb-3ffc-4ff5-90b1-c1dba7973284",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "635fba91-6137-40bc-9673-8aab72fc69c8": {
      "main": [
        [
          {
            "node": "30a253aa-9d94-40ea-93e0-af414ff57c75",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "30a253aa-9d94-40ea-93e0-af414ff57c75": {
      "main": [
        [
          {
            "node": "07a12655-16fd-43d7-9cf7-a2f4651bd711",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "ae00258b-253b-450f-b220-6c4c5ba4901b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "286c2748-4d2f-4302-b9d1-9351b0d770f1": {
      "main": [
        [
          {
            "node": "65c18fb5-2bb6-41a5-85ac-f6797899ba89",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "5762b602-866b-4d7c-8ae9-4bb51cb22f5c": {
      "main": [
        [
          {
            "node": "156f1f5a-9bdc-4663-a9f4-4d0d473bb756",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "7c70a742-ad5c-41fe-b67a-3789fa4e092f": {
      "main": [
        [
          {
            "node": "286c2748-4d2f-4302-b9d1-9351b0d770f1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "07a12655-16fd-43d7-9cf7-a2f4651bd711": {
      "main": [
        [
          {
            "node": "156f1f5a-9bdc-4663-a9f4-4d0d473bb756",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "65c18fb5-2bb6-41a5-85ac-f6797899ba89": {
      "main": [
        [
          {
            "node": "e4b14fdf-9aa5-4afb-8757-e7ba31de4f7a",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "e4b14fdf-9aa5-4afb-8757-e7ba31de4f7a": {
      "main": [
        [
          {
            "node": "fcf1219b-7956-4afd-af9e-25051b535276",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Preguntas frecuentes

¿Cómo usar este flujo de trabajo?

Copie el código de configuración JSON de arriba, cree un nuevo flujo de trabajo en su instancia de n8n y seleccione "Importar desde JSON", pegue la configuración y luego modifique la configuración de credenciales según sea necesario.

¿En qué escenarios es adecuado este flujo de trabajo?

Intermedio - Creación de contenido, IA Multimodal

¿Es de pago?

Este flujo de trabajo es completamente gratuito, puede importarlo y usarlo directamente. Sin embargo, tenga en cuenta que los servicios de terceros utilizados en el flujo de trabajo (como la API de OpenAI) pueden requerir un pago por su cuenta.

Información del flujo de trabajo
Nivel de dificultad
Intermedio
Número de nodos15
Categoría2
Tipos de nodos7
Descripción de la dificultad

Adecuado para usuarios con experiencia intermedia, flujos de trabajo de complejidad media con 6-15 nodos

Autor
Yaron Been

Yaron Been

@yaron-nofluff

Building AI Agents and Automations | Growth Marketer | Entrepreneur | Book Author & Podcast Host If you need any help with Automations, feel free to reach out via linkedin: https://www.linkedin.com/in/yaronbeen/ And check out my Youtube channel: https://www.youtube.com/@YaronBeen/videos

Enlaces externos
Ver en n8n.io

Compartir este flujo de trabajo

Categorías

Categorías: 34