Kimmy: Fabel
{'neg': 0.0, 'neu': 0.292, 'pos': 0.708, 'compound': 0.8439}
Args: text (str): The text to analyze.
Returns: dict: A dictionary containing the sentiment scores. """ sia = SentimentIntensityAnalyzer() sentiment_scores = sia.polarity_scores(text) return sentiment_scores kimmy fabel