Skip to content

AI · 2026-08-10 · 5 min read

Small AI experiments: learning by building

Building small AI-assisted interfaces teaches more than reading about AI. Notes from SeeMentor AI and the portfolio chat widget.

A lot of AI learning starts with reading. But the lessons that stick come from building — even when the thing is small. My first real AI-adjacent projects were interfaces: SeeMentor AI and the chat assistant on this portfolio.

Start with a conversation box

The simplest useful AI project is a chat interface: somewhere to type, somewhere to show the reply, and logic in between. Building that taught me more about how AI products feel than any article.

  • Typing feedback — the user needs to know the question was received.
  • Reply pacing — showing progress keeps people from leaving.
  • Prompt hints — suggested questions guide first-time users.
  • Each of those is a UI decision. AI is not just the model; it is the whole experience around the model.

    Rules make a small assistant useful

    The portfolio assistant answers who I am, what I am learning, and how to reach me. Small known topics with curated answers, plus a graceful fallback outside that set.

    matchTopic(question) -> curated reply, else honest fallback

    Knowing what you cannot answer well matters as much as what you can. A good fallback is a feature, not a failure.

    Why small is the right size

    A small experiment has a finished loop: plan, build, test, learn — in days, not months. A finished small project teaches more than a grand idea never started.

    Ship the small thing. The next small thing will be bigger.

    What next

    Prompt design experiments and a notes summarizer. Both interface-first — small, honest, built to be used.

    Closing

    You do not need a lab to learn AI. You need a text box, a fallback reply, and patience to make it feel good.

    J

    Jitesh Prakash — teen tech creator writing about coding, AI, and cybersecurity.

    Ask AI