@XAMTO_AI: 网上AI Agent的课程一抓一大把,但大多要么太理论,要么照着文档念,看完还是一脸懵。 微软官方出了一套免费的《AI Agents for Beginners》,从零开始,带你完整过一遍构建过程。 A哥看到目前已扩展到18节课,覆盖基础…
摘要
微软官方免费课程《AI Agents for Beginners》已扩展到18节课,覆盖AI Agent构建的基础概念到生产部署,配有文字教程、视频和可运行的Jupyter Notebook代码示例。
查看缓存全文
缓存时间: 2026/08/04 04:01
网上AI Agent的课程一抓一大把,但大多要么太理论,要么照着文档念,看完还是一脸懵。
微软官方出了一套免费的《AI Agents for Beginners》,从零开始,带你完整过一遍构建过程。
A哥看到目前已扩展到18节课,覆盖基础概念到生产部署的每个环节,Tool Use、Agentic RAG、Planning、Multi-Agent、记忆管理、上下文工程这些都有。
每节课配详细文字教程+视频,Python代码示例用Jupyter Notebook直接能跑。
传/送https://github.com/microsoft/ai-agents-for-beginners…
microsoft/ai-agents-for-beginners
Source: https://github.com/microsoft/ai-agents-for-beginners
AI Agents for Beginners - A Course
![]()
A course teaching everything you need to know to start building AI Agents
🌐 Multi-Language Support
Supported via GitHub Action (Automated & Always Up-to-Date)
Arabic | Bengali | Bulgarian | Burmese (Myanmar) | Chinese (Simplified) | Chinese (Traditional, Hong Kong) | Chinese (Traditional, Macau) | Chinese (Traditional, Taiwan) | Croatian | Czech | Danish | Dutch | Estonian | Finnish | French | German | Greek | Hebrew | Hindi | Hungarian | Indonesian | Italian | Japanese | Kannada | Khmer | Korean | Lithuanian | Malay | Malayalam | Marathi | Nepali | Nigerian Pidgin | Norwegian | Persian (Farsi) | Polish | Portuguese (Brazil) | Portuguese (Portugal) | Punjabi (Gurmukhi) | Romanian | Russian | Serbian (Cyrillic) | Slovak | Slovenian | Spanish | Swahili | Swedish | Tagalog (Filipino) | Tamil | Telugu | Thai | Turkish | Ukrainian | Urdu | Vietnamese
Prefer to Clone Locally?
This repository includes 50+ language translations which significantly increases the download size. To clone without translations, use sparse checkout:
Bash / macOS / Linux:
git clone --filter=blob:none --sparse https://github.com/microsoft/ai-agents-for-beginners.git cd ai-agents-for-beginners git sparse-checkout set --no-cone '/*' '!translations' '!translated_images'CMD (Windows):
git clone --filter=blob:none --sparse https://github.com/microsoft/ai-agents-for-beginners.git cd ai-agents-for-beginners git sparse-checkout set --no-cone "/*" "!translations" "!translated_images"This gives you everything you need to complete the course with a much faster download.
If you wish to have additional translation languages supported, they are listed here.
🌱 Getting Started
This course has lessons covering the fundamentals of building AI Agents. Each lesson covers its own topic so start wherever you like!
There is multi-language support for this course. Go to our available languages here.
If this is your first time building with Generative AI models, check out our Generative AI For Beginners course, which includes 21 lessons on building with GenAI.
Don’t forget to star (🌟) this repo and fork this repo to run the code.
Meet Other Learners, Get Your Questions Answered
If you get stuck or have any questions about building AI Agents, join our dedicated Discord Channel in the Microsoft Foundry Discord.
What You Need
Each lesson in this course includes code examples, which can be found in the code_samples folder. You can fork this repo to create your own copy.
The code examples in these exercises utilize Microsoft Agent Framework with Microsoft Foundry Agent Service V2:
- Microsoft Foundry - Azure Account Required
This course uses the following AI Agent frameworks and services from Microsoft:
Some code samples also support alternative OpenAI-compatible providers such as MiniMax, which offers large-context models (up to 204K tokens). See the Course Setup for configuration details.
For more information on running the code for this course, go to the Course Setup.
🙏 Want to help?
Do you have suggestions or found spelling or code errors? Raise an issue or Create a pull request
📂 Each lesson includes
- A written lesson located in the README and a short video
- Python code samples using Microsoft Agent Framework with Microsoft Foundry
- Links to extra resources to continue your learning
🗃️ Lessons
| Lesson | Text & Code | Video | Extra Learning |
|---|---|---|---|
| Intro to AI Agents and Agent Use Cases | Link | Video | Link |
| Exploring AI Agentic Frameworks | Link | Video | Link |
| Understanding AI Agentic Design Patterns | Link | Video | Link |
| Tool Use Design Pattern | Link | Video | Link |
| Agentic RAG | Link | Video | Link |
| Building Trustworthy AI Agents | Link | Video | Link |
| Planning Design Pattern | Link | Video | Link |
| Multi-Agent Design Pattern | Link | Video | Link |
| Metacognition Design Pattern | Link | Video | Link |
| AI Agents in Production | Link | Video | Link |
| Using Agentic Protocols (MCP, A2A and NLWeb) | Link | Video | Link |
| Context Engineering for AI Agents | Link | Video | Link |
| Managing Agentic Memory | Link | Video | |
| Exploring Microsoft Agent Framework | Link | ||
| Building Computer Use Agents (CUA) | Link | Link | |
| Deploying Scalable Agents | Link | Link | |
| Creating Local AI Agents | Link | Link | |
| Securing AI Agents | Link | Link |
🎒 Other Courses
Our team produces other courses! Check out:
LangChain
Azure / Edge / MCP / Agents
Generative AI Series
Core Learning
Copilot Series
🌟 Community Thanks
Thanks to Shivam Goyal for contributing important code samples demonstrating Agentic RAG.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos is subject to those third-parties’ policies.
Getting Help
If you get stuck or have any questions about building AI apps, join:
If you have product feedback or errors while building visit:
相似文章
@XAMTO_AI: 微软官方出品的免费课程(generative-ai-for-beginners),21课把生成式AI的核心内容全捋了一遍。 Prompt工程、文本生成、聊天应用、图像生成、RAG、向量数据库、AI Agents、微调,从基础到落地都覆盖了…
推荐微软官方出品的免费开源课程《generative-ai-for-beginners》,共21课覆盖生成式AI核心主题,支持多语言,GitHub已超10万星。
microsoft/ai-agents-for-beginners
微软在GitHub上发布了一门面向初学者的开源课程,涵盖构建AI智能体所需的全部内容,并提供50多种语言翻译。
@Xudong07452910: 开源教程强烈推荐:《AI For Beginners》—— 微软出品:12 周 24 课从零学 AI,含多智能体系统、强化学习、AI 伦理全覆盖 想系统学 AI 但不知道从哪开始?微软把一套完整的 AI 大学课程开源了:12 周、24 节…
微软推出开源AI教程《AI For Beginners》,包含12周24课,覆盖神经网络、多智能体系统、强化学习和AI伦理,适合从零开始系统学习AI的开发者。
@XAMTO_AI: 兄弟们,AI Agent 这玩意儿你还在一鳞半爪地学?看这个! 22 章骨架课程,专门教你怎么从 0 到 1 搭出一套生产级的 Agent 系统 工具调用、Agent 循环、记忆系统 多 Agent 协作、人机交互 后端架构、可观测性、成…
A 22-chapter skeleton course on building production AI agents, using an innovative approach where the AI partner fills in details. The course covers tool calling, agent loops, memory, multi-agent collaboration, and more.
@Xudong07452910: 开源免费高质量教程推荐:《从零开始构建Agent》 这是一本系统性的 Agent 原理与实践教程,从零基础到进阶实战,内容覆盖: 1. Agent基础概念与主流范式(ReAct、Plan-and-Solve、Reflection等) 2.…
推荐开源免费教程《从零开始构建Agent》,系统性讲解AI Agent原理与实践,涵盖ReAct、AutoGen、LangGraph等主流框架和多项目实战,已获5.3万+星标。