diff --git a/docs.json b/docs.json index 381cdcce..2a7c11a6 100644 --- a/docs.json +++ b/docs.json @@ -80,6 +80,7 @@ "pages": [ "settings/custom-domain", "settings/seo", + "settings/llms", "settings/custom-scripts", "settings/broken-links", "settings/github", diff --git a/settings/llms.mdx b/settings/llms.mdx new file mode 100644 index 00000000..916c19a9 --- /dev/null +++ b/settings/llms.mdx @@ -0,0 +1,16 @@ +--- +title: "LLM Ingestion" +description: "How to feed your docs into LLMs" +icon: "diagram-project" +--- + +All documentation pages are auto-hosted in a variety of markdown formats to make it easier for: +- End users to feed your docs into large language models (LLMs) for specific information retrieval +- LLMs to efficiently index your content without parsing HTML, ads, or JavaScript + +## Supported formats +We support industry standards such as [/llms.txt](https://llmstxt.org) as well as additional markdown formats. +- **/llms.txt**: A markdown file of a structured index of your docs is automatically hosted at /llms.txt. Helps general-purpose LLMs index more efficiently (e.g. a sitemap for AI). +- **/llms-full.txt**: A markdown file of all your docs content is automatically hosted at /llms-full.txt. Helps users load complete context into AI tools in one link. +- **.md support**: Add .md to an individual docs page to see a markdown version of that page. Helps load individual pages into AI tools with better token efficiency & inference time. +- **⌘ + c shortcut**: Copy markdown source of any page using command + c. \ No newline at end of file