Table of Contents

Class ImageJobNetworkParams

Namespace
CivitaiSharp.Sdk.Models.Jobs
Assembly
CivitaiSharp.Sdk.dll

Configuration for an additional network (LoRA, embedding, etc.) to apply during generation.

public sealed class ImageJobNetworkParams
Inheritance
ImageJobNetworkParams
Inherited Members

Properties

ClipStrength

Gets or sets the CLIP strength for text encoder influence. Range: 0.0-2.0.

[JsonPropertyName("clipStrength")]
public decimal? ClipStrength { get; init; }

Property Value

decimal?

Strength

Gets or sets the strength/weight of the network. Typically 0.0-2.0, default: 1.0.

[JsonPropertyName("strength")]
public decimal? Strength { get; init; }

Property Value

decimal?

TriggerWord

Gets or sets the trigger words for this network, if any.

[JsonPropertyName("triggerWord")]
public string? TriggerWord { get; init; }

Property Value

string

Type

Gets or sets the type of network.

[JsonPropertyName("type")]
[JsonConverter(typeof(NetworkTypeConverter))]
public required NetworkType Type { get; init; }

Property Value

NetworkType