@squidcloud/client
    Preparing search index...

    Interface BackupModelOptions

    A backup model together with the sampling settings to run it with. Use this form instead of a bare AiChatModelSelection when the backup needs settings of its own; anything left unset takes the backup model's own default rather than the primary model's value.

    interface BackupModelOptions {
        maxOutputTokens?: number;
        maxTokens?: number;
        model: AiChatModelSelection;
        reasoningEffort?: AiReasoningEffort;
        temperature?: number;
        verbosity?: AiVerbosityLevel;
    }
    Index
    maxOutputTokens?: number

    The maximum number of tokens the backup model should output.

    maxTokens?: number

    The maximum number of input tokens Squid may send to the backup model.

    The model to fall back to.

    reasoningEffort?: AiReasoningEffort

    The level of reasoning effort to apply; effective only for models with reasoning.

    temperature?: number

    The temperature to use when sampling from the backup model.

    verbosity?: AiVerbosityLevel

    Response length and detail level; supported by OpenAI models only.