Update app.py
Browse files
app.py
CHANGED
@@ -180,6 +180,12 @@ def mirror(image_output, scale_by, method, gfpgan, codeformer):
|
|
180 |
img = Image.open(BytesIO(response2.content))
|
181 |
return img
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
# CSS to style the app
|
184 |
css = """
|
185 |
.gradio-container {background-color: MediumAquaMarine}
|
|
|
180 |
img = Image.open(BytesIO(response2.content))
|
181 |
return img
|
182 |
|
183 |
+
examples = [
|
184 |
+
"a beautiful woman with blonde hair and blue eyes",
|
185 |
+
"a beautiful woman with brown hair and grey eyes",
|
186 |
+
"a beautiful woman with black hair and brown eyes",
|
187 |
+
]
|
188 |
+
|
189 |
# CSS to style the app
|
190 |
css = """
|
191 |
.gradio-container {background-color: MediumAquaMarine}
|