@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
26 lines • 929 B
TypeScript
export { ConversationContextManager } from "./context-manager";
export type { ConversationConfig, MessageSummary } from "./context-manager";
export { PromptManager } from "./prompt-manager";
export type { PromptTemplate, PromptContext } from "./prompt-manager";
export { RAGChatbot } from "./chatbot";
export type { ChatbotConfig, ChatResponse, ChatRequest } from "./chatbot";
import { RAGChatbot } from "./chatbot";
export declare function createRAGChatbot(config: {
ragEngine: any;
llmConfig: {
apiKey: string;
modelName: string;
temperature?: number;
maxTokens?: number;
};
options?: {
defaultPromptTemplate?: string;
languageDetection?: boolean;
retrievalConfig?: {
topK?: number;
minScore?: number;
searchMethod?: "hybrid" | "vector" | "keyword";
};
};
}): RAGChatbot;
//# sourceMappingURL=index.d.ts.map