Skip to content

Yollomi

Mode: 🔐 Browser · Domain: yollomi.com

AI image/video generation and editing on yollomi.com. Uses the same /api/ai/* routes as the web app; authentication is your logged-in Chrome session (NextAuth cookies).

Commands

CommandDescription
opencli yollomi generateText-to-image / image-to-image
opencli yollomi videoText-to-video / image-to-video
opencli yollomi editQwen image edit (prompt + image)
opencli yollomi uploadUpload a local file → public URL for other commands
opencli yollomi modelsList image / video / tool models and credit costs
opencli yollomi remove-bgRemove background (free)
opencli yollomi upscaleImage upscaling
opencli yollomi face-swapFace swap between two images
opencli yollomi restorePhoto restoration
opencli yollomi try-onVirtual try-on
opencli yollomi backgroundAI background for product/object images
opencli yollomi object-removerRemove objects (image + mask URLs)

Usage Examples

bash
# List models
opencli yollomi models --type image

# Text-to-image (default model: z-image-turbo)
opencli yollomi generate "a red apple on a wooden table"

# Choose model and aspect ratio
opencli yollomi generate "sunset" --model flux-schnell --ratio 16:9

# Image-to-image: upload first, then pass URL
opencli yollomi upload ./photo.png
opencli yollomi generate "oil painting style" --model flux-2-pro --image "https://..."

# Video
opencli yollomi video "waves on a beach" --model kling-2-1

# Tools
opencli yollomi remove-bg https://example.com/image.png
opencli yollomi upscale https://example.com/image.png --scale 4
opencli yollomi edit https://example.com/in.png "make it vintage"

Common options

OptionApplies toDescription
--modelgenerate, videoModel id (see yollomi models)
--ratiogenerate, videoAspect ratio, e.g. 1:1, 16:9
--imagegenerate, videoImage URL for img2img / i2v
--outputMostOutput directory (default ./yollomi-output)
--no-downloadSeveralPrint URLs only, skip saving files

Prerequisites

The CLI ensures the automation tab is on yollomi.com before calling APIs (same-origin fetch with session cookies).

Notes

  • Credits: Each model consumes account credits; insufficient credits returns HTTP 402.
  • Upload: Local paths for tools are not accepted directly — use yollomi upload to get a URL, or pass an existing HTTPS image URL.

Released under the Apache-2.0 License.