For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
预约演示登录免费开始
  • 入门
    • 概览
    • 工作原理
    • 快速开始
    • 项目结构
    • Customer showcase
    • 变更日志
  • 配置
    • 概览
    • 站点级设置
    • 页面级设置
  • 编写内容
    • Markdown 基础
    • Markdown 中的富媒体
    • Fern 编辑器
    • 可复用代码片段
  • AI 功能
    • 概览
    • Fern Writer
    • AI 生成的示例
    • Markdown 访问
      • 概览
      • Agent 指令
      • 智能体指令
      • 分析与集成
    • MCP 服务器
    • API 目录发现
      • 概览
        • Slack 应用
        • 自定义指引
        • 额外内容来源
        • 独立搜索小部件
  • Public API
    • GETJWT from Fern API key
    • GETAlgolia search credentials
    • GETCurrent user information
  • Fern Writer API
    • GETGet Fern Writer Install Link
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
预约演示登录免费开始
在本页
  • API
  • 使用方法
AI 功能Ask Fern设置

指导

||以 Markdown 格式查看|
此页面是否有帮助?
在仪表板中编辑
上一个

Ask Fern Slack 应用

下一个

附加内容源

您可以添加自定义指导来”覆盖” Ask Fern 对特定用户查询的响应。这对于您可能不希望在文档中明确显示的内容(如账单信息、法律条款和其他敏感内容)非常有用。

指导文档由一系列 context 文本和一个 document 文本组成。context 文本将被索引以匹配用户查询。document 文本将用作对用户查询的预定响应。

API

Fern 通过 guidance API 提供内部 CMS(内容管理系统),允许您根据需要添加、更新和删除指导。您需要提供 domain 来指定更新将应用到 Ask Fern 的哪个部署。

有关更多详细信息,请参阅 API 参考。

使用方法

以下是可通过 guidance API 上传的指导文档示例:

1{
2 "context": [
3 "What billing options are available for enterprise customers with 10-50 seats?",
4 "How do I upgrade the number of seats for my enterprise plan?"
5 ],
6 "document": "Please reach out to support@yourcompany.com for more information."
7}

在检索步骤中,当用户提出与任何 context 文本模糊匹配的问题时,document 文本将在工具响应中返回,并以以下形式作为上下文提供给智能体:

<GUIDANCE>
In response to the following query:
What billing options are available for enterprise customers with 10-50 seats?
You will return an answer based on the following guidance:
Please reach out to support@yourcompany.com for more information.
</GUIDANCE>

Ask Fern 优先使用指导响应而不是其他文档响应,允许您覆盖默认的 RAG 响应。