9b395f5cc3
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
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
48 lines
2.1 KiB
JavaScript
48 lines
2.1 KiB
JavaScript
/**
|
|
* Yollomi virtual try-on — POST /api/ai/virtual-try-on
|
|
*/
|
|
import * as path from 'node:path';
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CliError } from '@jackwener/opencli/errors';
|
|
import { log } from '@jackwener/opencli/logger';
|
|
import { YOLLOMI_DOMAIN, yollomiPost, downloadOutput, fmtBytes } from './utils.js';
|
|
cli({
|
|
site: 'yollomi',
|
|
name: 'try-on',
|
|
access: 'write',
|
|
description: 'Virtual try-on — see how clothes look on a person (3 credits)',
|
|
domain: YOLLOMI_DOMAIN,
|
|
strategy: Strategy.COOKIE,
|
|
args: [
|
|
{ name: 'person', required: true, help: 'Person photo URL (upload via "opencli yollomi upload" first)' },
|
|
{ name: 'cloth', required: true, help: 'Clothing image URL' },
|
|
{ name: 'cloth-type', default: 'upper', choices: ['upper', 'lower', 'overall'], help: 'Clothing type' },
|
|
{ name: 'output', default: './yollomi-output', help: 'Output directory' },
|
|
{ name: 'no-download', type: 'boolean', default: false, help: 'Only show URL' },
|
|
],
|
|
columns: ['status', 'file', 'size', 'url'],
|
|
func: async (page, kwargs) => {
|
|
log.status('Processing virtual try-on...');
|
|
const data = await yollomiPost(page, '/api/ai/virtual-try-on', {
|
|
person_image: kwargs.person,
|
|
cloth_image: kwargs.cloth,
|
|
cloth_type: kwargs['cloth-type'],
|
|
output_format: 'png',
|
|
output_quality: 100,
|
|
});
|
|
const url = data.image || (data.images?.[0]);
|
|
if (!url)
|
|
throw new CliError('EMPTY_RESPONSE', 'No result', 'Check both images have clear subjects');
|
|
if (kwargs['no-download'])
|
|
return [{ status: 'generated', file: '-', size: '-', url }];
|
|
try {
|
|
const filename = `yollomi_tryon_${Date.now()}.png`;
|
|
const { path: fp, size } = await downloadOutput(url, kwargs.output, filename);
|
|
return [{ status: 'saved', file: path.relative('.', fp), size: fmtBytes(size), url }];
|
|
}
|
|
catch {
|
|
return [{ status: 'download-failed', file: '-', size: '-', url }];
|
|
}
|
|
},
|
|
});
|