Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -154,4 +154,18 @@ with gr.Blocks(
|
|
154 |
outputs=output_7b,
|
155 |
)
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
demo.queue(max_size=4, concurrency_count=1).launch(debug=True)
|
|
|
154 |
outputs=output_7b,
|
155 |
)
|
156 |
|
157 |
+
with demo:
|
158 |
+
gr.HTML(
|
159 |
+
'''
|
160 |
+
<div style="justify-content: center; display: flex;">
|
161 |
+
<iframe
|
162 |
+
src="https://svjack-chatglm3-few-shot-demo.hf.space/?input_list_index=1"
|
163 |
+
frameborder="0"
|
164 |
+
width="1024"
|
165 |
+
height="768"
|
166 |
+
></iframe>
|
167 |
+
</div>
|
168 |
+
'''
|
169 |
+
)
|
170 |
+
|
171 |
demo.queue(max_size=4, concurrency_count=1).launch(debug=True)
|