- The Neuron
- Posts
- šŗ Build your first AI agent with Microsoft's free 1 hour course
šŗ Build your first AI agent with Microsoft's free 1 hour course
PLUS: All 50 states oppose new AI law?!

Welcome, humans.
What happens when you attend a dinner party hosted by Dwarkesh Patel, one of AI's most connected podcasters? You overhear the conversations that AI insiders have when they think no one's listening.
A recent party recap dropped some wild insights. Turns out, AI could have happened decades earlier, but a famous 1992 research paper convinced everyone it wouldn't workābased on testing neural networks with only four brain cells. Four! That's like concluding cars don't work after testing a bicycle.
Someone also did the math on what it would cost if ChatGPT could actually update its brain based on your conversations. Not just reference old chats, but permanently get smarter about you specifically. Price tag: around $20-100 per month. Not bad for a personal AI that grows with you.
(P.S: Dwarkesh just released an excellent post about why AI will need continual learning like mentioned above to actually do human-like work).
Perhaps most tellingly, one guest asked Claude about a technical AI concept, got a confidently wrong answer, and realized something scary. As these AI systems get better at sounding convincing, how will we know when they're just making stuff up?
The dinner party conclusion? āLLMs will only get more convincing from now on.ā Great for productivity, concerning for truth.
Hereās what you need to know about AI today:
We break down Microsoftās 1 hour agent course.
Claude now has a Deep Research mode.
Lawmakers from all 50 states oppose new AI āanti-regulation.ā
Godfather of AI launches $30M nonprofit to improve AI.

Microsoft Just Dropped an Hour-Long Free Course to Turn You Into an AI Agent Builder.
Tired of hearing about āAI agentsā all the time? Still not sure what they are, or how to build one? Microsoftās got you covered. They recently released a free, one-hour āAI Agents for Beginnersā course, broken into ten 5-minute lessons.
So, whatās an agent? Microsoft says to think of it as a smart AI with:
A Brain (LLM): For understanding, planning, and reasoning.
Memory: Short-term (current chat) and long-term (your preferences).
Tools: Access to external functions or data (like flight booking or weather apps).
The course guides you through building āagentsā using frameworks like Semantic Kernel (for production agents) and Autogen (for multi-agent experiments), often with free models via GitHub.
Hereās a rapid-fire look at what you'll learn:
Designing Good Agents: Learn how to make your AI helpers easy to find, clear about what they can (and can't) do, and smart enough to get better by remembering past chats.
Giving Agents Tools (Tool Use): Discover how to let your agents actually do things by giving them access to real-world functions, like booking a flight through an actual booking system.
Smarter Information Lookup (Agentic RAG): See how agents can understand complicated questions, find information from different places (like your company documents and a live online service), and then put it all together for a complete answer.
Breaking Down Big Tasks (Planning): Find out how agents can take a big request, like āplan my Paris trip,ā and chop it into smaller, manageable steps like booking the flight, then the hotel.
AI Teamwork (Multi-Agent Systems): Learn how to get multiple AI agents to work together as a team, where each one might have a special skill, like one agent writing a draft and another agent reviewing it.
Learning As They Go (Metacognition): Understand how to design agents that can āthink about their own thinking,ā noticing your preferences over time and using that to give you better suggestions in the future.
Getting Ready for Real Users (Putting it in Production): Learn the important steps for making sure your agent works well when real people start using it, including how to check its performance and plan for when things might go wrong (like an online service it uses temporarily breaking).
Why it matters: AI agents *should be able to automate much more complex tasks than current chatbots. By making this knowledge accessible, Microsoft is lowering the barrier to entry for developers and even curious non-coders (like you, perhaps??) to start building more sophisticated AI applications (donāt worry, if this over your head, we share some more user-friendly agent tools in the TTT below!)
Check out the full AI Agents for Beginners course on GitHub here. It includes all the written lessons, code samples (Jupyter Notebooks), and the video walkthroughs.

FROM OUR PARTNERS
StoryAI by Fullstory
Meet StoryAI: your shortcut to smarter decision-making.
Powered by conversational AI agents, teams can analyze multiple user sessions, get instant answers to key questions, and predict behavior with confidence.
Turn insights into action and data into outcomesāfaster than ever. The future of behavioral data starts right nowālike, as soon as you click the button below. Just saying.

Prompt Tip of the Day
Something weāve been doing lately when we need to summarize something is asking our AI to summarize āwith 100% fidelity to the original.ā This phrasing helps the AI attempt to maintain the original meaning of the text even when condensing it.
We saw some similar prompt advice in this thread, which has some other good ideas too, such as this section of the prompt:
āYou must condense [this document] without summarizing, without deleting key examples, tone, or causal logic, while maintaining logical flow and emotional resonance. Fidelity to meaning and tone always outweighs brevity.ā
The rest of the prompt might not be necessary depending on what you need, but try the above part out and see if it improves your summarized / condensed outputs!

Treats To Try.
*Asterisk = from our partners. Advertise in The Neuron here.
*Incogni removes your personal data from the open internet so scammers and identity thieves canāt access it. Protect yourself online with Incogniāget 55% off with code NEURON.
n8n is a way to create agentic workflows (if not full-on agents) thatās open-source and free for you to self-host.
If you prefer somebody else hosting your agents and donāt mind paying, check out Lindy or CrewAI for enterprise.
Zapier and Make are two other tools that aim to make it easier to connect multiple tools and services together for an AI to use in sequence.
ShumerPrompt is a nice little prompt library from Matt Shumer with a pretty slick UI; itās sorta like a grown-up version of our own Prompt Library experiment.
Claude now has a Research mode (similar to ChatGPTās Deep Research), which are both basically agents that research the web for you.
NotebookLM now lets you share your research notebooks publicly with anyone so others can access your study guides or listen to AI-generated podcast summaries of your content.

Around the Horn.
Hereās a great video about corporate āAI washingā and how companies are using the keyword āAIā to justify massive investments or headcount cuts; the funniest part is that a company called BuilderAI was literally just using humans in India posing as AI (hence the joke AI = Actually Indians).
Over 260 US state legislators from all 50 states opposed a federal proposal for a 10-year ban on state AI regulation.
Anthropic apparently has restricted vibe-coding tool Windsurf's access to Claude models.
The Trump administration reorganized the U.S. AI Safety Institute into the Center for AI Standards and Innovation.
OpenAI launched internet access for its Codex software engineering agent for ChatGPT Plus subscribers.
Yoshuo Bengio (a so-called godfather of AI) raised $30M for LawZero, a non-profit to make AI āless-human-like.ā
Claude has a blog where āClaude Explainsā complicated code topics to you.

Under the Hood
AgenticSeek is a fully open AI agent that browses the web, codes, and plans tasks locally on your device (try this instead of paying cloud subscriptions).
Hereās how to master Claude Code in 30 minutes, and everything to know about OpenAI Codex in 5 minutes as well as a slightly longer, 19-min in-depth tutorial from Helena Liu.
If youāre going to get real serious about building AI agents, then youāre going to need to learn about building MCP serversāand this video explains that REAL well.
Also, Claude released some new agent-building capabilities in the API, as did Mistral.
Landing AI from Andrew Ng has a new document extractor agentātry it here.
GitHub Agent Mode completes entire coding projects for you by automatically editing multiple files, running terminal commands, and fixing errors as they happen (read more).
Are you a software engineer who wants to become an AI engineer? Then this podcast interview w/ Janvi Kalra is for you!
If youāre an AI engineer and āwant to be 5 years aheadā in AI land, you could read all of DeepSeekās papers.
This is another good X thread of āthe top 50ā AI papers since 2017.

A Cat's Commentary.


![]() | Thatās all for today, for more AI treats, check out our website. NEW: Our podcast is making a comeback! Check it out on Spotify. |

| ![]() |