Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,12 @@ def check_text(prompt, negative=""):
|
|
26 |
return True
|
27 |
return False
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
style_list = [
|
30 |
{
|
31 |
"name": "Photo",
|
@@ -199,6 +205,7 @@ footer {
|
|
199 |
}
|
200 |
'''
|
201 |
with gr.Blocks(theme="YTheme/Gradient", css=css) as demo:
|
|
|
202 |
with gr.Row():
|
203 |
prompt = gr.Text(
|
204 |
show_label=False,
|
|
|
26 |
return True
|
27 |
return False
|
28 |
|
29 |
+
|
30 |
+
DESCRIPTION = """## sdxl img-gen
|
31 |
+
|
32 |
+
"""
|
33 |
+
|
34 |
+
|
35 |
style_list = [
|
36 |
{
|
37 |
"name": "Photo",
|
|
|
205 |
}
|
206 |
'''
|
207 |
with gr.Blocks(theme="YTheme/Gradient", css=css) as demo:
|
208 |
+
gr.Markdown(DESCRIPTION)
|
209 |
with gr.Row():
|
210 |
prompt = gr.Text(
|
211 |
show_label=False,
|