Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|