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

Evaluating Fine-Tuned Models: Benchmarks, Human Eval, and A/B Testing

Learn a comprehensive evaluation methodology for fine-tuned LLMs, combining automated benchmarks, human evaluation, and production A/B testing to measure real-world improvement with statistical rigor.

Learn Agentic AI
13 min read0Mar 16, 2026

Building Your First AI Agent from Scratch in Python (No Framework)

Build a complete, working AI agent from scratch using only the OpenAI API and Python standard library — with a tool loop, conversation management, structured tool calling, and error handling.

Learn Agentic AI
11 min read0Mar 16, 2026

Designing Tool Schemas for AI Agents: JSON Schema Best Practices

Learn how to write effective JSON Schema tool definitions that help LLMs understand parameters, constraints, and expected inputs. Covers parameter types, descriptions, required vs optional fields, nested objects, and enums.

Learn Agentic AI
10 min read0Mar 16, 2026

Building a Calculator Tool for AI Agents: Step-by-Step Tutorial

Walk through building a complete calculator tool for an AI agent from scratch. Covers schema definition, safe expression evaluation, result handling, and integration with the agent loop.

Learn Agentic AI
12 min read1Mar 16, 2026

Database Query Tools: Letting AI Agents Read from PostgreSQL and SQLite

Learn how to build safe database query tools that let AI agents retrieve data from PostgreSQL and SQLite. Covers parameterized queries, read-only enforcement, result formatting, and guardrails against destructive operations.

Learn Agentic AI
11 min read1Mar 16, 2026

Web Scraping Tools for AI Agents: Fetching and Parsing External Data

Build HTTP-based tools that let AI agents fetch web pages, parse content, and extract structured data. Covers request handling, HTML parsing, rate limiting, error handling, and responsible scraping practices.

Learn Agentic AI
12 min read0Mar 16, 2026

API Integration Tools: Connecting AI Agents to REST and GraphQL APIs

Build generic API integration tools that let AI agents call REST and GraphQL endpoints with proper authentication, error handling, retry logic, and response mapping. Learn patterns for building flexible yet safe API tools.

Learn Agentic AI
11 min read1Mar 16, 2026

Parallel Tool Execution: Running Multiple Tools Simultaneously in Agents

Learn how to execute multiple tool calls in parallel to dramatically speed up AI agent workflows. Covers async execution with asyncio.gather, handling partial failures, result aggregation, and timeout management.