8 Your AI account: chat, paid, free
9 Your AI account: chat, paid, free
You need at least one chat AI account to read the rest of the book. You probably do not need more than one. This chapter helps you pick.
9.1 What you will get from this chapter
- A working sense of which provider to start with.
- A clear answer to “do I need to pay?”.
- A short note on what each provider does with your prompts.
9.2 Three providers, in plain words
Three frontier providers matter for this book.
- Anthropic — Claude. What this edition was written against. Strong on long, careful reasoning and on coding. The CLI agent we use later (Claude Code) is from the same provider.
- OpenAI — ChatGPT. The most widely used chat AI. Strong on coding and quick responses. Slightly different feel; the same kinds of tasks work.
- Google — Gemini. Strong on long documents and on tasks that involve images or audio. Free tier is generous. Slightly weaker on agentic coding work as of writing.
A fourth — Mistral, EU-hosted — is worth knowing about for privacy-sensitive work. We mention it in passing.
For most chapters, either Claude or ChatGPT will do. Pick one and stick with it for the first half of the book; you can compare in the second half.
9.3 Free vs. paid
The free tier of any major provider gets you through the early chapters. The paid tier ($20/month at the time of writing for both Claude Pro and ChatGPT Plus) gets you:
- Larger and faster models.
- Longer context — you can paste a whole codebook in.
- Higher message limits per day.
- Access to the agent / code features without random timeouts.
For a serious run through the book, paid for one provider is worth the money. Two months of paid tier costs less than a single textbook.
If you are a verified student, GitHub’s Student Developer Pack gives you Copilot Pro for free. Copilot is not the same as a chat AI, but for the IDE-based parts of this book it covers a lot. See the previous chapter.
9.4 What about API access?
API access is a separate account at the same provider, billed by usage rather than by month. You do not need it yet. The book uses API access in Part VI for a few chapters and in the capstone. Total spend for a careful student: under ten dollars. We come back to this in Chapter 25.
9.5 What providers do with your prompts
A short, blunt summary, accurate as of this edition.
- Free tiers. Assume your prompts may be used for training. If you would not be comfortable with a stranger reading what you typed, do not paste it.
- Paid consumer tiers (Claude Pro, ChatGPT Plus, Gemini Advanced). Stricter, but the policies vary. Read the one for your provider; they are short.
- API and enterprise tiers. Generally, your data is not used for training. If you work with sensitive data, this is the tier you need.
- A practical rule for this book. Do not paste real personal data — survey responses with names, scraped social-media data with usernames — into any AI tool, free or paid. The case studies in the book use simulated or already-public data for exactly this reason.
9.6 Which one we use in this book
The chapters are written and tested against:
- Claude Opus 4.7 for most chapters and for the CLI agent.
- ChatGPT 5.5 for cross-checks and for Part VI examples.
You do not need both. Where the two differ in a way that matters, the chapter says so.
9.7 Where AI helps · Where AI bluffs
Helps. Comparing two providers’ behaviour on a real task you give it. Summarising a privacy policy.
Bluffs. Telling you what its own privacy policy says. Models are trained on documents, not on the operational reality of the company they work for. Read the policy on the provider’s website, not from the chat.
9.8 Keep this with you, not the AI
- The provider you pick. It is a meaningful choice and a small commitment.
- What sensitive data, if any, you are willing to send through which tier.
- Whether to pay this month, or to live with the free-tier limits a while longer.
9.9 Try this
Sign up for one chat AI account if you do not already have one. Spend ten minutes asking it to do something analytical you have done by hand before — clean a small CSV, write a regression in Python, summarise a paper you know well. Notice where the answer is good. Notice where it is wrong.
Write down what you found. That is your first “AI and me” reflection of the book.
9.10 AI and me
- How did AI support me here?
- How did AI fail me?
- How did AI extend me?
9.11 Where to go next
Three harnesses — chat, IDE, and CLI. Picking the one (or two) you will use throughout the book.