惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
爱范儿
爱范儿
月光博客
月光博客
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
T
Tailwind CSS Blog
美团技术团队
D
Docker
V
Visual Studio Blog
Martin Fowler
Martin Fowler
博客园 - 聂微东
The Cloudflare Blog

博客园 - gogoy

Java 开发中 一篇文章讲清楚VO,BO,PO,DO,DTO的区别 云原生:Mesh化架构模式(sidecar模式)、容器vsPod Serverless 介绍 Spring单例Bean并发安全问题分析和解决 图解直接映射(Direct mapped)、全相联(Fully-associative)和组相联(Set-associative)cache缓存基本原理 为什么大语言模型推理要分成 Prefill 和 Decode? 【台大机器学习系列1】机器学习2021 人工智能交互中的角色与提示词:System、User与Assistant 台大李宏毅 2025 AI Agent 新课来了!(即李宏毅机器学习2025) 一文搞懂Passkey(转) RISC-V、x86、ARM技术对比解析 各种函数依赖及规范化解决 SSE协议与HTTP协议 操作日志 “二清”详解:支付产品必须知道的“清结算规矩” 金融通识:国内支付清算体系CNAPS2 Mockito教程(单测mock) zookeeper TCP相关经典 Java常见的超时及设计
LangChain的Deep Agents学习
gogoy · 2026-03-17 · via 博客园 - gogoy

文档:https://docs.langchain.com/oss/python/deepagents/overview

示例:https://github.com/langchain-ai/deepagents/tree/main/examples

项目示例分析

Based on the GitHub page, here are the examples ranked by beginner-friendliness:

text-to-sql-agent ⭐ Best for beginners Clean, focused use case (NL → SQL); demonstrates planning + skills; uses well-known Chinook database content-builder-agent ⭐⭐ Good second step Shows memory (AGENTS.md), skills, subagents — more concepts but well-structured deep_research ⭐⭐⭐ Intermediate Multi-step web research with parallel sub-agents — powerful but complex ralph_mode ⭐⭐⭐ Advanced pattern Autonomous looping with filesystem persistence — architectural pattern, not starter material downloading_agents Utility Just shows how to download/run agents, not for learning concepts
ExampleBeginner LevelWhy

My recommendation for you

Start with text-to-sql-agent:

  1. Familiar domain — SQL is something you already know (Java backend background)
  2. Clear input/output — natural language question → SQL query
  3. Demonstrates core Deep Agents concepts:
    • Planning (TODO列表)
    • Skill-based workflows
    • Tool use (database)
  4. Self-contained — uses Chinook demo database, no external API keys needed beyond LLM

After you understand that, move to content-builder-agent to see how memory and subagents work.