This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // News Sentiment Analyzer | |
| // Fetches 5 headlines from Google News RSS, scores them with OpenAI, | |
| // and prints a Global Risk Score. | |
| // | |
| // Usage: | |
| // OPENAI_API_KEY=your_key_here node news-sentiment.js | |
| // | |
| // Dependencies: | |
| // npm install openai |