Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -206,9 +206,15 @@ css = """
|
|
206 |
|
207 |
with gr.Blocks(css=css) as demo:
|
208 |
with gr.Column(elem_id="col-container"):
|
209 |
-
gr.HTML(
|
210 |
-
|
211 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
with gr.Row():
|
213 |
with gr.Column():
|
214 |
input_image = gr.Image(label="Input Image", show_label=False, type="pil")
|
|
|
206 |
|
207 |
with gr.Blocks(css=css) as demo:
|
208 |
with gr.Column(elem_id="col-container"):
|
209 |
+
gr.HTML("""
|
210 |
+
<div id="logo-title">
|
211 |
+
<img src="https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-Image/qwen_image_edit_logo.png" alt="Qwen-Image Edit Logo" width="400" style="display: block; margin: 0 auto;">
|
212 |
+
</div>
|
213 |
+
""")
|
214 |
+
gr.Markdown("""
|
215 |
+
[Learn more](https://github.com/QwenLM/Qwen-Image) about the Qwen-Image series.
|
216 |
+
Try on [Qwen Chat](https://chat.qwen.ai/), or [download model](https://huggingface.co/Qwen/Qwen-Image-Edit) to run locally with ComfyUI or diffusers.
|
217 |
+
""")
|
218 |
with gr.Row():
|
219 |
with gr.Column():
|
220 |
input_image = gr.Image(label="Input Image", show_label=False, type="pil")
|