SongGuess
    Preparing search index...
    type AiGatewayLog = {
        cached: boolean;
        cost?: number;
        created_at: Date;
        custom_cost?: boolean;
        duration: number;
        id: string;
        metadata?: Record<string, number | string | boolean | null | bigint>;
        model: string;
        model_type?: string;
        path: string;
        provider: string;
        request_content_type?: string;
        request_head?: string;
        request_head_complete: boolean;
        request_size: number;
        request_type?: string;
        response_content_type?: string;
        response_head?: string;
        response_head_complete: boolean;
        response_size: number;
        status_code: number;
        step?: number;
        success: boolean;
        tokens_in?: number;
        tokens_out?: number;
    }
    Index

    Properties

    cached: boolean
    cost?: number
    created_at: Date
    custom_cost?: boolean
    duration: number
    id: string
    metadata?: Record<string, number | string | boolean | null | bigint>
    model: string
    model_type?: string
    path: string
    provider: string
    request_content_type?: string
    request_head?: string
    request_head_complete: boolean
    request_size: number
    request_type?: string
    response_content_type?: string
    response_head?: string
    response_head_complete: boolean
    response_size: number
    status_code: number
    step?: number
    success: boolean
    tokens_in?: number
    tokens_out?: number