import { MinimaxAI, MinimaxAIOptions } from '@zhengxs/ai'; import { ChatLLMAPI, ChatLLMAPIOptions, ChatMessage, SendMessageOptions } from './llm-api'; export type MinimaxChatParams = Partial; export type MinimaxAPIOptions = MinimaxAIOptions & ChatLLMAPIOptions; export declare class MinimaxAPI extends ChatLLMAPI { protected api: MinimaxAI; constructor(options?: MinimaxAPIOptions); protected makeRequest(question: ChatMessage, answer: ChatMessage, options: SendMessageOptions): Promise; }