import { ChatCompletionContentPart } from "openai/resources/chat"; import { LLMResponse, LLMOptions, OpenAIResponseFormat } from "../types"; /** * Makes a call to the Deepseek AI API. * * @param content The content to pass to the LLM. Can be a string or an array of content parts. * @param responseFormat The format of the response. Defaults to 'json'. * @param options Configuration options including model ('deepseek-chat' or 'deepseek-reasoner'), tools, and apiKey. * @return A promise that resolves to the response from the Deepseek API. */ export declare const makeDeepseekCall: (content: string | ChatCompletionContentPart[], responseFormat?: OpenAIResponseFormat, options?: LLMOptions) => Promise>;