diff --git a/sdks/nodejs-client/index.d.ts b/sdks/nodejs-client/index.d.ts index cf1d825221..7fdd943f63 100644 --- a/sdks/nodejs-client/index.d.ts +++ b/sdks/nodejs-client/index.d.ts @@ -14,15 +14,6 @@ interface HeaderParams { interface User { } -interface ChatMessageConfig { - inputs: any; - query: string; - user: User; - stream?: boolean; - conversation_id?: string | null; - files?: File[] | null; -} - export declare class DifyClient { constructor(apiKey: string, baseUrl?: string); @@ -54,7 +45,14 @@ export declare class CompletionClient extends DifyClient { } export declare class ChatClient extends DifyClient { - createChatMessage(config: ChatMessageConfig): Promise; + createChatMessage( + inputs: any, + query: string, + user: User, + stream?: boolean, + conversation_id?: string | null, + files?: File[] | null + ): Promise; getConversationMessages( user: User,