From 23327d5659ef68270cfe3c798e2915ec6f38a621 Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Mon, 4 Aug 2025 15:48:51 -0600 Subject: [PATCH] Add qwen image to the ui --- ui/src/app/jobs/new/options.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/ui/src/app/jobs/new/options.ts b/ui/src/app/jobs/new/options.ts index 03ed453f..bd508ecf 100644 --- a/ui/src/app/jobs/new/options.ts +++ b/ui/src/app/jobs/new/options.ts @@ -217,6 +217,23 @@ export const modelArchs: ModelArch[] = [ }, disableSections: ['network.conv'], }, + { + name: 'qwen_image', + label: 'Qwen-Image', + group: 'image', + defaults: { + // default updates when [selected, unselected] in the UI + 'config.process[0].model.name_or_path': ['Qwen/Qwen-Image', defaultNameOrPath], + 'config.process[0].model.quantize': [true, false], + 'config.process[0].model.quantize_te': [true, false], + 'config.process[0].model.low_vram': [true, false], + 'config.process[0].sample.sampler': ['flowmatch', 'flowmatch'], + 'config.process[0].train.noise_scheduler': ['flowmatch', 'flowmatch'], + 'config.process[0].train.timestep_type': ['weighted', 'sigmoid'], + }, + disableSections: ['network.conv'], + additionalSections: ['model.low_vram'], + }, { name: 'hidream', label: 'HiDream',