Add a build your own AI agent section

This commit is contained in:
zjy-dev 2026-05-01 16:37:42 +08:00
parent 294aef8fde
commit fc23d9a5fe

View file

@ -9,6 +9,7 @@ This repository is a compilation of well-written, step-by-step guides for re-cre
It's a great way to learn.
* [3D Renderer](#build-your-own-3d-renderer)
* [AI Agent](#build-your-own-ai-agent)
* [AI Model](#ai-model)
* [Augmented Reality](#build-your-own-augmented-reality)
* [BitTorrent Client](#build-your-own-bittorrent-client)
@ -58,6 +59,12 @@ It's a great way to learn.
* [**JavaScript / Pseudocode**: _Computer Graphics from scratch_](http://www.gabrielgambetta.com/computer-graphics-from-scratch/introduction.html)
* [**Python**: _A 3D Modeller_](http://aosabook.org/en/500L/a-3d-modeller.html)
#### Build your own `AI Agent`
* [**Python**: _Building an AI agent from scratch in Python_](https://www.leoniemonigatti.com/blog/ai-agent-from-scratch-in-python.html)
* [**Python**: _Build Your Own OpenClaw_](https://github.com/czl9707/build-your-own-openclaw)
* [**TypeScript**: _Build Your Own AI Coding Agent From Scratch_](https://github.com/nauvalazhar/build-your-own-ai-coding-agent)
#### Build your own `AI Model`
* [**Python**: _A Large Language Model (LLM)_](https://github.com/rasbt/LLMs-from-scratch)
* [**Python**: _Diffusion Models for Image Generation_](https://huggingface.co/learn/diffusion-course/en/unit1/3)