We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab72fc2 + a0490d7 commit 2973228Copy full SHA for 2973228
StabilityMatrix.Avalonia/Models/Inference/FileNameFormatProvider.cs
@@ -30,6 +30,9 @@ public partial class FileNameFormatProvider
30
{ "negative_prompt", () => GenerationParameters?.NegativePrompt },
31
{ "model_name", () => Path.GetFileNameWithoutExtension(GenerationParameters?.ModelName) },
32
{ "model_hash", () => GenerationParameters?.ModelHash },
33
+ { "sampler", () => GenerationParameters?.Sampler },
34
+ { "cfgscale", () => GenerationParameters?.CfgScale.ToString() },
35
+ { "steps", () => GenerationParameters?.Steps.ToString() },
36
{ "width", () => GenerationParameters?.Width.ToString() },
37
{ "height", () => GenerationParameters?.Height.ToString() },
38
{ "project_type", () => ProjectType?.GetStringValue() },
0 commit comments