TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

4 点作者 andrew_zhong大约 1 年前
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_zhong大约 1 年前
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