LLM Application Development With Python

Learning PathSkills: OpenAI, Ollama, OpenRouter, Prompt Engineering, LangChain, LlamaIndex, ChromaDB, MarkItDown, RAG, Embeddings, AI Agents, Pydantic AI, LangGraph, MCP

Two people operating a large machine with conveyor belts and panels labeled RAG, Agents, and MCP, alongside a robotic arm, a Python logo, and API key icons.

Large language models can do much more than answer questions in a chat window. This learning path teaches you to integrate LLMs into Python applications, from API calls to autonomous agents.

By completing this path, you’ll be able to:

  • Call LLM APIs from OpenAI, Ollama, and OpenRouter in your Python code
  • Write effective prompts that produce reliable, structured results
  • Build retrieval-augmented generation (RAG) pipelines with LlamaIndex, ChromaDB, and LangChain
  • Convert documents into LLM-ready formats with MarkItDown
  • Create stateful AI agents using Pydantic AI and LangGraph
  • Connect agents to external tools and data sources using MCP servers

This path is for Python developers who want to build applications on top of language models. You should be comfortable with Python basics and working with APIs.

You’ll start by calling model APIs directly, then move into prompt engineering, RAG pipelines, agent frameworks, and finish by connecting your agents to external tools through MCP.

LLM Application Development With Python

Learning Path ⋅ 13 Resources

Connect to LLM APIs

Every LLM application starts with a single API call. You’ll make those calls three ways, against OpenAI’s hosted models, a local model running under Ollama, and OpenRouter’s gateway to many providers at once. Seeing all three up front means you can pick the right backend for the applications you build later instead of being locked into one.

Title image for Leverage OpenAI's API in Your Python Projects (How to Integrate ChatGPT's API With Python Projects)

Course

Leverage OpenAI's API in Your Python Projects

Learn how to use the ChatGPT API with Python's openai library to send prompts, control AI behavior with roles, and get structured outputs.

Title image for How to Integrate Local LLMs With Ollama and Python (How to Integrate Local LLMs With Ollama and Python)

Tutorial

How to Integrate Local LLMs With Ollama and Python

Learn how to integrate your Python projects with local models (LLMs) using Ollama for enhanced privacy and cost efficiency.

Title image for Accessing Multiple AI Models With the OpenRouter API (How to Use the OpenRouter API to Access Multiple AI Models via Python)

Course

Accessing Multiple AI Models With the OpenRouter API

Access models from popular AI providers in Python through OpenRouter's unified API with smart routing, fallbacks, and cost controls.

Craft Effective Prompts

You can now send a request to a model and get a response back. How good that response is depends on what you ask for, so next you’ll work through prompt engineering techniques that turn vague instructions into reliable, structured output. Those techniques carry over to every framework and agent you build later in this path.

Title image for Prompt Engineering: A Practical Example (Prompt Engineering: A Practical Example)

Tutorial

Prompt Engineering: A Practical Example

Learn prompt engineering techniques with a practical, real-world project to get better results from large language models. This tutorial covers zero-shot and few-shot prompting, delimiters, numbered steps, role prompts, chain-of-thought prompting, and more. Improve your LLM-assisted projects today.

Title image for Practical Prompt Engineering (Prompt Engineering: A Practical Example)

Interactive Quiz

Practical Prompt Engineering

Work With LLM Frameworks

Hand-rolling API calls and prompts works, but it gets repetitive once an application grows. With LangChain, you’ll wrap those calls into reusable chains and pipelines, composing prompts, models, and output parsers instead of wiring them together by hand. That composition model is what the retrieval and agent work later in the path builds on.

Title image for First Steps With LangChain (Build an LLM RAG Chatbot With LangChain)

Course

First Steps With LangChain

Large language models (LLMs) have taken the world by storm. In this step-by-step video course, you'll learn to use the LangChain library to build LLM-assisted applications.

Title image for First Steps With LangChain (Build an LLM RAG Chatbot With LangChain)

Interactive Quiz

First Steps With LangChain

Add Retrieval-Augmented Generation (RAG)

LangChain gives you the plumbing, but a model still only knows what it was trained on. Next, you’ll ground your applications in your own data with embeddings, vector databases, and document conversion, then combine those pieces into a working RAG chatbot. Retrieval is what lets an application answer questions about information it has never seen.

Title image for Using LlamaIndex for RAG in Python (Python LlamaIndex: Step by Step RAG With Examples)

Course

Using LlamaIndex for RAG in Python

Learn how to set up LlamaIndex, load your data, build and persist an index, and run queries to get grounded answers with RAG in Python.

Title image for Vector Databases and Embeddings With ChromaDB (Embeddings and Vector Databases With ChromaDB)

Course

Vector Databases and Embeddings With ChromaDB

Learn how to use ChromaDB, an open-source vector database, to store embeddings and give context to large language models in Python.

Title image for Python MarkItDown: Convert Documents Into LLM-Ready Markdown (Python MarkItDown: Convert Documents Into LLM-Ready Markdown)

Tutorial

Python MarkItDown: Convert Documents Into LLM-Ready Markdown

Get started with Python MarkItDown to turn PDFs, Office files, images, and URLs into clean, LLM-ready Markdown in seconds.

Title image for Build an LLM RAG Chatbot With LangChain (Build an LLM RAG Chatbot With LangChain)

Tutorial

Build an LLM RAG Chatbot With LangChain

Large language models (LLMs) have taken the world by storm, demonstrating unprecedented capabilities in natural language tasks. In this step-by-step tutorial, you'll leverage LLMs to build your own retrieval-augmented generation (RAG) chatbot using synthetic data with LangChain and Neo4j.

Build AI Agents

Your RAG pipeline retrieves information, but you still decide every step it takes. Next, you’ll build agents that decide for themselves, using Pydantic AI for type-safe tool calls and LangGraph for stateful, multi-step workflows. Once an agent can plan its own steps, the useful question becomes what tools you hand it.

Title image for Building Type-Safe LLM Agents With Pydantic AI (PydanticAI: Typed LLM Agents With Structured Outputs)

Course

Building Type-Safe LLM Agents With Pydantic AI

Build type-safe LLM agents in Python with Pydantic AI using structured outputs, function calling, and dependency injection.

Title image for LangGraph Tutorial: Build Stateful AI Agents in Python (LangGraph: Build Stateful AI Agents in Python)

Tutorial

LangGraph Tutorial: Build Stateful AI Agents in Python

Learn LangGraph in Python with hands-on examples and build stateful, multi-agent AI agents that manage memory, cycles, and complex LLM workflows.

Connect Agents to External Tools With MCP

Your agents can reason and call tools, but every one of those tools has to be wired up by hand. The Model Context Protocol standardizes that wiring, and you’ll build both a Python MCP server that exposes your data and a client that exercises it from the terminal. That gives your agents a reusable way to reach databases, APIs, and files.

Title image for Connecting LLMs to Your Data With Python MCP Servers (Python MCP: Connect Your LLM With the World)

Course

Connecting LLMs to Your Data With Python MCP Servers

Build an MCP server in Python that exposes tools, resources, and prompts so AI agents like Cursor can interact with your data.

Title image for Testing MCP Servers With a Python MCP Client (Build a Python MCP Client to Test Servers From Your Terminal)

Course

Testing MCP Servers With a Python MCP Client

Learn how to build a Python MCP client that tests MCP servers from your terminal. List their tools, prompts, and resources, then call each one.

Congratulations on completing this learning path! You can now call LLM APIs, craft prompts that produce reliable output, build LangChain pipelines and RAG systems over your own data, create AI agents, and connect them to external tools using MCP.

Continue with the next learning path in the AI and machine learning section:

Learning Path

Machine Learning With Python

31 Resources ⋅ Skills: Image Processing, Computer Vision, Text Classification, Speech Recognition, NLP, Deep Learning, LLMs, RAG

You might also be interested in these related learning paths:

Got feedback on this learning path?

Looking for real-time conversation? Visit the Real Python Community Chat or join the next “Office Hours” Live Q&A Session. Happy Pythoning!

« Browse All Learning Paths