from utils.nlp_utils import analyze_sentiment print("Testing Positive:") print(analyze_sentiment("This is an absolutely fantastic product, highly recommend!")) print("\nTesting Negative:") print(analyze_sentiment("What a terrible waste of money. Completely broken.")) print("\nTesting Neutral:") print(analyze_sentiment("The package arrived on Tuesday."))