Week 2 · Day 14/30

Week 2 Capstone: Multi-Agent Research System

Integrácia agentov, memory, tools a evaluácie do jedného systému

📅 2026-03-17 ⏱️ 8-10 hodín 📊 Agent Systems
Celkový progres 47%

🎯 Cieľ dňa

Buildni multi-agent systém kde 3+ agenty spolupracujú na výskume, analýze a tvorbe reportu.

project core

📚 Study Resources

📖

DEV Community — Build Multi-Agent Systems (2026)

End-to-end guide od architektúry po deployment.

guide
🔵

Anthropic — Building Agents with Claude Agent SDK

Ako Anthropic stavia produkčných agentov. Architektúra za Claude Code.

article
🔵

Google Codelabs — Multi-Agent System

Google oficiálny codelab: distributed multi-agent s ADK a A2A protocol.

codelab

💡 Key Concepts

Full Agent Lifecycle — Input → Query analysis → Tool selection → Execution → Observation → Response
Memory Integration — Short-term context + long-term retrieval naprieč agentmi
Production Concerns — Tracing, monitoring, cost management, error propagation

🔧 Praktické cvičenie

Buildni Multi-Agent Research & Analysis System.

  1. Supervisor Agent: prijíma otázku, vytvára plán, deleguje, syntetizuje
  2. Research Agent: web search + document retrieval tools
  3. Analysis Agent: calculator, data processing, pattern identification
  4. Writer Agent: structured Markdown report s citations
  5. Použi LangGraph pre orchestration graf
  6. Pridaj persistent memory naprieč runmi
  7. Napíš eval suite s min 5 test cases cez DeepEval
  8. Zdokumentuj architectural decisions a trade-offs

🧠 Self-Assessment Questions

  1. Nakresli ReAct loop a vysvetli kedy sa zastaví.
  2. Prečo LangGraph nahradil LangChain agents?
  3. Kedy je single-agent lepší než multi-agent systém?
  4. Aký je rozdiel medzi episodic a semantic memory?
  5. Prečo je tool description quality kritická pre agent behavior?
  6. Čo je LLM-as-Judge a aké sú jeho limity?