StableDiffusionScriptsRaw

@Serializable
data class StableDiffusionScriptsRaw(val txt2img: List<String> = emptyList(), val img2img: List<String> = emptyList())(source)

Carries StableDiffusionScriptsRaw data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(txt2img: List<String> = emptyList(), img2img: List<String> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "img2img")
val img2img: List<String>

Exposes the img2img value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "txt2img")
val txt2img: List<String>

Exposes the txt2img value used by the SDAI network layer.