betav1.0.0
AI RAG Pipeline
Retrieval-Augmented Generation pipeline with vector search, document ingestion, and @dcyfr/ai integration.
Code Preview
{
"name": "@dcyfr/ai-rag",
"version": "1.0.0",
"description": "Retrieval-Augmented Generation pipeline with vector search, document ingestion, and @dcyfr/ai integration.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"@dcyfr/ai": "^1.0.0",
"next": "^15",
"react": "^19",
"react-dom": "^19"
}
}Setup
1
Clone the template
npx create-dcyfr-app my-app --template dcyfr-ai-rag2
Install dependencies
cd my-app && npm install3
Configure environment
cp .env.example .env.local4
Start developing
npm run dev