Skip to content
Learn Agentic AI
Learn Agentic AI archive page 24 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 read3Mar 16, 2026

SDK Versioning and Release: Semantic Versioning, Changelogs, and Distribution

Learn how to implement semantic versioning, generate changelogs automatically, publish to PyPI and npm, and set up CI/CD release pipelines for AI agent SDK distribution.

Learn Agentic AI
14 min read2Mar 16, 2026

Building a Resume Parser with Structured Outputs: End-to-End Tutorial

Build a complete resume parsing pipeline from PDF to structured data. Covers PDF text extraction, schema design for work experience and education, LLM extraction, validation, and output formatting.

Learn Agentic AI
12 min read4Mar 16, 2026

Handling Structured Output Failures: Retries, Fallbacks, and Partial Parsing

Build resilient structured output systems that handle LLM failures gracefully. Learn retry strategies with exponential backoff, fallback schemas, partial result recovery, and graceful degradation patterns.

Learn Agentic AI
11 min read0Mar 16, 2026

Streaming Structured Outputs: Incremental JSON Parsing for Real-Time Applications

Learn how to stream structured outputs from LLMs for real-time UI updates. Covers partial JSON parsing, streaming with Instructor and Pydantic, progressive UI rendering, and handling incomplete data.

Learn Agentic AI
13 min read0Mar 16, 2026

Validating LLM Outputs: Custom Validators, Business Rules, and Data Quality Checks

Build comprehensive validation layers for LLM outputs using Pydantic validators, cross-field validation, domain-specific constraints, and data quality scoring. Catch hallucinations before they reach your database.

Learn Agentic AI
11 min read0Mar 16, 2026

LangChain Fundamentals: Chains, Prompts, and Language Models Explained

Master the core building blocks of LangChain including chains, prompt templates, language model wrappers, and the LangChain Expression Language for composing AI applications.

Learn Agentic AI
12 min read2Mar 16, 2026

Building LangChain Agents: Tools, AgentExecutor, and the ReAct Loop

Learn how to build LangChain agents that use tools to solve problems, understand the ReAct reasoning loop, and configure AgentExecutor for reliable agent behavior.

Learn Agentic AI
11 min read2Mar 16, 2026

LangChain Memory: ConversationBufferMemory, Summary, and Vector Store Memory

Explore LangChain's memory types for building conversational AI — from simple buffer memory to summarization and vector-store-backed long-term memory with persistence strategies.