Placement
Start here
Three questions, then a track. The point is to stop you from starting in the wrong place, which is the single most common reason people bounce off this subject and conclude it isn't for them.
Last verified 11 August 2026 · All six linked resources opened and confirmed on that date
Which one are you?
- Have you used an AI chatbot for real work? If no, you're Curious.
- Do you want to write code that calls a model? If yes, you're Builder.
- Otherwise you're Practical, which is where most people are and where the internet serves you worst.
Every resource below was opened and checked
On 11 August 2026 each resource on this page was visited directly to confirm it exists, what it contains, and what it costs. Where a site does not publish its pricing, the tag says price not stated rather than guessing — that is a real answer, not a placeholder. Nothing here is an affiliate link.
Track 01 — Curious
You are not behind. The entire field is about three years into being publicly usable, and most of the people talking confidently about it are also improvising. Your goal here is not to learn how AI works internally. It's to build accurate intuitions about what it does, what it can't do, and why it fails in the specific ways it does.
What to do, in order
- Use one, deliberately, for a week. Pick one real task you do often and do it with an assistant instead. Reading about this is much less useful than ten minutes of contact.
- Learn the three failure modes. Confident wrongness, silent staleness, and losing the thread in long conversations. Knowing these three makes you dramatically harder to mislead.
- Then, one structured course. Not before the above. Courses land much better once you have something to attach them to.
-
Elements of AI
Free
The best genuinely non-technical starting point, and it predates the chatbot boom, which means it teaches concepts rather than product features. Self-paced. Do Part 1 ("Introduction to AI") only for this track: the site states it needs "no complicated math or programming." Part 2 ("Building AI") recommends basic Python and belongs in the Builder track if you get there.
-
Anthropic Academy
Price not stated
Structured courses with completion certificates, including an AI Fluency strand aimed at people rather than developers. Read it as documentation from a company with a product to sell, not as neutral advice about the field, and it's genuinely useful on that basis. The hub page doesn't publish pricing, so check before committing time.
When you can explain why a model might invent a citation → move to Practical.
Track 02 — Practical
This is the underserved middle, and probably where you are. You use these tools most days. You are not going to become a machine-learning engineer and you don't need to. But you're also past the tips-and-tricks stage, and you've noticed that the difference between a bad result and a good one is usually something about how you asked that nobody has explained.
The published material forks badly here: one side is prompt-engineering listicles, the other is “train a transformer from scratch.” Neither answers the actual question, which is how do I get reliably good work out of this thing, and how do I know when to distrust it?
What actually moves the needle
- Understand context. Nearly every mysterious failure in long sessions traces back to how context works. This is the highest-leverage concept on the whole site. → Context windows
- Learn to give reference material, not just instructions. The single biggest quality jump for most people is pasting in the actual document, example, or data instead of describing it.
- Learn what the model cannot know. Training cutoffs, no access to your files unless you give it them, no memory between sessions unless the product adds it. Most “the AI lied to me” stories are one of these three.
- Then, and only then, tooling. Which assistant, which integrations, which automations.
-
Hugging Face Learn
Price not stated
Hands-on and openly accessible. Sits neatly between conceptual and technical: you will touch code, but it explains itself as it goes. For this track, the LLM Course and Agents Course are the relevant two. There is also a Context Course on context engineering, which pairs directly with Context windows. Ignore the robotics, audio, 3D and diffusion tracks unless they're your thing.
-
DeepLearning.AI
Mixed: verify per course
Short, focused, and taught by people who build the things; Andrew Ng teaches several himself. The closest thing to a well-sequenced curriculum at this level. Correction: an earlier version of this page tagged these "free." The catalogue mixes short courses with paid professional certificates and the site publishes no pricing on its course index, so check the individual course before assuming. Start with a short course, not a certificate.
If you find yourself wanting to automate a workflow rather than run it → move to Builder.
Track 03 — Builder
You want a model inside something you're making. The good news is that the barrier here has collapsed: an API call is an HTTP request, and you can have something working in an afternoon. The bad news is that the gap between “working demo” and “thing I'd let a customer use” is almost entirely made of concerns nobody warns you about.
The order that saves you time
- Make one raw API call by hand. Before any framework. Understand the request and response shape yourself, or you will be debugging an abstraction over a thing you don't know.
- Read the pricing model before you build. Cost scales with tokens, output costs multiples of input, and caching changes the maths enormously. → Model facts
- Tool use, then retrieval, then agents. In that order. Agents are the interesting part and the last part; most people attempt them third and get lost.
- Assume it will fail and design for it. Rate limits, refusals, truncated output, malformed responses. This is the actual difference between a demo and a product.
Skip the framework, at first
The strong recommendation for a solo builder is to start with the vendor's own SDK and no orchestration framework at all. Frameworks solve real problems at scale, and they hide exactly the mechanics you need to understand while you're learning. Add one when you feel the specific pain it exists to relieve.
-
Anthropic's "recommended path for new developers"
Free to read
Unusually, the primary source is the best resource here, and it is already sequenced: five ordered steps beginning with making your first API call and securing your credentials. That matches the order recommended above, which is reassuring rather than coincidental. Any third-party tutorial is a second-hand and possibly stale account of this page. Every vendor publishes an equivalent; go to whichever one you're actually building against.
-
fast.ai
Free
For the deeper track, if you decide you want to understand the machinery rather than just call it. The name is the prerequisite: it assumes you can already code, and rewards that. Note this is a different skill from building with models — it's how they work inside. Optional, and worth it if the curiosity is there.
Concepts you'll need either way → Concepts