THE GENIUS PROJECT
✨ Lesson 4 of 8 · Builder 2 of 4

Build With Google AI Studio

πŸ•’ About 40 minutes πŸ‘¨β€πŸ‘©β€πŸ‘§ Parent's Google account 🌐 aistudio.google.com

Lovable built you an app. Google AI Studio builds you an app with a brain in it. Its Build mode creates apps powered by Gemini, Google's AI model, so your app can chat, quiz, summarize, and explain. And the whole thing runs on a free tier.

What makes AI Studio different

Lovable is best at polished apps that store and show information. AI Studio is best when the app itself needs intelligence. The difference in one line:

Lovable app = screens + your data   Β·   AI Studio app = screens + your data + a model that thinks

Under the hood it is still vibe coding: you describe, Gemini writes the code, you test and refine. Everything from Lessons 1 and 2 applies unchanged.

The screen, mapped

Google AI Studio Chat Build ✨ History Describe the app you want… Build it 1 2 3 1. Pick Build mode 2. Describe your app, then Build 3. Your app runs here, live

Same rule as Lesson 3: Google moves buttons around, but the three zones (choose Build, describe, preview) stay. Find the zones and you are home.

The build, step by step

  1. Parent signs in at aistudio.google.com with their Google account. AI Studio is free; Google's terms make it an adult tool, so the parent owns the session and stays close.
  2. Choose Build in the left menu.
  3. Describe your app using your 5 blocks, plus one NEW block: what the AI inside should do (see the prompt below). Send it and let it build.
  4. Try it in the preview. Because there is a model inside, test the AI parts hardest: give it weird input, an empty answer, a way-too-long answer. Note what happens.
  5. Iterate with the fix-it pattern. One change per message, exactly like Lovable.
  6. Save and share. Your app saves to your (parent's) AI Studio library. Use the share option to send a link, and know that Google may require viewers to sign in.
βœ… Starter prompt: an app with a brain
Build an app called Quiz Me for students revising.

Screens:
1. Home: a big box where I paste my study notes, and a Start Quiz button.
2. Quiz: the app asks me 5 questions about MY notes, one at a time. I type an answer, it tells me if I am right, and explains gently if I am wrong.
3. Results: my score out of 5 and one tip about what to revise next.

The AI inside: generate the 5 questions from the pasted notes only. Do not invent facts that are not in the notes. Keep explanations to 2 sentences, friendly, for a teenager.

Look: calm and clean, white with one deep blue accent, big readable text, works well on a phone.

Rules: if the notes box is empty, ask for notes instead of starting the quiz.
🧠 New skill: prompting the AI inside your app

Notice the prompt has a section telling the built-in AI how to behave ("from the pasted notes only", "2 sentences, friendly"). That is called a system instruction, and writing good ones is a real job skill in 2026. Rule of thumb: tell the inner AI its job, its limits, and its tone, in that order.

Free vs paid on AI Studio

Free tierPaid (pay per use)
Building in AI StudioFree with a Google accountFree (you pay only for heavy model use)
Using Gemini in your appA generous daily allowance of model callsBilled per call once you attach a card and pass free limits
Good forThis whole course and most school projectsAn app with many real users

No card, no surprise bills: without a payment method the app simply pauses when free limits run out that day. Keep it that way for this course.

πŸ”‘ Risk: API keys are house keys

AI Studio can give you an API key: a secret code that lets programs use the account's AI allowance. Treat it like a house key. Never paste it into another website, a Discord chat, or a school computer, and never publish an app with the key visible. Anyone who copies it can spend the account's quota (and money, if billing is on). If a key leaks, the parent deletes it in AI Studio and makes a new one.

Check your understanding

In the Quiz Me app, why does the prompt say "generate questions from the pasted notes ONLY"?

Yes. Models generate; they do not check facts. Limiting the AI to the notes keeps the quiz honest and is your first taste of designing guardrails, which is what professional AI builders spend much of their time on.
βœ… Lesson 4 checklist

Finishing this opens Lesson 5: Replit and Canva Code.