func previewHelp()

in Diffusion-macOS/HelpContent.swift [113:130]


func previewHelp(_ showing: Binding<Bool>) -> some View {
    let description =
         """
         This number controls how many previews to display throughout the image generation process.

         Using more previews can be useful if you want more visibility into how \
         generation is progressing.

         However, computing each preview takes some time and can slow down \
         generation. If the process is too slow you can reduce the preview count, \
         which will result in less visibility of intermediate steps during generation.

         You can try different values to see what works best for your hardware.

         For the absolute fastest generation times, use 0 previews.
         """
    return helpContent(title: "Preview Count", description: description, showing: showing)
}