diff options
Diffstat (limited to 'modules/scripts.py')
-rw-r--r-- | modules/scripts.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/scripts.py b/modules/scripts.py index 5b4edcac..1049740d 100644 --- a/modules/scripts.py +++ b/modules/scripts.py @@ -17,8 +17,12 @@ class PostprocessImageArgs: class PostprocessBatchListArgs:
- def __init__(self, images):
+ def __init__(self, images, prompts, negative_prompts, seeds, subseeds):
self.images = images
+ self.prompts = prompts
+ self.negative_prompts = negative_prompts
+ self.seeds = seeds
+ self.subseeds = subseeds
class Script:
|