UNPKG

@yk1028-test/ai-chat-supporter

Version:

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

13 lines 370 B
import { BaseOutputData } from './base'; export interface ChatOutputData extends BaseOutputData { type: 'chat'; message: string; confidence?: number; conversationId?: string; persona?: string; sources?: string[]; } export declare class ChatOutputValidator { static validate(data: ChatOutputData): boolean; } //# sourceMappingURL=chat.d.ts.map