import type { EmbeddingsProvider } from "./types.js"; export interface CreateEmbeddingsClientOptions { baseUrl: string; model: string; apiKey?: string; path?: string; headers?: Record; authHeader?: string; authScheme?: string; clientName?: string; buildBody?: (args: { input: string[]; model: string; }) => Record; parseResponse?: (raw: string) => number[][]; } export declare function createEmbeddingsClient(options: CreateEmbeddingsClientOptions): EmbeddingsProvider;