hsendhilvel commited on
Commit
1bce5db
·
verified ·
1 Parent(s): 125d028

add music attempt

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -19,5 +19,18 @@ with gr.Blocks(theme=gr.themes.Ocean()) as demo:
19
  examples=["Will I win the lottery?", "Am I the drama?"],
20
  chatbot=custom_chatbot # Inject the custom chatbot here
21
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
  demo.launch(share=True, debug=True)
 
19
  examples=["Will I win the lottery?", "Am I the drama?"],
20
  chatbot=custom_chatbot # Inject the custom chatbot here
21
  )
22
+ with gr.Row():
23
+ gr.HTML("""
24
+ <iframe
25
+ style="border-radius:12px"
26
+ src="https://open.spotify.com/embed/playlist/37i9dQZF1DXcBWIGoYBM5M?utm_source=generator"
27
+ width="100%"
28
+ height="152"
29
+ frameBorder="0"
30
+ allowfullscreen=""
31
+ allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
32
+ loading="lazy">
33
+ </iframe>
34
+ """)
35
 
36
  demo.launch(share=True, debug=True)