Interface LLMParameters

interface LLMParameters {
    maxTokens?: number;
    model?: string;
    temperature?: number;
    toolChoice?: { name?: string; type: "auto" | "tool" | "any" };
    tools?: ToolDefinition[];
}

Properties

maxTokens?: number
model?: string
temperature?: number
toolChoice?: { name?: string; type: "auto" | "tool" | "any" }
tools?: ToolDefinition[]