Class StabilityRequest
Inherited Members
Namespace: Glitch9.AIDevKit.AmazonAws
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public abstract class StabilityRequest
Properties
| Edit this page View SourceNegativePrompt
Optional. Keywords of what you do not wish to see in the output image. Max: 10,000 characters.
Declaration
[JsonProperty("negative_prompt")]
public string NegativePrompt { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
OutputFormat
Optional. Specifies the format of the output image. Supported formats: JPEG, PNG. Supported dimensions: height 640 to 1,536 px, width 640 to 1,536 px.
Declaration
[JsonProperty("output_format")]
public string OutputFormat { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Prompt
Required. What you wish to see in the output image. A strong, descriptive prompt that clearly defines elements, colors, and subjects will lead to better results.
Declaration
[JsonProperty("prompt")]
public string Prompt { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Seed
Optional. A specific value that is used to guide the 'randomness' of the generation. (Omit this parameter or pass 0 to use a random seed.) Range: 0 to 4294967295.
Declaration
[JsonProperty("seed")]
public int? Seed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |