Parameters

@Serializable
data class Parameters(val width: Int? = null, val height: Int? = null, val text: String? = null, val negativePrompt: String? = null, val seed: String? = null, val numInferenceSteps: Int? = null, val guidanceScale: Float? = null)(source)

Constructors

Link copied to clipboard
constructor(width: Int? = null, height: Int? = null, text: String? = null, negativePrompt: String? = null, seed: String? = null, numInferenceSteps: Int? = null, guidanceScale: Float? = null)

Properties

Link copied to clipboard
@SerialName(value = "guidance_scale")
val guidanceScale: Float?
Link copied to clipboard
@SerialName(value = "height")
val height: Int?
Link copied to clipboard
@SerialName(value = "negative_prompt")
val negativePrompt: String?
Link copied to clipboard
@SerialName(value = "num_inference_steps")
val numInferenceSteps: Int?
Link copied to clipboard
@SerialName(value = "seed")
val seed: String?
Link copied to clipboard
@SerialName(value = "text")
val text: String?
Link copied to clipboard
@SerialName(value = "width")
val width: Int?