UNPKG

@yk1028-test/ai-chat-supporter

Version:

AI Chat Supporter - TypeScript library for intelligent chat processing with LangChain integration

9 lines 265 B
import { BaseInputData } from './base'; export interface ChatInputData extends BaseInputData { type: 'chat'; message: string; } export declare class ChatInputValidator { static validate(data: ChatInputData): boolean; } //# sourceMappingURL=chat.d.ts.map