Update app.py
Browse files
app.py
CHANGED
@@ -120,7 +120,7 @@ def generate(input=DEFAULT_INPUT, filter_input="", negative_input=DEFAULT_NEGATI
|
|
120 |
}
|
121 |
|
122 |
if model != "Pro":
|
123 |
-
parameters["negative_prompt"] = str(filter_input + negative_input),
|
124 |
print(parameters)
|
125 |
images = repo(**parameters).images
|
126 |
image_paths = [save_image(img, seed) for img in images]
|
|
|
120 |
}
|
121 |
|
122 |
if model != "Pro":
|
123 |
+
parameters["negative_prompt"] = str(filter_input) + str(negative_input),
|
124 |
print(parameters)
|
125 |
images = repo(**parameters).images
|
126 |
image_paths = [save_image(img, seed) for img in images]
|