UNPKG

@llumiverse/drivers

Version:

LLM driver implementations. Currently supported are: openai, huggingface, bedrock, replicate.

20 lines 651 B
import { DriverOptions } from "@llumiverse/core"; import { AzureOpenAI } from "openai"; import { BaseOpenAIDriver } from "./index.js"; export interface AzureOpenAIDriverOptions extends DriverOptions { /** * The credentials to use to access Azure OpenAI */ azureADTokenProvider?: any; apiKey?: string; endpoint?: string; apiVersion?: string; deployment?: string; } export declare class AzureOpenAIDriver extends BaseOpenAIDriver { service: AzureOpenAI; provider: "azure_openai"; constructor(opts: AzureOpenAIDriverOptions); getDefaultAuth(): () => Promise<string>; } //# sourceMappingURL=azure.d.ts.map