TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Where to put AI summary and filter in custom RSS feed

4 pointsby andrew_zhongabout 1 year ago
Hi folks,<p>I am working on an AI newsfeed app. It uses LLM to summarize and filter stories on any website or RSS. When exporting this custom AI feed to custom RSS (so that users on RSS readers can subscribe them), I am wondering which RSS field should I use for AI summary, the summary prompt or AI filter. Namely:<p>1. AI summary per top feed links (AI will summarize the page pointed by the link URL) - I am thinking of adding a new namespace within item: `channel &gt; item &gt; ai:summary`<p>2. User&#x27;s summary prompt (.e.g &quot;What are key points it covers&quot; or &quot;What are the key financial metrics&quot;) - What about `channel &gt; item &gt; ai:summaryPrompt`<p>3. Handle AI filtered feed and user&#x27;s filter prompt (e.g. &quot;Anything about open source&quot;) - I am thinking of including only the filtered feed items in RSS and adding a per channel tag like `channel &gt; ai:filterPrompt`. Or alternatively include all the feed items but add `channel &gt; item &gt; ai:filterPrompt` only for the items filtered by AI (but I doubt RSS readers can handle it properly).<p>(I want to preserve existing RSS fields if possible, like item description `channel &gt; item &gt; description`)<p>Any feedback is welcome!

1 comment

andrew_zhongabout 1 year ago
I got reply from someone in Reddit who mentioned that feed readers will just ignore the custom namespaces. SO I think the best option (but hacky) will be to put the summary into the item description HTML...<p>Hope there are cleaner ways