@deskcreate/agentcraft
    Preparing search index...

    Interface ModelInfo

    interface ModelInfo {
        capabilities: {
            audio: boolean;
            contextWindow: number;
            files: boolean;
            jsonMode: boolean;
            maxOutput: number;
            streaming: boolean;
            tools: boolean;
            video: boolean;
            vision: boolean;
        };
        deprecated: boolean;
        local: boolean;
        model: string;
        optimizedFor: string[];
        pricing: {
            cachedDiscount?: number;
            currency?: string;
            inputPerM: number;
            notes?: string;
            outputPerM: number;
            perRequest?: number;
            sourceUrl?: string;
            updatedAt?: string;
        };
        provider: string;
        scores: { quality: number; speed: number };
    }
    Index

    Properties

    capabilities: {
        audio: boolean;
        contextWindow: number;
        files: boolean;
        jsonMode: boolean;
        maxOutput: number;
        streaming: boolean;
        tools: boolean;
        video: boolean;
        vision: boolean;
    }
    deprecated: boolean
    local: boolean
    model: string
    optimizedFor: string[]
    pricing: {
        cachedDiscount?: number;
        currency?: string;
        inputPerM: number;
        notes?: string;
        outputPerM: number;
        perRequest?: number;
        sourceUrl?: string;
        updatedAt?: string;
    }
    provider: string
    scores: { quality: number; speed: number }