/** * Flux Architecture Plugin * * Flux is a next-generation architecture with: * - Natural language prompting (no tags needed) * - No negative prompts (uses guidance scale instead) * - No weight syntax * - Different workflow structure (DiT-based) * * Variants: * - flux1-schnell: Fast, 4 steps * - flux1-dev: Quality, 20-50 steps */ import type { ModelArchitecture } from "../types.js"; export declare const fluxArchitecture: ModelArchitecture;