openpaul
    Preparing search index...

    Interface ModelOptions

    Model Options - Provider-specific configuration

    Matches OpenCode's model configuration options

    interface ModelOptions {
        maxTokens?: number;
        reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh";
        temperature?: number;
        thinking?: { budgetTokens?: number; type: "enabled" | "disabled" };
        topP?: number;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    maxTokens?: number
    reasoningEffort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh"
    temperature?: number
    thinking?: { budgetTokens?: number; type: "enabled" | "disabled" }
    topP?: number