Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface EncodableRequest

    The complete input to an encoder.

    interface EncodableRequest {
        messages: readonly EncodableMessage[];
        model: string;
        params: Record<string, unknown>;
        system: string | null;
        tools: readonly ToolSchema[] | null;
    }
    Index
    messages: readonly EncodableMessage[]
    model: string
    params: Record<string, unknown>

    Provider parameters verbatim from the header row.

    system: string | null

    System text, or null when the request carried none.

    tools: readonly ToolSchema[] | null

    Parsed tool schema, or null when the request carried no tools.