import { type OpenAIClientConfig, type OpenAICompletionsRestParams } from '../types'; import type { IOpenAIClient } from './types'; export declare class OpenAIClientSdk implements IOpenAIClient { private config; constructor(config: OpenAIClientConfig); /** * 将组装好的问题根据聊天模式传递给特定的 YuanQi Agent获取响应 */ completions(question: string, rest?: OpenAICompletionsRestParams): Promise; }