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.
1 parent 29dccff commit c5f77a5Copy full SHA for c5f77a5
scripts/infinite-zoom.py
@@ -35,7 +35,7 @@
35
usefulDirs[0] + "/" + usefulDirs[1] + "/scripts/promptschema.json"
36
)
37
38
-available_samplers = [s.name for s in modules.sd_samplers.samplers]
+available_samplers = [s.name for s in modules.sd_samplers.samplers if "UniPc" not in s.name]
39
40
default_prompt = """
41
{
@@ -787,10 +787,11 @@ def on_ui_settings():
787
section = ("infinite-zoom", "Infinite Zoom")
788
789
shared.opts.add_option(
790
+ "outputs"
791
"infzoom_outpath",
792
shared.OptionInfo(
793
"",
- "Path where to store your infinite video. Let empty to use img2img-output",
794
+ "Path where to store your infinite video. Default is Outputs",
795
gr.Textbox,
796
{"interactive": True},
797
section=section,
0 commit comments