import type { LLMProvider, ChatCompletionRequest, ChatCompletionResponse } from "./types"; /** * Generic OpenAI-compatible client. Works with OpenAI, DeepSeek, etc. * Configured via env: * - api_key_llm or OPENAI_API_KEY or DEEPSEEK_API_KEY * - LLM_BASE_URL (default https://api.openai.com/v1) */ export declare class OpenAICompatibleProvider implements LLMProvider { private apiKey; private baseUrl; constructor(options?: { apiKey?: string; baseUrl?: string; }); createChatCompletion(request: ChatCompletionRequest): Promise; } //# sourceMappingURL=openai-compatible.d.ts.map