This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

LlmsTxtOptions Pennington.LlmsTxt

Configuration for llms.txt generation.

Properties

GenerateFullFile bool
Whether to also generate llms-full.txt with all content concatenated.
OutputDirectory string
Output directory for raw markdown files (relative to site root). Default: "_llms".

Pennington.LlmsTxt.LlmsTxtOptions

namespace Pennington.LlmsTxt;

/// Configuration for llms.txt generation.
public class LlmsTxtOptions
{
    /// Whether to also generate llms-full.txt with all content concatenated.
    
public bool GenerateFullFile { get; set; }
/// Output directory for raw markdown files (relative to site root). Default: "_llms".
public string OutputDirectory { get; set; }
}