/** * Stable Diffusion 1.5 Architecture Plugin * * SD1.5 is the original Stable Diffusion architecture. It uses: * - 512x512 native resolution (can go to 768x768) * - Tag-based prompting * - Negative prompts * - Weight syntax (emphasis:1.2) */ import type { ModelArchitecture } from "../types.js"; export declare const sd15Architecture: ModelArchitecture;