@XAMTO_AI: 微软官方出品的免费课程(generative-ai-for-beginners),21课把生成式AI的核心内容全捋了一遍。 Prompt工程、文本生成、聊天应用、图像生成、RAG、向量数据库、AI Agents、微调,从基础到落地都覆盖了…
摘要
推荐微软官方出品的免费开源课程《generative-ai-for-beginners》,共21课覆盖生成式AI核心主题,支持多语言,GitHub已超10万星。
查看缓存全文
缓存时间: 2026/08/07 16:54
微软官方出品的免费课程(generative-ai-for-beginners),21课把生成式AI的核心内容全捋了一遍。
Prompt工程、文本生成、聊天应用、图像生成、RAG、向量数据库、AI Agents、微调,从基础到落地都覆盖了。
Python和TypeScript双语言实战代码,微软Cloud Advocates亲自打造,零基础也能跟得上。
多语言支持,完全开源免费,GitHub上已超10万+。
https://github.com/microsoft/generative-ai-for-beginners…
microsoft/generative-ai-for-beginners
Source: https://github.com/microsoft/generative-ai-for-beginners
![]()
21 Lessons teaching everything you need to know to start building Generative AI applications
🌐 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/generative-ai-for-beginners.git cd generative-ai-for-beginners git sparse-checkout set --no-cone '/*' '!translations' '!translated_images'CMD (Windows):
git clone --filter=blob:none --sparse https://github.com/microsoft/generative-ai-for-beginners.git cd generative-ai-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.
Generative AI for Beginners (Version 3) - A Course
Learn the fundamentals of building Generative AI applications with our 21-lesson comprehensive course by Microsoft Cloud Advocates.
🌱 Getting Started
This course has 21 lessons. Each lesson covers its own topic so start wherever you like!
Lessons are labeled either “Learn” lessons explaining a Generative AI concept or “Build” lessons that explain a concept and code examples in both Python and TypeScript when possible.
For .NET Developers checkout Generative AI for Beginners (.NET Edition)!
Each lesson also includes a “Keep Learning” section with additional learning tools.
What You Need
To run the code of this course, you can use either:
-
Azure OpenAI Service - Lessons: “aoai-assignment”
-
Microsoft Foundry Models - Lessons: “githubmodels” (GitHub Models is retiring at the end of July 2026 - use Microsoft Foundry Models instead)
-
OpenAI API - Lessons: “oai-assignment”
-
Foundry Local - Run models fully offline on your own device, no cloud subscription required
-
Basic knowledge of Python or TypeScript is helpful - *For absolute beginners check out these Python and TypeScript courses
-
A GitHub account to fork this entire repo to your own GitHub account
We have created a Course Setup lesson to help you with setting up your development environment.
Don’t forget to star (🌟) this repo to find it easier later.
🧠 Ready to Deploy?
If you are looking for more advanced code samples, check out our collection of Generative AI Code Samples in both Python and TypeScript.
🗣️ Meet Other Learners, Get Support
Join our official Microsoft Foundry Discord server to meet and network with other learners taking this course and get support.
Ask questions or share product feedback in our Microsoft Foundry Developer Forum on Github.
🚀 Building a Startup?
Visit Microsoft for Startups to find out how to get started building with Azure credits today.
🙏 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 short video introduction to the topic
- A written lesson located in the README
- Python and TypeScript code samples supporting Azure OpenAI and OpenAI API
- Links to extra resources to continue your learning
🗃️ Lessons
| # | Lesson Link | Description | Video | Extra Learning |
|---|---|---|---|---|
| 00 | Course Setup | Learn: How to Setup Your Development Environment | Video Coming Soon | Learn More |
| 01 | Introduction to Generative AI and LLMs | Learn: Understanding what Generative AI is and how Large Language Models (LLMs) work. | Video | Learn More |
| 02 | Exploring and comparing different LLMs | Learn: How to select the right model for your use case | Video | Learn More |
| 03 | Using Generative AI Responsibly | Learn: How to build Generative AI Applications responsibly | Video | Learn More |
| 04 | Understanding Prompt Engineering Fundamentals | Learn: Hands-on Prompt Engineering Best Practices | Video | Learn More |
| 05 | Creating Advanced Prompts | Learn: How to apply prompt engineering techniques that improve the outcome of your prompts. | Video | Learn More |
| 06 | Building Text Generation Applications | Build: A text generation app using Azure OpenAI / OpenAI API | Video | Learn More |
| 07 | Building Chat Applications | Build: Techniques for efficiently building and integrating chat applications. | Video | Learn More |
| 08 | Building Search Apps Vector Databases | Build: A search application that uses Embeddings to search for data. | Video | Learn More |
| 09 | Building Image Generation Applications | Build: An image generation application | Video | Learn More |
| 10 | Building Low Code AI Applications | Build: A Generative AI application using Low Code tools | Video | Learn More |
| 11 | Integrating External Applications with Function Calling | Build: What is function calling and its use cases for applications | Video | Learn More |
| 12 | Designing UX for AI Applications | Learn: How to apply UX design principles when developing Generative AI Applications | Video | Learn More |
| 13 | Securing Your Generative AI Applications | Learn: The threats and risks to AI systems and methods to secure these systems. | Video | Learn More |
| 14 | The Generative AI Application Lifecycle | Learn: The tools and metrics to manage the LLM Lifecycle and LLMOps | Video | Learn More |
| 15 | Retrieval Augmented Generation (RAG) and Vector Databases | Build: An application using a RAG Framework to retrieve embeddings from a Vector Databases | Video | Learn More |
| 16 | Open Source Models and Hugging Face | Build: An application using open source models available on Hugging Face | Video | Learn More |
| 17 | AI Agents | Build: An application using an AI Agent Framework | Video | Learn More |
| 18 | Fine-Tuning LLMs | Learn: The what, why and how of fine-tuning LLMs | Video | Learn More |
| 19 | Building with SLMs | Learn: The benefits of building with Small Language Models | Video Coming Soon | Learn More |
| 20 | Building with Mistral Models | Learn: The features and differences of the Mistral Family Models | Video Coming Soon | Learn More |
| 21 | Building with Meta Models | Learn: The features and differences of the Meta Family Models | Video Coming Soon | Learn More |
🌟 Special thanks
Special thanks to John Aziz for creating all of the GitHub Actions and workflows
Bernhard Merkle for making key contributions to each lesson to improve the learner and code experience.
🎒 Other Courses
Our team produces other courses! Check out:
LangChain
Azure / Edge / MCP / Agents
Generative AI Series
Core Learning
Copilot Series
Getting Help
If you get stuck or have any questions about building AI apps. Join fellow learners and experienced developers in discussions about MCP. It’s a supportive community where questions are welcome and knowledge is shared freely.
If you have product feedback or errors while building visit:
相似文章
@XAMTO_AI: 网上AI Agent的课程一抓一大把,但大多要么太理论,要么照着文档念,看完还是一脸懵。 微软官方出了一套免费的《AI Agents for Beginners》,从零开始,带你完整过一遍构建过程。 A哥看到目前已扩展到18节课,覆盖基础…
微软官方免费课程《AI Agents for Beginners》已扩展到18节课,覆盖AI Agent构建的基础概念到生产部署,配有文字教程、视频和可运行的Jupyter Notebook代码示例。
microsoft/generative-ai-for-beginners
Microsoft's open-source GitHub repository offers 21 lessons covering everything needed to start building Generative AI applications, with multi-language support.
@Xudong07452910: 开源教程强烈推荐:《AI For Beginners》—— 微软出品:12 周 24 课从零学 AI,含多智能体系统、强化学习、AI 伦理全覆盖 想系统学 AI 但不知道从哪开始?微软把一套完整的 AI 大学课程开源了:12 周、24 节…
微软推出开源AI教程《AI For Beginners》,包含12周24课,覆盖神经网络、多智能体系统、强化学习和AI伦理,适合从零开始系统学习AI的开发者。
microsoft/ai-agents-for-beginners
微软在GitHub上发布了一门面向初学者的开源课程,涵盖构建AI智能体所需的全部内容,并提供50多种语言翻译。
microsoft/AI-For-Beginners
微软的 AI for Beginners 是一个为期12周、24节课的开源课程,涵盖AI基础知识、TensorFlow、PyTorch和伦理,并支持多种语言。