Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
496 B

namespace StabilityMatrix.Avalonia.Models.Inference;
public class GenerationParameters
{
public string PositivePrompt { get; set; }
public string NegativePrompt { get; set; }
public int Steps { get; set; }
public string Sampler { get; set; }
public double CfgScale { get; set; }
public ulong Seed { get; set; }
public int Height { get; set; }
public int Width { get; set; }
public string ModelHash { get; set; }
public string ModelName { get; set; }
}