From c38ae1cef575a07d2fc7229a7acacfb33cb64cda Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sat, 4 Jul 2026 09:46:38 +0000 Subject: [PATCH] Widen the load request type for the explicit Dtype off value The Dtype select now sends none through instead of omitting it, so the request type must accept it (tsc caught the mismatch at the badges tip). --- studio/frontend/src/features/images/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/frontend/src/features/images/api.ts b/studio/frontend/src/features/images/api.ts index 9291c2055d..959ea714b7 100644 --- a/studio/frontend/src/features/images/api.ts +++ b/studio/frontend/src/features/images/api.ts @@ -57,7 +57,7 @@ export interface DiffusionLoadRequest { cpu_offload?: boolean; // Advanced (load-time) tuning. All optional; omit for the backend's auto defaults. speed_mode?: "off" | "eager" | "default" | "max"; - transformer_quant?: "auto" | "int8" | "fp8" | "nvfp4" | "mxfp8"; + transformer_quant?: "auto" | "none" | "off" | "int8" | "fp8" | "nvfp4" | "mxfp8"; attention_backend?: | "auto" | "native"