Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Full stack generative and Agentic AI with python
Bestseller
Rating: 4.5 out of 5(7,975 ratings)
54,677 students

Full stack generative and Agentic AI with python

Hands-on guide to modern AI: Tokenization, Agents, RAG, Vector DBs, and deploying scalable AI apps. Complete AI course
Last updated 12/2025
English

What you'll learn

  • Write Python programs from scratch, using Git for version control and Docker for deployment.
  • Use Pydantic to handle structured data and validation in Python applications.
  • Understand how Large Language Models (LLMs) work: tokenization, embeddings, attention, and transformers.
  • Call and integrate APIs from OpenAI and Gemini with Python.
  • Design effective prompts: zero-shot, one-shot, few-shot, chain-of-thought, persona-based, and structured prompting.
  • Run and deploy models locally using Ollama, Hugging Face, and Docker.
  • Implement Retrieval-Augmented Generation (RAG) pipelines with LangChain and vector databases.
  • Use LangGraph to design stateful AI systems with nodes, edges, and checkpointing.
  • Understand Model Context Protocol (MCP) and build MCP servers with Python.

Course content

33 sections256 lectures32h 33m total length
  • Installation of Tools (VSCode and Python)2:34

    This video serves as a brief guide for setting up the developer environment for an agentic AI course using Python. The instructor emphasizes that the necessary tools are free and likely already installed on most machines.

    The three key tools required for the course are:

    1. IDE (Integrated Development Environment): The instructor highly recommends using Visual Studio Code (VS Code), noting that while other IDEs can be used, VS Code is ideal for following along with the tutorials. He directs viewers to download it for their specific operating system.

    2. Python: The course assumes viewers have a basic understanding of Python concepts like variables, functions, and classes. It is mandatory to have Python installed on your machine. The instructor confirms his own machine runs Python version 3.12.3 and assures viewers that the installation process is a simple "next, next, next" procedure from the official Python website.

    3. Large Language Model (LLM) Account: Since the course focuses on agentic AI, viewers will need access to an LLM. The instructor specifically mentions using OpenAI (e.g., ChatGPT) and Gemini. He notes that a future video will provide detailed instructions on how to set up an account and add credits to these services.

    In summary, the video outlines the essential, freely available tools—a code editor, the Python interpreter, and an LLM account—that form the foundation of the course.

  • VS Code Setup (Extensions and Themes)1:50

    This video addresses a common viewer request by detailing the instructor's Visual Studio Code (VS Code) setup for Python development. He shares his preferred theme and a list of essential extensions to help viewers replicate his coding environment. The instructor notes that this video is optional but highly recommended for those who want to follow along seamlessly.

    The key extensions and themes mentioned are:

    • Theme: The instructor uses the Aumiraj Dark Border theme for his VS Code setup, which gives his editor its distinctive look.

    • Icons: For file and folder icons, he recommends the Material Icon Theme, which provides clear visual cues for different file types.

    • Python Language Support: He highlights the official Python extension and the Pylance extension from Microsoft. Pylance is crucial for advanced features like code completion, type checking, and navigation, which significantly boost productivity.

    • Formatting and Other Tools: The Prettier extension is mentioned for its role in automated code formatting, ensuring a consistent style across the project. He also lists several Docker-related extensions (e.g., Docker, Dev Containers) and a Python Debugger extension as useful additions.

    This curated list of tools provides a solid foundation for any developer working with Python, particularly in the context of the upcoming agentic AI course material.

  • Get your code files here0:02

    Get your code files for this section here

Requirements

  • No prior AI knowledge is required — we start from the basics.
  • A computer (Windows, macOS, or Linux) with internet access.
  • Basic programming knowledge is helpful but not mandatory (the course covers Python from scratch).

Description

Welcome to the Complete AI & LLM Engineering Bootcamp – your one-stop course to learn Python, Git, Docker, Pydantic, LLMs, Agents, RAG, LangChain, LangGraph, and Multi-Modal AI from the ground up.

This is not just another theory course. By the end, you will be able to code, deploy, and scale real-world AI applications that use the same techniques powering ChatGPT, Gemini, and Claude.

What You’ll Learn

Foundations

  • Python programming from scratch — syntax, data types, OOP, and advanced features.

  • Git & GitHub essentials — branching, merging, collaboration, and professional workflows.

  • Docker — containerization, images, volumes, and deploying applications like a pro.

  • Pydantic — type-safe, structured data handling for modern Python apps.

AI Fundamentals

  • What are LLMs and how GPT works under the hood.

  • Tokenization, embeddings, attention, and transformers explained simply.

  • Understanding multi-head attention, positional encodings, and the "Attention is All You Need" paper.

Prompt Engineering

  • Master prompting strategies: zero-shot, one-shot, few-shot, chain-of-thought, persona-based prompts.

  • Using Alpaca, ChatML, and LLaMA-2 formats.

  • Designing prompts for structured outputs with Pydantic.

Running & Using LLMs

  • Setting up OpenAI & Gemini APIs with Python.

  • Running models locally with Ollama + Docker.

  • Using Hugging Face models and INSTRUCT-tuned models.

  • Connecting LLMs to FastAPI endpoints.

Agents & RAG Systems

  • Build your first AI Agent from scratch.

  • CLI-based coding agents with Claude.

  • The complete RAG pipeline — indexing, retrieval, and answering.

  • LangChain: document loaders, splitters, retrievers, and vector stores.

  • Advanced RAG with Redis/Valkey Queues for async processing.

  • Scaling RAG with workers and FastAPI.

LangGraph & Memory

  • Introduction to LangGraph — state, nodes, edges, and graph-based AI.

  • Adding checkpointing with MongoDB.

  • Memory systems: short-term, long-term, episodic, semantic memory.

  • Implementing memory layers with Mem0 and Vector DB.

  • Graph memory with Neo4j and Cypher queries.

Conversational & Multi-Modal AI

  • Build voice-based conversational agents.

  • Integrate speech-to-text (STT) and text-to-speech (TTS).

  • Code your own AI voice assistant for coding (Cursor IDE clone).

  • Multi-modal LLMs: process images and text together.

Model Context Protocol (MCP)

  • What is MCP and why it matters for AI apps.

  • MCP transports: STDIO and SSE.

  • Coding an MCP server with Python.

Real-World Projects You’ll Build

  • Tokenizer from scratch.

  • Local Ollama + FastAPI AI app.

  • Python CLI-based coding assistant.

  • Document RAG pipeline with LangChain & Vector DB.

  • Queue-based scalable RAG system with Redis & FastAPI.

  • AI conversational voice agent (STT + GPT + TTS).

  • Graph memory agent with Neo4j.

  • MCP-powered AI server.

Who Is This Course For?

  • Beginners who want a complete start-to-finish course on Python + AI.

  • Developers who want to build real-world AI apps using LLMs, RAG, and LangChain.

  • Data Engineers/Backend Developers looking to integrate AI into existing stacks.

  • Students & Professionals aiming to upskill in modern AI engineering.

Why Take This Course?

This course combines theory, coding, and deployment in one place. You’ll start from the basics of Python and Git, and by the end, you’ll be coding cutting-edge AI applications with LangChain, LangGraph, Ollama, Hugging Face, and more.

Unlike other courses, this one doesn’t stop at “calling APIs.” You will go deeper into system design, queues, scaling, memory, and graph-powered AI agents — everything you need to stand out as an AI Engineer.

By the end of this course, you won’t just understand AI—you’ll be able to build it.

Who this course is for:

  • Beginners who want a step-by-step path into AI, Python, and modern development tools.
  • Developers who want to learn how to integrate LLMs, RAG, and agents into real-world applications.
  • Data engineers and backend developers looking to upgrade their skills with AI-powered systems.
  • Students and professionals who want to stand out in the job market with cutting-edge AI engineering knowledge.