vuepress-plugin-llms
Version:
📜 VuePress plugin for generating documentation friendly to Large Language Models (LLMs) | 📜 VuePress 插件,用于生成对大语言模型(LLMs)友好的文档。
12 lines (11 loc) • 656 B
TypeScript
import type { Plugin } from '@vuepress/core';
import type { LlmstxtSettings } from './types.js';
/**
* [VuePress](https://v2.vuepress.vuejs.org/) 插件,用于生成原始的 Markdown 格式文档,这种格式对**大语言模型(LLMs)**更轻量且更高效
* [VuePress](https://v2.vuepress.vuejs.org/) plugin for generating raw documentation for **LLMs** in Markdown format which is much lighter and more efficient for LLMs
*
* @param userSettings - Plugin settings. | 插件设置。
* @see https://github.com/guoqw7/vuepress-plugin-llms
* @see https://llmstxt.org/
*/
export default function llmstxt(userSettings?: LlmstxtSettings): Plugin;