Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -76,6 +76,21 @@ demo = gr.ChatInterface(
|
|
| 76 |
]
|
| 77 |
)
|
| 78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
demo.launch()
|
| 80 |
|
| 81 |
|
|
|
|
| 76 |
]
|
| 77 |
)
|
| 78 |
|
| 79 |
+
with gr.Row():
|
| 80 |
+
gr.HTML(
|
| 81 |
+
"""
|
| 82 |
+
<iframe style="border-radius:12px"
|
| 83 |
+
src="https://open.spotify.com/playlist/3WLDIcG4Cx2UOPy0rbFhQn?si=2e7782e841fd4520"
|
| 84 |
+
width="100%"
|
| 85 |
+
height="152"
|
| 86 |
+
frameBorder="0"
|
| 87 |
+
allowfullscreen=""
|
| 88 |
+
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
|
| 89 |
+
loading="lazy">
|
| 90 |
+
</iframe>
|
| 91 |
+
"""
|
| 92 |
+
)
|
| 93 |
+
|
| 94 |
demo.launch()
|
| 95 |
|
| 96 |
|