UNPKG

@restnfeel/agentc-starter-kit

Version:

한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템

29 lines (22 loc) 840 B
/** * @fileoverview Client component exports for the RAG chatbot system * @module client/components * * This module provides customer-facing chatbot components for embedding * into applications and websites. */ // Chatbot Demo Component export { default as ChatbotDemo } from "./chatbot-demo"; // Chat Widget Components export { default as ChatbotWidget } from "./chatbot-widget"; export { default as ChatDock } from "./chat-dock"; export { default as FloatingChatButton } from "./floating-chat-button"; // RAG Chat Component // UI Components export { default as SuggestedQuestions } from "./suggested-questions"; // Internationalization export { I18nProvider, useI18n } from "./i18n-context"; // Configuration exports export * from "./i18n-config"; export * from "./theme-config"; export * from "./suggested-questions-config";