using JetBrains.Annotations; namespace StableDiffusion.NET; [PublicAPI] public static class ModelBuilder { public static StableDiffusionModelBuilder StableDiffusion(string modelPath) => new(modelPath); public static StableDiffusion3_5ModelBuilder StableDiffusion3_5(string modelPath, string clipLPath, string clipGPath, string t5xxlPath) => new(modelPath, clipLPath, clipGPath, t5xxlPath); public static FluxModelBuilder Flux(string diffusionModelPath, string clipLPath, string t5xxlPath, string vaePath) => new(diffusionModelPath, clipLPath, t5xxlPath, vaePath); public static ESRGANModelBuilder ESRGAN(string modelPath) => new(modelPath); }