@deskcreate/agentcraft
    Preparing search index...

    Interface CohereModelConfig

    interface CohereModelConfig {
        apiKey: string;
        frequencyPenalty?: number;
        maxTokens?: number;
        model: string;
        name?: string;
        presencePenalty?: number;
        provider: "cohere";
        responseFormat?: ResponseFormat;
        stopSequences?: string[];
        temperature?: number;
        timeout?: number;
        topP?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    apiKey: string
    frequencyPenalty?: number
    maxTokens?: number
    model: string
    name?: string
    presencePenalty?: number
    provider: "cohere"
    responseFormat?: ResponseFormat
    stopSequences?: string[]
    temperature?: number
    timeout?: number
    topP?: number