Learn it. Build it. Ship it for others.
Hands-on agentic AI labs, workflows, and deployments
This repository is a broad learning lab for building agentic AI systems with LangChain, LangGraph, AutoGen, MCP, and n8n. It walks through foundational notebooks, orchestration patterns, guardrails, RAG, memory, and deployment examples, then caps it off with end-to-end projects.
Builders who want worked examples for agent workflows, tool integrations, and production-style AI apps.
You can learn, copy, and adapt real examples instead of starting from a blank notebook.
What it does
LangGraph workflow examples
Covers StateGraph, tools, multi-agent networks, supervisor patterns, and human-in-the-loop flows.
AutoGen team patterns
Shows async agents, tools, group chat setups, swarm-style teams, and graph-based orchestration.
MCP integrations
Includes MCP examples for web search, browser use, and custom server/client setups.
RAG and memory labs
Walks through embeddings, vector search, hybrid retrieval, Mem0 memory, and production RAG patterns.
Automation and deployment
Includes n8n workflows, Docker-based runs, vLLM serving, and cloud deployment examples.
End-to-end sample apps
Contains larger projects like a chatbot, ATS, AI interviewer, and multi-agent blog writer.
How to get it
- 1Run
git clone https://github.com/MDalamin5/End-to-End-Agentic-Ai-Automation-Lab.git cd End-to-End-Agentic-Ai-Automation-Lab
- 2It is recommended to use conda or venv to manage dependencies.
python -m venv venv source venv/bin/activate # On Windows use: venv\Scripts\activate
- 3Dependencies may vary per module. Navigate to the specific project folder and installβ¦
cd 18-e2e-chatbot-mem0-tools-HITL-MCP-RAG pip install -r requirements.txt
README
π€ End-to-End Agentic AI & Automation Lab
A comprehensive, production-grade repository for building, deploying, and managing intelligent AI agents, RAG pipelines, and automated workflows.
Overview β’ Key Highlights β’ Project Architecture β’ Tech Stack β’ Getting Started
π Overview
Welcome to the End-to-End Agentic AI Automation Lab. This repository is a massive, hands-on engineering playbook demonstrating how to transition from basic LLM API calls to complex, multi-agent autonomous systems and production-ready AI products.
Whether you are looking to build highly reliable Agentic workflows using LangGraph, orchestrate multi-agent collaboration via AutoGen, implement cutting-edge Model Context Protocol (MCP), or serve fine-tuned local models using vLLM and Unsloth, this repository has you covered.
π Key Highlights
- Advanced Agentic Frameworks: Deep dives into LangGraph (StateGraphs, subgraphs, memory, HITL) and AutoGen (RoundRobin, Swarm, custom tools).
- Model Context Protocol (MCP): Industry-grade implementations of Anthropic's MCP for tool execution, web search, and Notion integration.
- Production RAG Systems: Implementation of Hybrid Search, BM25, LlamaParse, Semantic Routing, and Long/Short-Term Memory (Mem0).
- AI Workflow Automation: Zero-code/low-code multi-agent orchestration using n8n and LangFlow.
- LLM Fine-Tuning & Serving: Hands-on pipelines for fine-tuning with LoRA/Unsloth and deploying high-throughput inference endpoints with vLLM.
- End-to-End Products: Complete full-stack implementations of an AI Interviewer, a Production ATS, and SynapseAI (a stateful, persistent chatbot).
π Repository Modules & Projects
The lab is structured progressively. Click to expand each module to see the underlying projects:
1οΈβ£ Foundations & Data Ingestion (Modules 01 - 02)
01-Pydantic-Data-Validation: Data structuring, field validation, and structured LLM outputs.02-LangChain-Basics: Embedding models, VectorDBs (FAISS, Pinecone), and basic Retrieval-Augmented Generation (RAG) scratchpads.
2οΈβ£ LangGraph & Workflow Orchestration (Modules 03 - 04, 13 - 14)
03-LangGraph-Introduction: StateGraphs, Agentic workstations, multi-tool calling.04-LangGraph-Agentic-Workflows: Agentic RAG, Multi-Agent Supervisors, Human-in-the-Loop (HITL), and Corrective RAG (CRAG).13-e2e-Deep-Agents: Observation, evaluation, and reliable LangGraph applications.14-e2e-Ambient-Agent: Building background-running autonomous agents.
3οΈβ£ AutoGen Multi-Agent Systems (Modules 05 - 09)
05-Autogen-Introduction: Async capabilities, tools, and basic teams.06-Autogen-HITL-and-Agentic-Orchestrator: Selector Group Chats, Docker code execution, and Graph-based AutoGen.07-End-To-End-Projects-Autogen: GPT Analyzer (Modular architecture), AI Interviewer.08-Advanced-Autogen-Team: Swarm logic and Society of Mind teams.09-Autogen-RAG-and-Memory: Integratingmem0for cross-session AutoGen memory.
4οΈβ£ Model Context Protocol (MCP) & n8n (Modules 10 - 12)
10-MCP-All-You-Need: Bridging AutoGen and LangChain with MCP. Lead collector, FireCrawl MCP, and Playwright MCP.11-MCP-based-End-to-End-Products: Building fast, robust API backends utilizing MCP architectures via ngrok and FastAPI.12-n8n: High-level automations. Chain of Agents, Social Media Content Generation, parallel agent logic, and Telegram bot integrations.
5οΈβ£ Production RAG & Guardrails (Modules 17, 19)
17-Guardrails-for-llm: Implementing NeMo Guardrails for secure and constrained LLM outputs.19-Productions-RAG: Industry-practice RAG includingLlamaParse, BM25/Hybrid Search, HyDE, chunking strategies, and Reranking pipelines.
6οΈβ£ LLM Fine-Tuning & Deployment (Modules 21 - 22)
21-LLM-Deployment-vLLM: Deploying models for high-throughput generation using vLLM and accessing via LangChain SDK.22-LLM-FineTune-Deployment: Model fine-tuning using Unsloth, LoRA, HuggingFace Pipelines, and quantization setups for edge devices.
7οΈβ£ End-to-End Full-Stack Projects (Modules 18, 20, 23, 24)
18-e2e-chatbot-mem0-tools-HITL-MCP-RAG: A massive implementation of a fully-featured chatbot with long/short-term memory, PostgreSQL persistence, and streaming UI.20-e2e-Productions-grade-ATS: End-to-end Applicant Tracking System backed by Alembic, SQLModel, and LangGraph.23-e2e-multi-agent-plan-research-write-blog: A multi-agent writer architecture with a beautiful web frontend.24-SynapseAI-parsitence-chatbot: A modern API-first chatbot backend via FastAPI with complex graph routing.
π οΈ Tech Stack & Tools
Core AI/ML:
Agentic & Orchestration:
Backend & Data:
βοΈ Getting Started
1. Clone the Repository
git clone https://github.com/MDalamin5/End-to-End-Agentic-Ai-Automation-Lab.git
cd End-to-End-Agentic-Ai-Automation-Lab
2. Set Up Virtual Environment
It is recommended to use conda or venv to manage dependencies.
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
3. Install Dependencies
Dependencies may vary per module. Navigate to the specific project folder and install the requirements:
cd 18-e2e-chatbot-mem0-tools-HITL-MCP-RAG
pip install -r requirements.txt
4. Environment Variables
Copy the .env.example file (if available in the module) to .env and add your API keys (OpenAI, Anthropic, HuggingFace, etc.):
OPENAI_API_KEY="your_api_key_here"
ANTHROPIC_API_KEY="your_api_key_here"
TAVILY_API_KEY="your_api_key_here"
π€ Contributing
This repository is continuously evolving! Contributions, bug reports, and feature requests are highly welcome.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
π License & Connect
Distributed under the MIT License. See LICENSE for more information.
Files in the repo
- .vscode
- 01-Pydantic-Data-Validation
- 02-LangChain-Basics
- 03-LangGraph-Introduction
- 04-LangGraph-Agentic-Workflows
- 05-Autogen-Introduction
- 06-Autogen-HITL-and-Agentic-Orchestrator
- 07-End-To-End-Projects-Autogen
- 08-Advanced-Autogen-Team
- 09-Autogen-RAG-and-Memory-mem0
- 10-MCP-All-You-Need
- 11-MCP-based-End-to-End-Industry-Grade-Products
- 11.5-Advanced-MCP-ownMCPs
- 12-n8n
- 13-e2e-Project-Deep-Agents-With-LangGraph
- 13-e2e-Relaible-agent-LangGraph
- 14-e2e-Project-Build-Your-Own-Ambient-Agent
- 15-Browser-Automations-Through-AI-Agent
- 16-Google-Agent-Development-Kit
- 17-Guardrails-for-llm
- 18-e2e-chatbot-mem0-tools-HITL-MCP-RAG
- 19-Productions-RAG
- 2.5-LangChain-v1.0.0.1
- 20-e2e-Productions-grade-ATS
- 21-LLM-Deployment-vLLM
- 22-LLM-FineTune-Deployment
- 23-e2e-multi-agent-plan-research-write-blog
- 24-SynapseAI-parsitence-chatbot
- 25-STT-TTS
- 26-Redis-All-You-need-to-Know
- 3.5-Quickstart-LangGraph-v.1.2
- 99-MakeFile-Setup
- Google-Agent-Guide
- temp
- Test-Line
- .gitignore
- LICENSE
- README.md
- requirements.txt
- test.excalidraw.png
- testfile.pdf
- ttt.py
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More tutorials & guides
Bash is all you need - A nano claude codeβlike γagent harnessγ, built from 0 to 1
A visual, example-driven guide to Claude Code β from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
Specification and documentation for Agent Skills

π» vibe coding 101ο½The first course for AI-native product builders.

End-to-end, code-first tutorials for building production-grade GenAI agents. From prototype to enterprise deployment.