Member Junction
    Preparing search index...

    Interface ResolvedPrompt

    A prompt source with its data already resolved to concrete values, handed to the PromptResolver.

    interface ResolvedPrompt {
        Data: Record<string, unknown>;
        PromptID: string;
    }
    Index

    Properties

    Properties

    Data: Record<string, unknown>

    The data context for the prompt run (the whole record by default, or the shaped Data map).

    PromptID: string