@deskcreate/agentcraft
    Preparing search index...

    Interface OpenAICompatCloudConfig

    interface OpenAICompatCloudConfig {
        apiKey: string;
        baseUrl?: string;
        frequencyPenalty?: number;
        maxTokens?: number;
        model: string;
        name?: string;
        presencePenalty?: number;
        provider:
            | "groq"
            | "mistral"
            | "together"
            | "fireworks"
            | "perplexity"
            | "openrouter"
            | "anyscale"
            | "novita"
            | "xai"
            | "cerebras";
        responseFormat?: ResponseFormat;
        stopSequences?: string[];
        temperature?: number;
        timeout?: number;
        topP?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    apiKey: string
    baseUrl?: string
    frequencyPenalty?: number
    maxTokens?: number
    model: string
    name?: string
    presencePenalty?: number
    provider:
        | "groq"
        | "mistral"
        | "together"
        | "fireworks"
        | "perplexity"
        | "openrouter"
        | "anyscale"
        | "novita"
        | "xai"
        | "cerebras"
    responseFormat?: ResponseFormat
    stopSequences?: string[]
    temperature?: number
    timeout?: number
    topP?: number