🍵 编者按

今天是 2024 年 04 月 12 日,您正在阅读的是《壹苇可航》付费版 CETDE 周报第 14 期。本期将继续围绕重点关注、人文视野、编码转换来为您分享内容。

  • 重点关注:稍后读工具
  • 人文视野:正念与专注的关系
  • 编码转换:为什么要使用稍后读工具

以下是正文内容。

📰 重点关注

最近,我用了两年多的稍后读工具 Readwise Reader 推出了第八个公测版的更新。其中最引人关注的功能就是开始支持自定义 Ghostreader prompts,即用户可以根据自己的需求定制 AI 辅助阅读的提示词。这使得 AI 摘要和重点提取可以更加个性化,例如可以通过自定义 prompts,让 AI 生成中文摘要。

王树义老师为此专门制作了一期视频(YouTube | Bilibili),其中他提及的自定义 Prompt 如下:

{#- 简体中文摘要与重点提取 -#}

{#- 下面的 Prompt 会将文档缩减成一个 300 字内的摘要,并根据你的 highlight 进行重点摘要。-#}

请使用 300 字以内,以简体中文总结以下文本:

"""

标题:{{ document.title }}
作者:{{ document.author }} 
来源:{{ document.domain }}

另外,在阅读此文章时,我对以下部分进行了高亮,认为这些是文章的重点,给你学习参考:

{% for highlight in document.highlights %}
- {{ highlight.content }}
{% endfor %}

{#- 下面的 if-else 逻辑检查文档的长度。如果文档较长,它将使用关键句子以避免超出 GPT 提示窗口的限制。我们强烈建议除非您知道自己在做什么,否则不要更改此设置。-#}

{% if (document.content | count_tokens) > 2000 %}
{{ document.content | central_sentences | join('\n\n') }}
{% else %}
{{ document.content }}
{% endif %}

"""

重要提示:请不要超过 300 字。每句话应该简洁易读;关于中文的排版原则:在中文和英文或数字之间,要有一个半角空白,例如:Apple 手机;3 个 AI 工具。

另外,在文章总结下方换行后,基于本文重点,请创建 3 个有关问题及其答案。每个问题应能帮助深入理解文章的关键概念,并加强对重点的印象。请注意,在问题的这一行上,使用粗体的 markdown 格式,或者 <strong> 的 html 标签来更让文字显眼。

{#- 创建问答 -#}

**问题 1:{# 基于重点内容构建的问题 #}**

答案:{# 对应问题 1 的答案,应该包含对应的重点内容 #}

**问题 2:{# 同上 #}** 

答案:{# 对应问题 2 的答案,应该包含对应的重点内容 #}

**问题 3:{# 同上 #}**

答案:{# 对应问题 3 的答案,应该包含对应的重点内容 #}

此外,我还找到了两段在摘要中加入中文标题的 Prompt,都是在原始提示词的基础上修改的。

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.

也可以实现仅为非中文内容添加标题:

{% 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 %}

如果您想尝试 Readwise Reader,可以通过这个邀请链接获取两个月的免费使用,比您直接在官网注册要多了一个月的免费。

虽然我很推荐 Readwise Reader,但是它自己本身也存在着一些问题,加之价格较高,不能被轻易接受。所以,我对比了几个市面上常见的我认为做的不错的稍后读工具。