Robots Atlas>ROBOTS ATLAS

โ† Courses

Buduj agenty AI z LangChain Logo

Agentic AIIntermediate

Build AI Agents with LangChain

8 Chapters32 Lessons

The course introduces AI agent design with LangChain: from agent architecture and tools, through memory and step orchestration, to testing patterns and safer deployment of agentic applications. Lessons will be added in a later stage.

Chapters

MODULE 01

LangChain and Agent Fundamentals

0 / 4 ยท 0%

Learn the core concepts needed to build agentic applications deliberately: what LangChain is, when it makes sense, how to distinguish chains, agents, and workflows, and how to prepare a safe project environment.

  1. 1.1What LangChain Is and When It Makes Sense
  2. 1.2Agent vs Chain vs Workflow
  3. 1.3Models, Prompts, and Output Parsers
  4. 1.4Project Setup and API Keys
MODULE 02

Runnable and LCEL

0 / 4 ยท 0%

Learn the Runnable interface, basic execution modes, and how to compose simple LCEL chains: from prompt template, through model, to output parser and debugging.

  1. 2.1Runnable, invoke, batch, and stream
  2. 2.2Building Chains with LCEL
  3. 2.3Composing prompt โ†’ model โ†’ parser
  4. 2.4Debugging Simple Chains
MODULE 03

Tools for Agents

0 / 4 ยท 0%

Learn tools as controlled agent actions: how an agent chooses them, how to design custom tools, how to validate arguments, and how to safely handle errors.

  1. 3.1What a Tool Is and How an Agent Chooses It
  2. 3.2Creating Custom Tools
  3. 3.3Validating Tool Inputs
  4. 3.4Handling Tool Errors
MODULE 04

First LangChain Agent

0 / 4 ยท 0%

This chapter moves from a first one-tool agent to multiple tools, the ReAct loop, and iteration and cost limits.

  1. 4.1Agent with One Tool
  2. 4.2Agent with Multiple Tools
  3. 4.3ReAct and Step Planning
  4. 4.4Iteration Limits and Cost Control
MODULE 05

RAG for Agents

0 / 4 ยท 0%

You will learn how to connect agents to documents: from a retriever as a tool, through chunking and embeddings, to source-grounded answers and hallucination control.

  1. 5.1Retriever as an Agent Tool
  2. 5.2Chunking and Embeddings
  3. 5.3Agent Answering from Documents
  4. 5.4Reducing Hallucinations in RAG
MODULE 06

Structured Output

0 / 4 ยท 0%

You will learn how to design output schemas, enforce format, return application-ready data, and handle retries after validation errors.

  1. 6.1JSON Schema and Pydantic
  2. 6.2Enforcing Output Format
  3. 6.3Agent Returning Data to an Application
  4. 6.4Retry After Invalid Format
MODULE 07

LangGraph as the Next Step

0 / 4 ยท 0%

You will learn when a free-form agent becomes too brittle and how LangGraph helps design explicit stateful workflows with human control and checkpoints.

  1. 7.1Why Agents Alone Can Be Brittle
  2. 7.2State Graph vs Classic Agent
  3. 7.3Simple Workflow with LangGraph
  4. 7.4Human-in-the-Loop and Checkpoints
MODULE 08

Testing and Observability

0 / 4 ยท 0%

This chapter shows how to test prompts and tools, use LangSmith, read traces, and evaluate the quality of agent answers.

  1. 8.1Testing Prompts and Tools
  2. 8.2LangSmith Basics
  3. 8.3Trace, Latency, and Token Cost
  4. 8.4Evaluating Answer Quality