LlmsTxtOptions Pennington.LlmsTxt
Configuration for llms.txt generation.
Properties
GenerateFullFilebool- Whether to also generate llms-full.txt with all content concatenated.
OutputDirectorystring- 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; }
}