interface LLMOptions {
    apiKey?: string;
    baseURL?: string;
    client?: OpenAI;
    gzipCompression?: boolean;
    model: string;
    msgpackEncoding?: boolean;
    parallelToolCalls?: boolean;
    temperature?: number;
    toolChoice?: llm.ToolChoice;
    user?: string;
}

Properties

apiKey?: string
baseURL?: string
client?: OpenAI
gzipCompression?: boolean
model: string
msgpackEncoding?: boolean
parallelToolCalls?: boolean
temperature?: number
toolChoice?: llm.ToolChoice
user?: string