diff --git a/README.md b/README.md index 131d453..16eb363 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # StableDiffusion.NET -Based on -https://github.com/seasonjs/stable-diffusion.cpp-build -https://github.com/leejet/stable-diffusion.cpp +Based on https://github.com/leejet/stable-diffusion.cpp ## Usage ### Setup @@ -11,6 +9,5 @@ Run `build.bat` to build the native libs (modify params like CUDA-builds if need ### Example ```csharp using StableDiffusionModel sd = new(@"", new ModelParameter()); -using StableDiffusionParameter parameter = new StableDiffusionParameter(); -using StableDiffusionImage image = sd.TextToImage("", parameter); +using StableDiffusionImage image = sd.TextToImage("", new StableDiffusionParameter()); ```