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

LlmsTxtEntryMetadata Pennington.LlmsTxt

Endpoint metadata that surfaces a MapGet route in llms.txt without producing an HTML page. Attached to a route via WithLlmsTxtEntry; consumed by LlmsTxtService to fold the endpoint's URL into the generated index alongside discovered markdown entries.

Properties

Description string
Optional one-line description rendered after the link.
Title string
Display title shown in the llms.txt front door.

Constructors

LlmsTxtEntryMetadata

#
public LlmsTxtEntryMetadata(string Title, string Description = null)

Endpoint metadata that surfaces a MapGet route in llms.txt without producing an HTML page. Attached to a route via WithLlmsTxtEntry; consumed by LlmsTxtService to fold the endpoint's URL into the generated index alongside discovered markdown entries.

Parameters

Title string
Display title shown in the llms.txt front door.
Description string
Optional one-line description rendered after the link.

Pennington.LlmsTxt.LlmsTxtEntryMetadata

namespace Pennington.LlmsTxt;

/// Endpoint metadata that surfaces a MapGet route in llms.txt without producing an HTML page. Attached to a route via WithLlmsTxtEntry; consumed by LlmsTxtService to fold the endpoint's URL into the generated index alongside discovered markdown entries.
public record LlmsTxtEntryMetadata
{
    /// Optional one-line description rendered after the link.
    
public string Description { get; set; }
/// Endpoint metadata that surfaces a MapGet route in llms.txt without producing an HTML page. Attached to a route via WithLlmsTxtEntry; consumed by LlmsTxtService to fold the endpoint's URL into the generated index alongside discovered markdown entries.
public LlmsTxtEntryMetadata(string Title, string Description = null)
; /// Display title shown in the llms.txt front door.
public string Title { get; set; }
}