Langflow
v1.8 — 2026 Edition. A comprehensive technical audio course on building AI applications with Langflow 1.8, moving from visual prototyping to production backend deployment.
Episodes
The Langflow Paradigm
3m 21sThis episode covers the core identity of the framework and how its visual interface translates to backend execution. Listeners will learn how application logic is structured as a Directed Acyclic Graph, allowing for seamless transitions from rapid prototyping to production APIs.
Component Architecture and Data Types
3m 49sThis episode covers the anatomy of a component, including input and output ports, and core data types like Data and Message. Listeners will learn how strict typing and port colors dictate the flow of information across the graph.
Interfacing with the Graph
3m 28sThis episode covers the Chat Input and Chat Output components, as well as the internal structure of Message objects. Listeners will learn how metadata like session IDs and timestamps are wrapped into messages to track conversational context.
The Language Model Abstraction
3m 46sThis episode covers the Language Model core component and global provider configurations. Listeners will learn how to abstract LLM connections and dynamically switch output port behavior for downstream integrations.
Intelligent Execution Engines
3m 41sThis episode covers the Agent component and its role as an autonomous reasoning engine. Listeners will learn how built-in memory capabilities enable dynamic decision making beyond simple static prompts.
Equipping Agents with Tool Mode
3m 26sThis episode covers the mechanics of Tool Mode, which converts inert components into actionable agent functions. Listeners will learn how to configure tool descriptions to perfectly guide agent decision-making.
Multi-Agent Compositions
3m 09sThis episode covers the architectural strategy of nesting sub-flows and using secondary agents as tools. Listeners will learn how to build hierarchical, multi-agent systems for complex task routing.
The Model Context Protocol Client
3m 29sThis episode covers the MCP Tools component and its ability to connect external server tools directly to your agents. Listeners will learn how the Model Context Protocol replaces standard REST API wrappers for agent context.
Exposing Flows as MCP Servers
3m 16sThis episode covers turning your Langflow projects into universal MCP tools for external clients. Listeners will learn how to configure streamable HTTP transports and craft robust tool descriptions for remote IDEs.
State and Session Management
3m 27sThis episode covers memory persistence and strict session isolation across chat turns. Listeners will learn to differentiate between Agent memory and the Message History component for robust linear conversation tracking.
Grounding the LLM with Vector Stores
3m 13sThis episode covers the architectural best practices for building Retrieval Augmented Generation pipelines. Listeners will learn how to decouple asynchronous data ingestion from real-time semantic search.
Extending the Engine via Python
3m 07sThis episode covers the foundational creation of custom Python components within the framework. Listeners will learn how strict class-level annotations map internal code logic to visual UI nodes.
Advanced Component Hooks and Execution
3m 51sThis episode covers the internal execution engine lifecycle and advanced state-sharing techniques. Listeners will learn to override setup hooks and utilize context dictionaries for complex state persistence.
The Langflow API and Dynamic Tweaks
3m 23sThis episode covers executing graphs programmatically via the REST API. Listeners will learn how to use the Input Schema to inject runtime parameter overrides without altering the underlying flow.
Production Containerization
3m 48sThis episode covers the transition from visual development to headless production deployments. Listeners will learn how to construct Dockerfiles, lock dependencies, and mount custom components securely.