AIAny
AI Agent2025
Icon for item

Deep Agents

Wraps LangGraph in an opinionated harness giving an agent planning, file read/write, sub-agent delegation, and persistent memory out of the box. Aimed at long-horizon work where plain ReAct loops exhaust their context window.

Introduction

Most agent frameworks stop at the ReAct loop: a model, some tools, and a while-loop. That works for a few turns, then the context window fills with tool noise and the agent loses the plot. Deep Agents is a bet that the missing piece isn't a smarter model but better scaffolding around it — the same planning, file system, and delegation tricks that make Claude Code feel general-purpose, extracted and pushed further.

What Sets It Apart
  • It is a layer above LangChain's create_agent, not a from-scratch runtime — so you inherit LangGraph's streaming, persistence, and checkpointing instead of reinventing them.
  • Context survives long jobs: tool outputs offload to disk, threads summarize, and sub-agents run in isolated context windows so a research detour doesn't pollute the main reasoning.
  • The file system is pluggable — local, sandboxed, or remote backends — which means the same agent code can run in a notebook or behind a network sandbox without rewrites.
  • Persistent memory with swappable backends gives the agent cross-session recall, turning one-shot scripts into something that accumulates state.
How It Holds Together

The design treats an agent as composable middleware rather than a monolith. Planning, file access, summarization, and human-in-the-loop approval are layers you opt into; custom LangGraph components and MCP servers plug in as sub-agents or tools. A pre-built "Deep Agents Code" variant ships as a worked example of the same primitives aimed at coding.

Who It's For

Great fit if you're building research assistants, coding agents, or any system that needs to grind through multi-step work and remember things between runs, and you already live in the LangChain ecosystem. Look elsewhere if you want a single-turn tool-calling wrapper or a vendor-neutral stack — this is opinionated, LangGraph-shaped, and most valuable exactly when the task is too long for one context window.

Information

  • Websitegithub.com
  • AuthorsLangChain
  • Published date2025/11/23

Categories

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).