diff options
Diffstat (limited to 'src/include/stable_diffusion.h')
-rw-r--r-- | src/include/stable_diffusion.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/include/stable_diffusion.h b/src/include/stable_diffusion.h new file mode 100644 index 0000000..3335796 --- /dev/null +++ b/src/include/stable_diffusion.h @@ -0,0 +1,33 @@ + + +// curl -X POST -H 'Content-Type: application/json' -i 'http://127.0.0.1:7860/sdapi/v1/txt2img' --data '{ +// "prompt": "cute dinosaur sticker with polka dots", +// "steps": 50, +// "sampler_index": "DDIM" +// }' + +#define SD_LEN_PROMPT 256 +#define SD_LEN_ADDRESS 128 + +// struct sd_mode +// { +// sd_mode_txt2txt, +// sd_mode_txt2img +// } + +struct sd_state +{ + bool32 Mode = 1; + char Prompt[256]; + char NegPrompt[256]; + char ServerAddress[128]; + int32 Steps = 10; + int32 Width = 512; + int32 Height = 512; + int32 SamplerIndex = 0; + real32 CFG = 7; + int32 BatchSize = 1; + real32 DenoisingStrength = 0.4; + int32 Seed = -1; +}; + |