Skip to main content
This public URL uses a deprecated compatibility host outside the api-service host. It remains supported for now, but will soon move under https://api.eachlabs.ai. Keep integrations configurable and switch to the api-service URL once it is published.

Text-to-Image Pipeline

A neat two-step workflow that enhances a prompt with an LLM, then generates an image from it.

Image-to-Video with Upscaling

Generate a portrait image, bring it to life with animation, and upscale the final result.

Parallel Branching: Multi-Format Generation

Run image-to-video, image editing, and text-to-image all at once, then conditionally upscale based on the output format.
This workflow demonstrates:
  1. Parallel step: Three branches run concurrently for video generation, image editing, and text-to-image
  2. Choice step: Checks if the primary output is a video (.mp4) and routes to the right upscaler

Logical Conditions: AND/OR Operators

You can use logical operators to combine multiple conditions in a choice step. This example only upscales when the output is a PNG and the user explicitly requested upscaling:
You can also use or to match multiple formats:
Or not to negate a condition:

Batch Processing with Bulk Trigger

Fire off the same workflow with multiple inputs in one go:
Then track all executions together:

End-to-End Python Example

Last modified on May 27, 2026