@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
26 lines (24 loc) • 688 B
JavaScript
"use client";
// Main RAG Engine
// Utility function to create a simple RAG configuration
function createDefaultRAGConfig(llmApiKey, vectorStorePath = "./store", chunkSize = 1000, chunkOverlap = 200) {
return {
embeddingModel: "text-embedding-3-small",
chunkSize,
chunkOverlap,
vectorStorePath,
supabaseConfig: {
url: "",
anonKey: "",
bucket: "documents",
},
llmConfig: {
modelName: "gpt-3.5-turbo",
temperature: 0.7,
maxTokens: 1000,
apiKey: llmApiKey,
},
};
}
export { createDefaultRAGConfig };
//# sourceMappingURL=index.js.map