Skip to content

Latest commit

ย 

History

History
171 lines (124 loc) ยท 17.3 KB

File metadata and controls

171 lines (124 loc) ยท 17.3 KB
English | ไธญๆ–‡
alt text

Hello-Agents

๐Ÿค– "Building Agent Systems from Scratch"

From foundational theory to practical applications, master the design and implementation of agent systems

GitHub stars GitHub forks Language GitHub Project Online Reading

๐ŸŽฏ Project Introduction

โ€ƒโ€ƒIf 2024 was the year of the "Battle of a Hundred Models," then 2025 has undoubtedly ushered in the "Year of Agents." The focus of technology is shifting from training larger foundation models to building smarter agent applications. However, systematic, practice-oriented tutorials are extremely scarce. For this reason, we launched the Hello-Agents project, hoping to provide the community with a comprehensive guide to building agent systems from scratch, balancing theory and practice.

โ€ƒโ€ƒHello-Agents is a systematic agent learning tutorial from the Datawhale community. Today, agent development is mainly divided into two schools: one is software engineering-oriented agents like Dify, Coze, and n8n, which are essentially process-driven software development with LLMs serving as data processing backends; the other is AI-native agents, truly AI-driven agents. This tutorial aims to lead you to deeply understand and build the latterโ€”truly AI Native Agents. The tutorial will guide you through the surface of frameworks, starting from the core principles of agents, delving into their core architecture, understanding their classic paradigms, and ultimately building your own multi-agent applications. We believe that the best way to learn is through hands-on practice. We hope this tutorial can be your starting point for exploring the world of agents, transforming you from a "user" of large language models to a "builder" of agent systems.

๐Ÿ“š Quick Start

Online Reading

๐ŸŒ Click here to start reading online - No download required, learn anytime, anywhere

๐Ÿ“– Cookbook (Beta)

Local Reading

If you wish to read locally or contribute content, please refer to the learning guide below.

โœจ What Will You Gain?

  • ๐Ÿ“– Datawhale Open Source & Free - Learn all project content completely free, grow with the community
  • ๐Ÿ” Understand Core Principles - Deeply understand agent concepts, history, and classic paradigms
  • ๐Ÿ—๏ธ Hands-on Implementation - Master popular low-code platforms and agent code frameworks
  • ๐Ÿ› ๏ธ Self-developed Framework HelloAgents - Build your own agent framework from scratch based on OpenAI native API
  • โš™๏ธ Master Advanced Skills - Step-by-step implementation of context engineering, Memory, protocols, evaluation, and other systematic technologies
  • ๐Ÿค Model Training - Master Agentic RL, from SFT to GRPO full-process practical LLM training
  • ๐Ÿš€ Drive Real Cases - Practical development of intelligent travel assistants, cyber towns, and other comprehensive projects
  • ๐Ÿ“– Job Interviews - Learn agent-related interview questions for job hunting

๐Ÿ“– Content Navigation

Chapter Key Content Status
Preface Project origin, background, and reader suggestions โœ…
Part 1: Agent and Language Model Fundamentals
Chapter 1: Introduction to Agents Agent definition, types, paradigms, and applications โœ…
Chapter 2: History of Agents Evolution from symbolism to LLM-driven agents โœ…
Chapter 3: Large Language Model Fundamentals Transformer, prompts, mainstream LLMs and their limitations โœ…
Part 2: Building Your LLM Agent
Chapter 4: Classic Agent Paradigm Construction Hands-on implementation of ReAct, Plan-and-Solve, Reflection โœ…
Chapter 5: Low-Code Platform Agent Development Understanding Coze, Dify, n8n and other low-code agent platforms โœ…
Chapter 6: Framework Development Practice AutoGen, AgentScope, LangGraph and other mainstream framework applications โœ…
Chapter 7: Building Your Agent Framework Building an agent framework from scratch โœ…
Part 3: Advanced Knowledge Extension
Chapter 8: Memory and Retrieval Memory systems, RAG, storage โœ…
Chapter 9: Context Engineering "Contextual understanding" for continuous interaction โœ…
Chapter 10: Agent Communication Protocols MCP, A2A, ANP and other protocol analysis โœ…
Chapter 11: Agentic-RL Practical LLM training from SFT to GRPO โœ…
Chapter 12: Agent Performance Evaluation Core metrics, benchmarks, and evaluation frameworks โœ…
Part 4: Comprehensive Case Studies
Chapter 13: Intelligent Travel Assistant Real-world applications of MCP and multi-agent collaboration โœ…
Chapter 14: Automated Deep Research Agent DeepResearch Agent reproduction and analysis โœ…
Chapter 15: Building a Cyber Town Combining agents with games, simulating social dynamics โœ…
Part 5: Capstone Project and Future Outlook
Chapter 16: Capstone Project Build your own complete multi-agent application โœ…

Community Contributions

โ€ƒโ€ƒWe welcome everyone to contribute their unique insights and practical summaries from learning Hello-Agents or Agent-related technologies to the community selection in the form of PRs. If the content is independent of the main text, you can also submit it to Extra-Chapter! Looking forward to your first contribution!

Community Selection Content Summary
01-Agent Interview Questions Summary Agent position-related interview questions
01-Agent Interview Answers Answers to related interview questions
02-Context Engineering Content Supplement Context engineering content extension
03-Dify Agent Creation Step-by-Step Tutorial Dify Agent Creation Step-by-Step Tutorial
04-Hello-agents Course Common Questions Datawhale Course Common Questions

PDF Version Download

โ€ƒโ€ƒThis Hello-Agents PDF tutorial is completely open source and free. To prevent various marketing accounts from adding watermarks and selling it to multi-agent system beginners, we have pre-added a Datawhale open source logo watermark that does not affect reading in the PDF file. Please understand~

Hello-Agents PDF: https://github.com/datawhalechina/hello-agents/releases/tag/V1.0.0
Hello-Agents PDF Domestic Download: https://www.datawhale.cn/learn/summary/239

๐Ÿ’ก How to Learn

โ€ƒโ€ƒWelcome, future builder of intelligent systems! Before embarking on this exciting journey, please allow us to give you some clear guidance.

โ€ƒโ€ƒThis project balances theory and practice, aiming to help you systematically master the entire process of designing and developing from single agents to multi-agent systems. Therefore, it is especially suitable for AI developers, software engineers, students with some programming foundation, as well as self-learners with a strong interest in cutting-edge AI technology. Before learning this project, we hope you have basic Python programming skills and a basic conceptual understanding of large language models (for example, knowing how to call an LLM through an API). The focus of the project is on application and construction, so you do not need a deep background in algorithms or model training.

โ€ƒโ€ƒThe project is divided into five major parts, each being a solid step towards the next stage:

  • Part 1: Agent and Language Model Fundamentals (Chapters 1-3), we will start from the definition, types, and development history of agents, sorting out the ins and outs of the concept of "agents." Then, we will quickly consolidate the core knowledge of large language models, laying a solid theoretical foundation for your practical journey.

  • Part 2: Building Your LLM Agent (Chapters 4-7), this is the starting point of your hands-on practice. You will personally implement classic paradigms such as ReAct, experience the convenience of low-code platforms like Coze, and master the application of mainstream frameworks like Langgraph. Finally, we will also guide you to build your own agent framework from scratch, giving you the ability to both "use wheels" and "build wheels."

  • Part 3: Advanced Knowledge Extension (Chapters 8-12), in this part, your agent will "learn" to think and collaborate. We will use the self-developed framework from Part 2 to deeply explore core technologies such as memory and retrieval, context engineering, and Agent training, and learn communication protocols between multi-agents. Finally, you will master professional methods for evaluating agent system performance.

  • Part 4: Comprehensive Case Studies (Chapters 13-15), this is the intersection of theory and practice. You will integrate what you have learned and personally create intelligent travel assistants, automated deep research agents, and even a cyber town that simulates social dynamics, tempering your construction ability in real and interesting projects.

  • Part 5: Capstone Project and Future Outlook (Chapter 16), at the end of the journey, you will face a capstone project, building a complete multi-agent application of your own, comprehensively testing your learning outcomes. We will also look forward to the future of agents with you, exploring exciting frontier directions.

โ€ƒโ€ƒAgents are a rapidly developing field that is extremely dependent on practice. To achieve the best learning effect, we provide all supporting code in the project's code folder. We strongly recommend that you combine theory with practice. Please be sure to personally run, debug, and even modify every piece of code provided in the project. You are welcome to follow Datawhale and other Agent-related communities at any time. When you encounter problems, you can ask questions in the issue area of this project at any time.

โ€ƒโ€ƒNow, are you ready to enter the wonderful world of agents? Let's start right away!

๐Ÿค How to Contribute

We are an open-source community and welcome any form of contribution!

  • ๐Ÿ› Report Bugs - Found content or code issues, please submit an Issue
  • ๐Ÿ’ก Make Suggestions - Have good ideas for the project, welcome to initiate discussions
  • ๐Ÿ“ Improve Content - Help improve the tutorial, submit your Pull Request
  • โœ๏ธ Share Practice - Share your learning notes and projects in "Community Contributions"

๐Ÿ™ Acknowledgments

Core Contributors

Extra-Chapter Contributors

Special Thanks

  • Thanks to @Sm1les for help and support for this project
  • Thanks to all developers who have contributed to this project โค๏ธ

Star History

Datawhale

โญ If this project helps you, please give us a Star!

About Datawhale

Datawhale

Scan the QR code to follow the Datawhale official account and get more high-quality open source content


๐Ÿ“œ Open Source License

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.