interface LLMRequest {
    apiKey?: string;
    input: Message[];
    max_tokens?: number;
    model: string;
    schema?: Record<string, any>;
    schema_name?: string;
    temperature?: number;
}

Properties

apiKey?: string
input: Message[]
max_tokens?: number
model: string
schema?: Record<string, any>
schema_name?: string
temperature?: number