interface InferenceLLMOptions {
    apiKey: string;
    apiSecret: string;
    baseURL: string;
    inferenceClass?: InferenceClass;
    model: LLMModels;
    modelOptions: ChatCompletionOptions;
    provider?: string;
    strictToolSchema?: boolean;
}

Properties

apiKey: string
apiSecret: string
baseURL: string
inferenceClass?: InferenceClass
model: LLMModels
modelOptions: ChatCompletionOptions
provider?: string
strictToolSchema?: boolean