@yk1028-test/ai-chat-supporter
Version:
AI Chat Supporter - TypeScript library for intelligent chat processing with LangChain integration
11 lines • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChatOutputValidator = void 0;
// 채팅 출력 데이터 검증
class ChatOutputValidator {
static validate(data) {
return !!(data.type === 'chat' && data.message && data.timestamp);
}
}
exports.ChatOutputValidator = ChatOutputValidator;
//# sourceMappingURL=chat.js.map