I’m building a workflow for news monitoring. My idea is something like this:
- Once a day, fetch a bunch of RSS feeds.
- Use a LLM to filter out items that match my interests.
- Calculate embeddings for the filtered items.
- Cluster related items together.
- Send each group of related items to a LLM for a summary of them.
- Compile an email with each summary included.
What nodes do I need for embedding and clustering?
/Anders