evalution
    Preparing search index...

    Interface PromptID

    A reference to a prompt.

    id is interpreted as a globally-unique prompt ID unless providerId is present, in which case id is scoped to that specific prompt provider. This mirrors the OpenTelemetry attributes evalution.prompt.id (always present) and evalution.prompt.provider.id (optional, scoping).

    interface PromptID {
        functionParameters?: unknown[];
        id: string;
        providerId?: string;
    }
    Index

    Properties

    functionParameters?: unknown[]

    Positional arguments the prompt function was called with.

    id: string

    The prompt ID — global unless providerId scopes it.

    providerId?: string

    When set, id is scoped to this prompt provider.