Hands-on tutorial: build a working agent from scratch in 30 minutes. Part of the free AI Agents Academy โ every lesson below is open to everyone, no signup required.
Your First Agent in 50 Lines Forget frameworks. Build one from scratch to truly understand agents. The Architecture โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ...
From One Tool to a Toolkit Real agents need multiple tools. The key challenge: how does the agent decide which tool to use? Multi-Tool Agent const too...
Making Your Agent Remember Our basic agent forgets everything between sessions. Let's fix that. Level 1: In-Memory History const sessions = new Map()...