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

推荐订阅源

Y
Y Combinator Blog
GbyAI
GbyAI
U
Unit 42
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
D
DataBreaches.Net
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
罗磊的独立博客
B
Blog RSS Feed
J
Java Code Geeks
The GitHub Blog
The GitHub 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.