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