惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 司徒正美
Recent Announcements
Recent Announcements
The Register - Security
The Register - Security
J
Java Code Geeks
The Cloudflare Blog
M
MIT News - Artificial intelligence
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
博客园 - Franky
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
宝玉的分享
宝玉的分享
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
B
Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
T
Troy Hunt's Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Hacker News: Front Page
H
Help Net Security
S
Security @ Cisco Blogs
V
V2EX
Security Archives - TechRepublic
Security Archives - TechRepublic
Stack Overflow Blog
Stack Overflow Blog
O
OpenAI News
L
LINUX DO - 最新话题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
Secure Thoughts
Help Net Security
Help Net Security
F
Full Disclosure
博客园 - 叶小钗
The Hacker News
The Hacker News
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Jina AI
Jina AI
K
Kaspersky official blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
V
Vulnerabilities – Threatpost
P
Privacy International News Feed
Scott Helme
Scott Helme

Blanboom

移动端 SSH + CLI Coding Agent 的实践与体验优化 HEIF & HEVC 转换器 1.0 发布:压缩 iOS 照片库,释放存储空间 一个 UniFi IPv6 问题的定位与解决 通过 Waydroid 自动备份 NAS 照片到 Google Photos AirTerminal 2.2:Telnet 服务器、自动重连 AirTerminal 2.1:自定义字体、颜色主题、退格键映射 将 Logseq 的昨日待办事项自动转移到今天 一次使用 ChatGPT 帮助我学习 L4S 的尝试 AirTerminal 2.0:支持连接多个蓝牙设备
通过自定义 Prompts,让 Readwise Reader 为文章优化标题、添加中文摘要
2024-04-08 · via Blanboom

本文介绍了如何使用 Readwise Reader 的自定义 prompts 功能,为 RSS Feed 生成优化后的中文标题和摘要,方便读者快速浏览并过滤值得阅读的文章。


Bulletin 是一款具有 AI 功能的 RSS 阅读器,能够根据文章内容,生成优化后的标题,避免「标题党」文章对读者造成干扰:

但这款应用只支持 Apple 生态。而我的主力阅读设备,是一款运行 Android 的电子墨水屏手机,所以我选择了跨平台的 Readwise Reader。

近期,Readwise Reader 增加了一个功能,能够通过自定义 Prompts,自动对文章进行总结和摘要。我们可以利用这一功能,在文章摘要区域显示 AI 优化后的标题,实现类似 Bulletin 的效果。

同时,摘要和标题还可以设置为以中文输出,提高中文读者的信息获取效率:

Readwise Reader 在文章摘要区域,为 Hacker News 的每篇文章添加了中文标题

如下内容修改自 Readwise Reader 自带的文章摘要 prompt,在自带 prompt 的基础上,增加了生成文章标题、生成中文摘要的内容。复制粘贴到设置页面的 Ghostreader prompts / Automatic prompts / Summarize the document 中即可使用:

Generate a clear, easy-to-read title and a three-sentence summary for the following text in Simplified Chinese:

"""
Title: {{ document.title }}
Author: {{ document.author }}
Domain: {{ document.domain}}
{% if (document.content | count_tokens) > 2000 %}
{{ document.content | central_sentences | join('\n\n') }}
{% else %}
{{ document.content }}
{% endif %}
"""

IMPORTANT: The output should be in the format "《New Title》 Summary". The new generated title should be clear, easy-to-read, and different from the original title. The summary should consist of THREE sentences. Each sentence should be short and easy-to-read. Use words sparingly and please capture the big idea. You must reply in Simplified Chinese.

如果订阅的 RSS 源质量较高,不存在太多的「标题党」文章,也可以实现仅为非中文内容添加标题:

{% if document.language  == "Chinese" %}

Generate a three-sentence summary for the following text in Simplified Chinese:

"""
Title: {{ document.title }}
Author: {{ document.author }}
Domain: {{ document.domain}}
{% if (document.content | count_tokens) > 2000 %}
{{ document.content | central_sentences | join('\n\n') }}
{% else %}
{{ document.content }}
{% endif %}
"""

IMPORTANT: The summary should consist of THREE sentences. Each sentence should be short and easy-to-read. Use words sparingly and please capture the big idea. You must reply in Simplified Chinese.

{% else %}

Generate a clear, easy-to-read title and a three-sentence summary for the following text in Simplified Chinese:

"""
Title: {{ document.title }}
Author: {{ document.author }}
Domain: {{ document.domain}}
{% if (document.content | count_tokens) > 2000 %}
{{ document.content | central_sentences | join('\n\n') }}
{% else %}
{{ document.content }}
{% endif %}
"""

IMPORTANT: The output should be in the format "《New Title》 Summary". The new generated title should be clear, easy-to-read, and different from the original title. The summary should consist of THREE sentences. Each sentence should be short and easy-to-read. Use words sparingly and please capture the big idea. You must reply in Simplified Chinese.

{% endif %}

延伸阅读: