UNPKG

llmoptimizer

Version:

Generate an llms.txt summary of your website/docs for LLMs (framework-agnostic with Vite/Next/Nuxt/Astro/Remix helpers).

12 lines (10 loc) 306 B
interface RobotsOptions { allowAll?: boolean; llmAllow?: boolean; llmBots?: string[]; searchAllow?: boolean; searchBots?: string[]; sitemaps?: string[]; } declare function generateRobotsTxt(opts?: RobotsOptions): string; export { type RobotsOptions as R, generateRobotsTxt as g };