S
Saurav Danej
90-Day AI/ML LinkedIn Content System
← All days
75
Day 75 of 90Agents

Agent frameworks — LangGraph, AutoGen, CrewAI

POST 1 of 5 MorningAgentsConcept

Pick by abstraction, not by stars

Three agent frameworks worth knowing in 2026:

- LangGraph — explicit graph of nodes + edges. State is shared dict. Best when you want control.

- AutoGen — conversational agents with role-based prompts. Microsoft. Better for research-style multi-agent.

- CrewAI — agents as 'roles' with goals + backstory. Highest abstraction. Fastest to demo, hardest to debug.

Plus the SDKs: OpenAI Assistants API, Anthropic agent SDK. Lower abstraction, native to provider.
#Agents#LLM#AI#LangGraph#100DaysOfCode#LangGraph
POST 2 of 5 MiddayAgentsDeep dive

LangGraph — my default in production

LangGraph models an agent as a state graph:

- State — typed dict (TypedDict / Pydantic) shared by all nodes
- Nodes — functions that read state, do work, return updates
- Edges — conditional routing between nodes

Why it wins:
- You see the graph; bugs are findable
- State is centralised; no implicit shared memory
- Persistence + checkpointing built-in
- Clean async support

Weakness: more boilerplate vs CrewAI for simple cases. Worth it past prototype.
#Agents#LLM#AI#LangGraph#100DaysOfCode#LangGraph
POST 3 of 5 AfternoonAgentsCode

Tiny LangGraph agent

Define a state. Add nodes. Add edges. Compile. Invoke. Same shape every time.

This 25-line example shows the structure. Real agents add tools, conditional edges, checkpointing — but the skeleton stays the same.
#Agents#LLM#AI#LangGraph#100DaysOfCode#LangGraph
POST 4 of 5 EveningAgentsTip

Always add tracing (LangSmith / Langfuse)

An agent without traces is unfixable. You'll spend hours guessing why it gave a wrong answer.

My default stack:
- LangSmith (managed) or Langfuse (self-host) — captures every prompt, tool call, latency
- One-line setup with most frameworks
- Search by user, query, error

The minute you ship an agent, ship its trace dashboard. Cost: ~$0 for low volume. Saves entire debugging cycles.
#Agents#LLM#AI#LangGraph#100DaysOfCode#Observability
POST 5 of 5 NightAgentsRecap

Day 75 — frameworks, with intent

Day 75 done.

- LangGraph for control
- AutoGen for research
- CrewAI for fast demos
- Always add tracing

Tomorrow (Day 76): memory in agents. Short-term, long-term, and the patterns that survive contact with users.
#Agents#LLM#AI#LangGraph#100DaysOfCode#LangGraph