providerplaneai
    Preparing search index...

    Interface contract for ClientChatRequest.

    interface ClientChatRequest {
        context?: { metadata?: Record<string, unknown>; requestId?: string };
        messages: ClientChatMessage[];
        model?: string;
        options?: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    context?: { metadata?: Record<string, unknown>; requestId?: string }

    Execution context (tracing, requestId, etc.) Not sent to the provider.

    messages: ClientChatMessage[]
    model?: string
    options?: Record<string, unknown>

    Provider-agnostic tuning options (temperature, max tokens, etc.)