@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface RenderResult

    interface RenderResult {
        content: string;
        metadata: Record<string, unknown>;
        renderAs: string;
        rules: string[];
        transformed: boolean;
    }
    Index

    Properties

    content: string

    Rendered content (if a transform ran) or extracted text (passthrough).

    metadata: Record<string, unknown>

    Composed embedding properties from matched rules.

    renderAs: string

    Output content type (file extension without dot). Always present.

    rules: string[]

    Names of matched inference rules (diagnostic).

    transformed: boolean

    Whether a template or render transform produced the content.