// Flux 2 Dev — 文生图 export default { name: 'Flux 2', tag: '文生图', inputType: 'text', params: [ { name: 'prompt', label: '提示词', type: 'string', required: true, ui: 'textarea', }, { name: 'aspectRatio', label: '比例', type: 'select', default: '1:1', options: ['1:1', '3:4', '4:3', '9:16', '16:9', '2:3', '3:2', 'custom'], ui: 'proportion', }, { name: 'customWidth', label: '宽度', type: 'number', default: 1024, min: 256, max: 1536, ui: 'number', showWhen: { aspectRatio: 'custom' }, }, { name: 'customHight', label: '高度', type: 'number', default: 1024, min: 256, max: 1536, ui: 'number', showWhen: { aspectRatio: 'custom' }, }, { name: 'outputFormat', label: '输出格式', type: 'string', default: 'png', options: ['png', 'jpeg', 'webp(lossless)', 'webp(lossy)'], ui: 'hidden', }, ], }