UNPKG

@restnfeel/agentc-starter-kit

Version:

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

57 lines (51 loc) 1.49 kB
/** * @fileoverview Client components exports for the RAG chatbot system * @module client * * This module provides customer-facing components and hooks for integrating * the RAG chatbot into client applications and websites. */ // Component exports export { ChatDock } from "./components/chat-dock"; export { ChatbotDemo } from "./components/chatbot-demo"; export { ChatbotWidget } from "./components/chatbot-widget"; export { FloatingChatButton } from "./components/floating-chat-button"; export { SuggestedQuestions } from "./components/suggested-questions"; // Context & Configuration exports export { I18nProvider, useI18n } from "./components/i18n-context"; // Configuration exports (types and constants) export type { ChatbotTranslations, SupportedLanguage, LanguageInfo, } from "./components/i18n-config"; export { translations, languages, detectBrowserLanguage, t, isRTL, adjustTextLength, } from "./components/i18n-config"; export type { SuggestedQuestion, QuestionCategory, } from "./components/suggested-questions-config"; export { DEFAULT_QUESTIONS, QUESTION_CATEGORIES, CONTEXTUAL_QUESTIONS, QuestionAnalytics, } from "./components/suggested-questions-config"; export type { ChatbotTheme, ThemeName } from "./components/theme-config"; export { defaultTheme, darkTheme, compactTheme, themes, getThemeVariables, applyTheme, createThemeStylesheet, generateThemeClasses, useTheme, } from "./components/theme-config";