Files
wehub-resource-sync 9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

2.8 KiB

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

Command Description
opencli yollomi generate Text-to-image / image-to-image
opencli yollomi video Text-to-video / image-to-video
opencli yollomi edit Qwen image edit (prompt + image)
opencli yollomi upload Upload a local file → public URL for other commands
opencli yollomi models List image / video / tool models and credit costs
opencli yollomi remove-bg Remove background (free)
opencli yollomi upscale Image upscaling
opencli yollomi face-swap Face swap between two images
opencli yollomi restore Photo restoration
opencli yollomi try-on Virtual try-on
opencli yollomi background AI background for product/object images
opencli yollomi object-remover Remove objects (image + mask URLs)

Usage Examples

# 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

Option Applies to Description
--model generate, video Model id (see yollomi models)
--ratio generate, video Aspect ratio, e.g. 1:1, 16:9
--image generate, video Image URL for img2img / i2v
--output Most Output directory (default ./yollomi-output)
--no-download Several Print 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.