Skip to content
Learn Agentic AI
Learn Agentic AI archive page 39 of 146

Learn Agentic AI — Build Voice & Chat Agents

Step-by-step tutorials on building voice and chat AI agents using OpenAI Agents SDK, Realtime API, function calling, multi-agent orchestration, and production deployment patterns.

9 of 1313 articles

Learn Agentic AI
11 min read2Mar 16, 2026

Instructor Library: The Easiest Way to Get Typed Outputs from LLMs

Get started with the Instructor library to extract typed, validated Python objects from LLM responses. Covers setup, OpenAI patching, automatic retry logic, and validation-based error correction.

Learn Agentic AI
11 min read1Mar 16, 2026

Implementing Agent Checkpoints: Save and Resume Long-Running Agent Tasks

Learn how to implement checkpointing for AI agents — serializing agent state, persisting progress to disk or database, and resuming interrupted tasks with idempotent operations and recovery strategies.

Learn Agentic AI
12 min read1Mar 16, 2026

Building Composable Tool Libraries: Reusable Tools Across Multiple Agents

Learn how to build tool registries, tool factories, and shared tool modules that work across multiple agents. Covers composable design patterns, parameterized tools, dependency injection, and packaging tools for reuse.

Learn Agentic AI
10 min read1Mar 16, 2026

Introduction to Multi-Agent Systems: Why One Agent Is Not Enough

Discover why single-agent architectures hit a ceiling for complex tasks and how multi-agent systems use specialization, parallel execution, and separation of concerns to build more reliable AI workflows.

Learn Agentic AI
11 min read0Mar 16, 2026

The Orchestrator Pattern: A Manager Agent That Delegates to Specialists

Learn how to build an orchestrator agent that breaks complex tasks into subtasks, delegates to specialist agents, aggregates results, and delivers a unified response using the OpenAI Agents SDK.

Learn Agentic AI
11 min read0Mar 16, 2026

Agent Handoffs: Seamlessly Transferring Conversations Between Specialized Agents

Learn how to implement clean agent handoffs using the OpenAI Agents SDK, including handoff triggers, context transfer, conversation continuity, and patterns for preserving user experience across agent boundaries.

Learn Agentic AI
11 min read1Mar 16, 2026

Building a Triage Agent: Intelligent Request Routing to the Right Specialist

Build a triage agent that classifies incoming requests, routes them to the correct specialist agent with confidence scoring, and handles ambiguous or unclassifiable inputs with fallback strategies.

Learn Agentic AI
12 min read0Mar 16, 2026

Shared State in Multi-Agent Systems: Coordinating Data Between Agents

Master shared state management in multi-agent systems using the OpenAI Agents SDK's RunContext, including shared context objects, state mutation patterns, race conditions, and consistency strategies.