Notes / tag / tool

#tool

6 notes

# Agentic Ai Projects And Mastery

All Agentic Ai Projects And Mastery notes →

What is LangGraph

LangChain's graph-based orchestration library — agents as a StateGraph of nodes and edges, with durable checkpointing and human-in-the-loop interrupts as native graph mechanics rather than bolted-on features.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

LlamaIndex Workflows

The API surface behind LlamaIndex's event-driven orchestration layer — Workflow/Step/Event class mechanics, Context state and fan-out/fan-in, and how a Workflow sits directly on top of the existing Index/QueryEngine retrieval stack.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

OpenAI Agents SDK

Python SDK for OpenAI's Agents framework — the concrete API surface: Agent/Runner construction, the function_tool and handoff() call shapes, Session-backed state, guardrail decorators, and built-in tracing.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

AutoGen

Microsoft's open-source framework for conversational multi-agent systems — the concrete API surface: AssistantAgent/UserProxyAgent setup, GroupChat/GroupChatManager wiring, tool registration, and the parameters that actually terminate a run.

agentic-ai-projects-and-mastery reference tool

Haystack Agents

Haystack's Agent component and Pipeline/Tool wiring — the API surface: how a Pipeline gets built and connected, how Agent slots in as one more Component, and how ComponentTool turns an existing retriever into a tool with no re-integration work.

agentic-ai-projects-and-mastery reference tool

Semantic Kernel

Microsoft's SDK for adding tool-calling and planning to an existing .NET or Python application — the API surface: Kernel construction, KernelFunction/plugin registration, the automatic-function-calling planner, and where .NET/Python SDK parity actually diverges.

agentic-ai-projects-and-mastery reference tool