yusufc commited on
Commit
e38c1c6
·
1 Parent(s): 0df4749

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -129,7 +129,7 @@ def format_output(similar_songs):
129
  iface = gr.Interface(
130
  fn=find_similar_songs, # Your find_similar_songs function
131
  inputs=gr.Textbox(label="Enter Spotify Track URL"),
132
- outputs=gr.Dataframe(headers=["Artist Name", "Song Name", "Spotify Track URL"]),
133
  live=True
134
  )
135
 
 
129
  iface = gr.Interface(
130
  fn=find_similar_songs, # Your find_similar_songs function
131
  inputs=gr.Textbox(label="Enter Spotify Track URL"),
132
+ outputs=gr.Dataframe(headers=["Artist Name", "Song Name", "Spotify Track URL"], type=["text", "text", "html"]),
133
  live=True
134
  )
135