import type { ILLMProvider, LLMMessage, OpenAICompatProviderConfig } from "./types.js"; export declare class OpenAICompatProvider implements ILLMProvider { private readonly client; private readonly model; constructor(config: OpenAICompatProviderConfig); ping(): Promise; complete(messages: LLMMessage[]): Promise; } //# sourceMappingURL=openai-compat.d.ts.map