Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -86,10 +86,26 @@ demo = gr.Interface(
|
|
86 |
],
|
87 |
outputs="json",
|
88 |
title=f"Stable Diffusion Chinese Prompt Extend 🐰 demonstration",
|
89 |
-
|
90 |
-
description = description,
|
91 |
examples=example_sample if example_sample else None,
|
92 |
cache_examples = False
|
93 |
)
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
demo.launch(server_name=None, server_port=None)
|
|
|
86 |
],
|
87 |
outputs="json",
|
88 |
title=f"Stable Diffusion Chinese Prompt Extend 🐰 demonstration",
|
89 |
+
description = 'This _example_ was **drive** from <br/><b><h4>[https://github.com/svjack/Stable-Diffusion-Chinese-Extend](https://github.com/svjack/Stable-Diffusion-Chinese-Extend)</h4></b>\n',
|
90 |
+
#description = description,
|
91 |
examples=example_sample if example_sample else None,
|
92 |
cache_examples = False
|
93 |
)
|
94 |
|
95 |
+
|
96 |
+
with demo:
|
97 |
+
gr.HTML(
|
98 |
+
'''
|
99 |
+
<div style="justify-content: center; display: flex;">
|
100 |
+
<iframe
|
101 |
+
src="https://svjack-chatglm3-few-shot-demo.hf.space/?input_list_index=9"
|
102 |
+
frameborder="0"
|
103 |
+
width="1400"
|
104 |
+
height="768"
|
105 |
+
></iframe>
|
106 |
+
</div>
|
107 |
+
'''
|
108 |
+
)
|
109 |
+
|
110 |
+
|
111 |
demo.launch(server_name=None, server_port=None)
|