Class TitanImageGenerationConfig
Inherited Members
Namespace: Glitch9.AIDevKit.AmazonAws
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public class TitanImageGenerationConfig
Properties
| Edit this page View SourceCfgScale
Optional. Specifies how strongly the generated image should adhere to the prompt. Range: 1.1 to 10.0. Default is 8.0.
Declaration
[JsonProperty("cfgScale")]
public float? CfgScale { get; set; }
Property Value
| Type | Description |
|---|---|
| float? |
Height
Optional. The height of the image in pixels. Default is 1408.
Declaration
[JsonProperty("height")]
public int? Height { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
NumberOfImages
Optional. The number of images to generate. Minimum 1, Maximum 5. Default 1.
Declaration
[JsonProperty("numberOfImages")]
public int? NumberOfImages { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Quality
Optional. The quality of the image. Enum: standard, premium. Default is standard.
Declaration
[JsonProperty("quality")]
public AmazonTypes.TitanImageQuality? Quality { get; set; }
Property Value
| Type | Description |
|---|---|
| AmazonTypes.TitanImageQuality? |
Seed
Optional. Use to control and reproduce results. Determines the initial noise setting. Range: 0 to 2,147,483,646. Default is 42.
Declaration
[JsonProperty("seed")]
public int? Seed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Width
Optional. The width of the image in pixels. Default is 1408.
Declaration
[JsonProperty("width")]
public int? Width { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |