Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -71,7 +71,7 @@ def generate(
|
|
| 71 |
if not use_negative_prompt:
|
| 72 |
negative_prompt = "" # type: ignore
|
| 73 |
|
| 74 |
-
images =
|
| 75 |
prompt=prompt,
|
| 76 |
negative_prompt=negative_prompt,
|
| 77 |
width=width,
|
|
@@ -102,7 +102,7 @@ footer {
|
|
| 102 |
visibility: hidden
|
| 103 |
}
|
| 104 |
'''
|
| 105 |
-
with gr.Blocks(css=css) as demo:
|
| 106 |
gr.Markdown(DESCRIPTION)
|
| 107 |
gr.DuplicateButton(
|
| 108 |
value="Duplicate Space for private use",
|
|
|
|
| 71 |
if not use_negative_prompt:
|
| 72 |
negative_prompt = "" # type: ignore
|
| 73 |
|
| 74 |
+
images = pipe(
|
| 75 |
prompt=prompt,
|
| 76 |
negative_prompt=negative_prompt,
|
| 77 |
width=width,
|
|
|
|
| 102 |
visibility: hidden
|
| 103 |
}
|
| 104 |
'''
|
| 105 |
+
with gr.Blocks(css=css, theme="pseudolab/huggingface-korea-theme") as demo:
|
| 106 |
gr.Markdown(DESCRIPTION)
|
| 107 |
gr.DuplicateButton(
|
| 108 |
value="Duplicate Space for private use",
|