This project implements a Retrieval-Augmented Generation (RAG) assistant as part of the Agentic AI Developer Certification (AAIDC) β Module 1. The assistant answers natural language questions using a custom knowledge base of simulated Ready Tensor publications, demonstrating core agentic capabilities: autonomous retrieval, context-aware generation, and goal-driven response synthesis.
The system is designed to be beginner-friendly, offline-capable, and fully self-contained β requiring no external APIs, no paid services, and no internet dependency beyond initial setup.
sentence-transformers/all-MiniLM-L6-v2 (lightweight, CPU-friendly)facebook/opt-125m via Hugging Face Transformers (open-source, no API key).txt filesWhen asked:
βWhat is RAG?β
The assistant responds:
βRAG combines retrieval from a knowledge base with LLM generation.β
When asked:
βHow is memory implemented in agentic AI?β
Response:
βMemory is implemented via conversational buffer.β
When asked:
βWhich vector databases are compared?β
Response:
βThis publication compares FAISS, Chroma, and Pinecone.β
This demonstrates accurate retrieval and concise, context-aware generation.
π Repo Link: https://github.com/R786P/P-art
The repository includes:
Rag_assistant.ipynb β Full RAG pipelinerequirements.txt β DependenciesREADME.md β Setup and usage guide.gitignore β Excluded filesAll code is clean, readable, and follows best practices for beginner-friendly AI projects.
| Requirement | Status |
|---|---|
| RAG-based assistant | β |
| Custom document ingestion | β |
| Vector store (FAISS) | β |
| LangChain integration | β |
| LLM + retriever chain | β |
| Basic UX (notebook) | β |
| Sample queries & outputs | β |
| No external API dependency | β |
This project marks my first step into agentic AI development. While simple, it demonstrates the foundational pattern of retrieval + reasoning that powers real-world AI assistants. Iβm excited to build more complex agents with memory, tools, and planning in upcoming modules!
Submitted for AAIDC Module 1 Review Cycle β November 2025