Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -88,21 +88,23 @@ with gr.Blocks(css=css, theme=theme) as demo:
|
|
88 |
''')
|
89 |
with gr.Group():
|
90 |
with gr.Tab("CommonCanvas XLC"):
|
91 |
-
gr.Markdown("[CommonCanvas XL-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-XLC)")
|
92 |
with gr.Row():
|
93 |
prompt_xlc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
94 |
button_xlc = gr.Button("Generate", min_width=120)
|
95 |
with gr.Tab("CommonCanvas XLNC"):
|
96 |
-
gr.Markdown("[CommonCanvas XL-Non-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-XLNC)")
|
97 |
with gr.Row():
|
98 |
prompt_xlnc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
99 |
button_xlnc = gr.Button("Generate", min_width=120)
|
100 |
with gr.Tab("CommonCanvas SC"):
|
101 |
-
|
|
|
102 |
prompt_sc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
103 |
button_sc = gr.Button("Generate", min_width=120)
|
104 |
with gr.Tab("CommonCanvas SNC"):
|
105 |
-
|
|
|
106 |
prompt_snc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
107 |
button_snc = gr.Button("Generate", min_width=120)
|
108 |
output = gr.Image(label="Your result", interactive=False)
|
|
|
88 |
''')
|
89 |
with gr.Group():
|
90 |
with gr.Tab("CommonCanvas XLC"):
|
91 |
+
gr.Markdown("Selected: [CommonCanvas XL-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-XLC)")
|
92 |
with gr.Row():
|
93 |
prompt_xlc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
94 |
button_xlc = gr.Button("Generate", min_width=120)
|
95 |
with gr.Tab("CommonCanvas XLNC"):
|
96 |
+
gr.Markdown("Selected: [CommonCanvas XL-Non-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-XLNC)")
|
97 |
with gr.Row():
|
98 |
prompt_xlnc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
99 |
button_xlnc = gr.Button("Generate", min_width=120)
|
100 |
with gr.Tab("CommonCanvas SC"):
|
101 |
+
gr.Markdown("Selected: [CommonCanvas Small-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-SC)")
|
102 |
+
with gr.Row():
|
103 |
prompt_sc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
104 |
button_sc = gr.Button("Generate", min_width=120)
|
105 |
with gr.Tab("CommonCanvas SNC"):
|
106 |
+
gr.Markdown("Selected: [CommonCanvas Small-Non-Commercial](https://huggingface.co/temp-org-cc/CommonCanvas-SNC)")
|
107 |
+
with gr.Row():
|
108 |
prompt_snc = gr.Textbox(show_label=False, scale=4, placeholder="Your prompt")
|
109 |
button_snc = gr.Button("Generate", min_width=120)
|
110 |
output = gr.Image(label="Your result", interactive=False)
|