IshmamF commited on
Commit
b79842f
1 Parent(s): d99bf7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ if submit_button and user_input.strip():
91
  sentiment_label, sentiment_score = sentiment_analyzer.analyze_sentiment(user_input)
92
  st.write(f"Sentiment: {sentiment_label}, Score: {sentiment_score:.2f}")
93
 
94
- suggested_songs = song_matcher.match_songs_with_sentiment(sentiment_label, sentiment_score, user_input, 0.00625, song_matcher)
95
 
96
  with st.container():
97
  st.markdown("<div class='song-list'>", unsafe_allow_html=True)
 
91
  sentiment_label, sentiment_score = sentiment_analyzer.analyze_sentiment(user_input)
92
  st.write(f"Sentiment: {sentiment_label}, Score: {sentiment_score:.2f}")
93
 
94
+ suggested_songs = song_matcher.match_songs_with_sentiment(sentiment_label, sentiment_score, user_input, 0.00625)
95
 
96
  with st.container():
97
  st.markdown("<div class='song-list'>", unsafe_allow_html=True)