⬡ Hub
Skip to content

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

  1. Import Workflow: Import the workflow.json file into your n8n instance.
  2. Configure Trigger: In the "Run Daily" node, set the time you want to receive your news digest.
  3. Set RSS Feeds:
    • The workflow includes two "Fetch News" nodes as examples.
    • Update the URL in 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.
  4. 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.
  5. Configure Email:
    • In the "Send Email Digest" node, create or select your email credentials.
    • Update the To Email field 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.

Files and Subdirectories