ai-platform-converter
Version:
Lossless API parameter conversion between multiple AI platforms (OpenAI, Anthropic, Gemini, DeepSeek, Wenwen, Vertex AI, Huawei, BigModel)
16 lines • 678 B
TypeScript
/**
* Convert OpenAI response to DeepSeek format
*/
import { OpenAIResponse } from '../../types/openai';
import { DeepSeekResponse } from '../../types/deepseek';
import { ConvertOptions } from '../../types/common';
/**
* Convert OpenAI response to DeepSeek format
* DeepSeek uses OpenAI-compatible response format
*/
export declare function convertOpenAIResponseToDeepSeek(response: OpenAIResponse, options?: ConvertOptions): DeepSeekResponse;
/**
* Convert DeepSeek response to OpenAI format
*/
export declare function convertDeepSeekResponseToOpenAI(response: DeepSeekResponse, options?: ConvertOptions): OpenAIResponse;
//# sourceMappingURL=openai-to-deepseek.d.ts.map