From beb24e7b17aa6a7287610a531563aad0244353f7 Mon Sep 17 00:00:00 2001 From: Charles Fettinger Date: Thu, 8 Jun 2023 23:05:32 -0700 Subject: [PATCH] Fix Import bugs and schema --- iz_helpers/promptschema.json | 2 +- iz_helpers/static_variables.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/iz_helpers/promptschema.json b/iz_helpers/promptschema.json index 2c44982..2e41b74 100644 --- a/iz_helpers/promptschema.json +++ b/iz_helpers/promptschema.json @@ -110,7 +110,7 @@ "type": "integer" }, "zoomSpeed": { - "type": "integer" + "type": "number" }, "startFrames": { "type": "integer" diff --git a/iz_helpers/static_variables.py b/iz_helpers/static_variables.py index 1f8bb93..a0705dd 100644 --- a/iz_helpers/static_variables.py +++ b/iz_helpers/static_variables.py @@ -36,11 +36,11 @@ default_prompt = """ "lutFileName": "", "outpaintAmount": 128, "maskBlur": 48, - "overmask": 8, + "overmask": 8.0, "outpaintStrategy": "Corner", "zoomMode": "Zoom-out", "fps": 30, - "zoomSpeed": 1, + "zoomSpeed": 1.0, "startFrames": 0, "lastFrames": 0, "blendMode": "None", @@ -76,7 +76,7 @@ invalid_prompt = { "outpaintStrategy": "Corner", "zoomMode": "Zoom-out", "fps": 30, - "zoomSpeed": 1, + "zoomSpeed": 1.0, "startFrames": 0, "lastFrames": 0, "blendMode": "None",