5_news_digest
5. Daily Personalized News Digest
Description
This workflow creates a daily personalized news digest. It gathers articles from various RSS feeds, uses a Large Language Model (LLM) to summarize them, and then sends the digest to you via email.
Architecture
graph TD
A[Schedule Trigger] --> B{Fetch RSS Feeds};
B --> C{Merge Articles};
C --> D{AI Agent LLM Summarizer};
D --> E[Send Email Digest];
Setup
- Import Workflow: Import the
workflow.jsonfile into your n8n instance. - Configure Trigger: In the "Run Daily" node, set the time you want to receive your news digest.
- Set RSS Feeds:
- The workflow includes two "Fetch News" nodes as examples.
- Update the
URLin each node to an RSS feed you want to include in your digest. - To add more sources, simply copy and paste the "Fetch News" node.
- Configure LLM:
- In the "Summarize Articles" node, configure the URL and authentication for your LLM API.
- The prompt is configured to take a list of article titles and summarize them into a single digest.
- Configure Email:
- In the "Send Email Digest" node, create or select your email credentials.
- Update the
To Emailfield with your email address. - The email body is pre-filled with the summary from the LLM.
Execution
- This workflow is triggered by a schedule. Once activated, it will run automatically at the configured time.
- You can also run it manually from the n8n editor to generate a digest on demand.