Scorable TypeScript SDK - v0.10.0
    Preparing search index...

    Interface ExecutionPayload

    interface ExecutionPayload {
        turns?: {}[];
        tools?: Record<string, unknown>[];
        request?: string;
        response?: string;
        contexts?: string[];
        expected_output?: string;
        reference?: string;
        variables?: Record<string, string>;
        tags?: string[];
        user_id?: string;
        session_id?: string;
        system_prompt?: string;
        file_ids?: string[];
    }
    Index

    Properties

    turns?: {}[]
    tools?: Record<string, unknown>[]

    OpenAI-style tool catalog available to the agent during the conversation. Used by tool-aware evaluators (e.g. Tool Selection).

    request?: string
    response?: string
    contexts?: string[]
    expected_output?: string
    reference?: string
    variables?: Record<string, string>
    tags?: string[]
    user_id?: string
    session_id?: string
    system_prompt?: string
    file_ids?: string[]

    File IDs from client.files.upload(). PDFs are extracted to text context; images are passed directly to the model.