/** * Stable Diffusion XL (SDXL) Architecture Plugin * * SDXL is the successor to SD1.5 with: * - 1024x1024 native resolution * - Two text encoders (CLIP-G + CLIP-L) * - Tag-based prompting with negative prompts * - Weight syntax (emphasis:1.2) * * This is the default/fallback architecture for unknown models. */ import type { ModelArchitecture } from "../types.js"; export declare const sdxlArchitecture: ModelArchitecture;