mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-13 05:48:40 +00:00
11 lines
471 B
C#
11 lines
471 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace StableDiffusion.NET;
|
|
|
|
[PublicAPI]
|
|
public static class ModelBuilder
|
|
{
|
|
public static StableDiffusionModelBuilder StableDiffusion(string modelPath) => new(modelPath);
|
|
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);
|
|
} |