evalution
    Preparing search index...

    Interface ParsedPrompt

    Low-level prompt representation produced by a PromptFileType. It exposes the raw extractedProps from the parser and uses SDK-specific property names (e.g. model, system, messages).

    Not intended for public consumption — PromptProvider implementations convert this into a NormalizedPrompt via an SDKAdapter before returning it to callers.

    interface ParsedPrompt {
        extractedProps: ExtractedProps;
        functionParameters: PropDefinition[];
        globalId?: string;
        id: string;
        metadata?: unknown;
        name: string;
        providerId?: string;
        treePath?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    extractedProps: ExtractedProps
    functionParameters: PropDefinition[]
    globalId?: string

    Author-supplied stable alias for this prompt, globally unique across providers. Survives file moves/renames and is registered in the prompt registry so runtime traces can resolve back to this prompt.

    id: string
    metadata?: unknown
    name: string
    providerId?: string
    treePath?: string[]