[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-72295":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":15,"forks30d":15,"starsTrendScore":19,"compositeScore":20,"rankGlobal":9,"rankLanguage":9,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":24,"hasPages":22,"topics":25,"createdAt":9,"pushedAt":9,"updatedAt":26,"readmeContent":27,"aiSummary":28,"trendingCount":15,"starSnapshotCount":15,"syncStatus":29,"lastSyncTime":30,"discoverSource":31},72295,"ai-agents-masterclass","coleam00\u002Fai-agents-masterclass","coleam00","Follow along with my AI Agents Masterclass videos! All of the code I create and use in this series on YouTube will be here for you to use and even build on top of!",null,"Python",3411,1335,109,32,0,3,4,25,9,71.88,"MIT License",false,"main",true,[],"2026-06-12 04:01:04","\u003Cdiv align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fchannel\u002FUCMwVTLZIRRUyyVrkjDpn4pA\">\n    \u003Cimg alt=\"AI Agents Masterclass\" src=\"https:\u002F\u002Fi.imgur.com\u002F8Gr2pBA.png\">\n    \u003Ch1 align=\"center\">AI Agents Masterclass\u003C\u002Fh1>\n  \u003C\u002Fa>\n\u003C\u002Fdiv>\n\n\u003Cp align=\"center\">\n  Artificial Intelligence is the #1 thing for all developers to spend their time on now.\n  The problem is, most developers aren't focusing on AI agents, which is the real way to unleash the full power of AI.\n  This is why I'm creating this AI Agents Masterclass - so I can show YOU how to use AI agents to transform\n  businesses and create incredibly powerful software like I've already done many times! \n  Click the image or link above to go to the masterclass on YouTube.\n\u003C\u002Fp>\n\n\u003Cp align=\"center\" style=\"margin-top: 25px\">\n  \u003Ca href=\"#what-are-ai-agents\">\u003Cstrong>What are AI Agents?\u003C\u002Fstrong>\u003C\u002Fa> ·\n  \u003Ca href=\"#how-this-repo-works\">\u003Cstrong>How this Repo Works\u003C\u002Fstrong>\u003C\u002Fa> ·\n  \u003Ca href=\"#instructions-to-follow-along\">\u003Cstrong>Instructions to Follow Along\u003C\u002Fstrong>\u003C\u002Fa>\n\u003C\u002Fp>\n\u003Cbr\u002F>\n\n## What are AI Agents?\n\nAI agents are simply Large Language Models that have been given the ability to interact with the outside world. They\ncan do things like draft emails, book appointments in your CRM, create tasks in your task management software, and\nreally anything you can dream of! I hope that everything I show here can really help you dream big\nand create incredible things with AI!\n\nAI agents can be very powerful without having to create a lot of code. That doesn't mean there isn't room though\nto create more complex applications to tie together many different agents to accomplish truly incredible things!\nThat's where we'll be heading with this masterclass and I really look forward to it!\n\nBelow is a very basic diagram just to get an idea of what an AI agent looks like:\n\n\u003Cdiv align=\"center\" style=\"margin-top: 25px;margin-bottom:25px\">\n\u003Cimg width=\"700\" alt=\"Trainers Ally LangGraph graph\" src=\"https:\u002F\u002Fi.imgur.com\u002FChRoV8W.png\">\n\u003C\u002Fdiv>\n\n\u003Cbr\u002F>\n\n## How this Repo Works\n\nEach week there will be a new video for my AI Agents Masterclass! Each video will have its own folder\nin this repo, starting with [\u002F1-first-agent\u002F](\u002F1-first-agent) for the first video in the masterclass\nwhere I create our very first AI agent! \n\nAny folder that starts with a number is for a masterclass video. The other folders are for other content\non my YouTube channel. The other content goes very well with the masterclass series (think of it as\nsupplemental material) which is why it is here too!\n\nThe code in each folder will be exactly what I used\u002Fcreated in the accompanying masterclass video.\n\n\u003Cbr\u002F>\n\n## Instructions to Follow Along\n\nThe below instructions assume you already have Git, Python, and Pip installed. If you do not, you can install\n[Python + Pip from here](https:\u002F\u002Fwww.python.org\u002Fdownloads\u002F) and [Git from here](https:\u002F\u002Fgit-scm.com\u002F).\n\nTo follow along with any of my videos, first clone this GitHub repository, open up a terminal,\nand change your directory to the folder for the current video you are watching (example: 1st video is [\u002F1-first-agent\u002F](\u002F1-first-agent)).\n\nThe below instructions work on any OS - Windows, Linux, or Mac!\n\nYou will need to use the environment variables defined in the .env.example file in the folder (example for the first video: [`1-first-agent\u002F.env.example`](\u002F1-first-agent\u002F.env.example)) to set up your API keys and other configuration. Turn the .env.example file into a `.env` file, and supply the necessary environment variables.\n\nAfter setting up the .env file, run the below commands to create a Python virtual environment and install the necessary Python packages to run the code from the masterclass. Creating a virtual environment is optional but recommended! Creating a virtual environment for the entire masterclass is a one time thing. Make sure to run the pip install for each video though!\n\n```bash\npython -m venv ai-agents-masterclass\n\n# On Windows:\n.\\ai-agents-masterclass\\Scripts\\activate\n\n# On MacOS\u002FLinux: \nsource ai-agents-masterclass\u002Fbin\u002Factivate\n\ncd 1-first-agent (or whichever folder)\npip install -r requirements.txt\n```\n\nThen, you can execute the code in the folder with:\n\n```bash\npython [script name].py\n```\n","该项目是跟随YouTube上的AI Agents Masterclass视频教程进行学习和实践的代码库。核心功能包括通过Python编程语言实现与外部世界交互的AI代理，如自动发送邮件、管理CRM中的预约等任务。技术特点在于利用大型语言模型构建AI代理，即使不编写大量代码也能完成复杂的应用场景。适用于希望深入理解和应用AI代理技术以提升业务流程自动化水平或开发智能软件的开发者。",2,"2026-06-11 03:41:14","high_star"]