Skip to content
Learn Agentic AI
Learn Agentic AI archive page 61 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

Running LLMs on Consumer GPUs: Quantization with GPTQ, AWQ, and GGUF

Understand how GPTQ, AWQ, and GGUF quantization compress large language models to fit consumer GPUs. Compare quality tradeoffs, memory requirements, and practical deployment strategies.

Learn Agentic AI
13 min read0Mar 16, 2026

Building a Private AI Agent: Self-Hosted LLMs for Data-Sensitive Applications

Design and deploy a fully private AI agent using self-hosted LLMs. Cover infrastructure requirements, model selection, security best practices, and cost comparison with cloud APIs.

Learn Agentic AI
11 min read1Mar 16, 2026

LiteLLM: A Unified Interface for 100+ LLM Providers in Agent Applications

Set up LiteLLM to call OpenAI, Anthropic, Mistral, Ollama, and 100+ other providers through a single API. Implement fallbacks, load balancing, and cost tracking for production agents.

Learn Agentic AI
12 min read0Mar 16, 2026

Open-Source Embedding Models: Sentence-Transformers and BGE for RAG Agents

Select, deploy, and optimize open-source embedding models for RAG-powered agents. Compare Sentence-Transformers, BGE, and E5 models with benchmarks, fine-tuning strategies, and deployment patterns.

Learn Agentic AI
11 min read0Mar 16, 2026

Building Agents with Gemma and Phi: Small Language Models for Edge Deployment

Deploy AI agents on edge devices using Google's Gemma and Microsoft's Phi small language models. Cover resource requirements, agent patterns for constrained environments, and mobile deployment strategies.

Learn Agentic AI
13 min read1Mar 16, 2026

Model Routing: Directing Agent Queries to the Optimal Model Based on Complexity

Design and implement a model router that classifies query complexity and directs agent requests to the most cost-effective model. Build fallback chains, measure routing accuracy, and optimize per-query costs.

Learn Agentic AI
11 min read0Mar 16, 2026

DAG-Based Agent Workflows: Directed Acyclic Graphs for Complex Task Orchestration

Learn how to model complex agent workflows as directed acyclic graphs with dependency resolution, parallel execution of independent tasks, and topological sorting for correct execution order.

Learn Agentic AI
12 min read0Mar 16, 2026

Long-Running Agent Tasks: Durable Execution with Temporal and Celery

Discover how to build resilient long-running agent workflows using durable execution engines like Temporal and Celery, with activity retries, saga patterns, and persistent state across process restarts.