Skip to content
Learn Agentic AI
Learn Agentic AI archive page 44 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
10 min read0Mar 16, 2026

Multi-Modal Prompting: Combining Text, Images, and Code in Single Prompts

Master multi-modal prompting techniques that combine text, images, and code inputs in a single prompt to unlock more capable and context-rich LLM interactions.

Learn Agentic AI
11 min read1Mar 16, 2026

Prompt Compression: Reducing Token Count Without Losing Quality

Learn practical prompt compression techniques including LLMLingua, selective context pruning, and abstractive compression to cut token costs while preserving output quality.

Learn Agentic AI
12 min read0Mar 16, 2026

Building Input Validation for AI Agents: Sanitizing User Inputs Before Processing

Learn how to build robust input validation pipelines for AI agents using regex filters, content classifiers, blocklists, and input length limits to stop malicious input before it reaches your LLM.

Learn Agentic AI
11 min read0Mar 16, 2026

Evaluation-Driven Prompt Development: Using Metrics to Improve Prompts Systematically

Learn how to build evaluation frameworks with scoring rubrics, A/B testing, and regression testing to systematically improve prompt quality and catch regressions before production.

Learn Agentic AI
11 min read0Mar 16, 2026

Domain-Specific Prompt Libraries: Building Reusable Prompts for Healthcare, Legal, and Finance

Learn how to build production-grade prompt libraries for regulated industries with domain-specific templates, terminology handling, and compliance-aware prompting patterns.

Learn Agentic AI
11 min read2Mar 16, 2026

Pydantic Models for LLM Output: Type-Safe AI Responses in Python

Learn how to use Pydantic BaseModel, Field validators, and nested models to parse and validate LLM responses into type-safe Python objects. Build reliable AI pipelines that never break on malformed output.

Learn Agentic AI
12 min read2Mar 16, 2026

OpenAI Structured Outputs: Using response_format with JSON Schema

Master OpenAI's structured outputs feature with json_schema response format, strict mode, refusal handling, and complex schema definitions. Get guaranteed valid JSON from GPT models every time.

Learn Agentic AI
13 min read1Mar 16, 2026

Building Data Extraction Pipelines: Turning Unstructured Text into Structured Data

Design and implement multi-step data extraction pipelines that transform unstructured text into clean structured data using LLMs. Covers entity extraction, relation extraction, and pipeline orchestration.