Skip to content

Commit

Permalink
Merge pull request #1027 from yansigit/feature/more-file-format-subst
Browse files Browse the repository at this point in the history
Feature/more file format subst
  • Loading branch information
mohnjiles authored Dec 5, 2024
2 parents ab72fc2 + a0490d7 commit 2973228
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public partial class FileNameFormatProvider
{ "negative_prompt", () => GenerationParameters?.NegativePrompt },
{ "model_name", () => Path.GetFileNameWithoutExtension(GenerationParameters?.ModelName) },
{ "model_hash", () => GenerationParameters?.ModelHash },
{ "sampler", () => GenerationParameters?.Sampler },
{ "cfgscale", () => GenerationParameters?.CfgScale.ToString() },
{ "steps", () => GenerationParameters?.Steps.ToString() },
{ "width", () => GenerationParameters?.Width.ToString() },
{ "height", () => GenerationParameters?.Height.ToString() },
{ "project_type", () => ProjectType?.GetStringValue() },
Expand Down

0 comments on commit 2973228

Please sign in to comment.