|
|
@@ -96,7 +96,7 @@ Before starting to write specific code, we need to first establish a clear archi
|
|
|
To allow readers to quickly experience the complete functionality of this chapter, we provide a directly installable Python package. You can install the version corresponding to this chapter with the following command:
|
|
|
|
|
|
```bash
|
|
|
-# hello-agents framework code visible link: https://github.com/jjyaoao/HelloAgents
|
|
|
+# hello-agents framework code visible link: https://github.com/jjyaoao/helloagents
|
|
|
# Python version needs to be >= 3.10
|
|
|
pip install "hello-agents==0.1.1"
|
|
|
```
|
|
|
@@ -2096,7 +2096,7 @@ Based on the above design and implementation experience, we can summarize the co
|
|
|
|
|
|
## 7.6 Chapter Summary
|
|
|
|
|
|
-Before formally summarizing, we want to share good news with everyone: For all methods and functions implemented in this chapter, complete test cases are provided in the GitHub repository. You can visit [this link](https://github.com/jjyaoao/HelloAgents/blob/main/examples/chapter07_basic_setup.py) to view and run these test codes. This file contains demonstrations of four Agent paradigms, integration tests of the tool system, usage examples of advanced features, and interactive Agent experiences. If you want to verify whether your implementation is correct or want to deeply understand the actual usage of the framework, these test cases will be valuable references.
|
|
|
+Before formally summarizing, we want to share good news with everyone: For all methods and functions implemented in this chapter, complete test cases are provided in the GitHub repository. You can visit [this link](https://github.com/datawhalechina/hello-agents/tree/main/code/chapter7) to view and run these test codes. This directory contains demonstrations of four Agent paradigms, integration tests of the tool system, usage examples of advanced features, and interactive Agent experiences. If you want to verify whether your implementation is correct or want to deeply understand the actual usage of the framework, these test cases will be valuable references.
|
|
|
|
|
|
Looking back at this chapter, we completed a challenging task: step by step, we built a basic agent framework—HelloAgents. This process consistently followed the core principles of "layered decoupling, single responsibility, and unified interfaces."
|
|
|
|