Run it manually
Role-play how the business receives, evaluates, records, and follows up with one lead today.
Zero to MVP AI Bootcamp
Start with a familiar business workflow, then see how software and modern AI turn it into a scalable system.
Today you ship
A practical mental model of software and AI, plus a working project shell for the AI Lead Assistant.
Scroll to move through the presentation.
Build, test, checkpoint, and ship.
Software starts with an operating model people already understand. Someone receives information, applies business rules, makes a decision, records the outcome, and communicates the next action. Software makes that workflow consistent and scalable by assigning each responsibility to a digital component.
Without a connected system, a relationship manager interviews a prospect, records answers in a spreadsheet, asks a specialist by email, updates the CRM, and sends separate follow-ups. Our product connects that same operating workflow.
| Concept | People-led workflow | Digital capability |
|---|---|---|
| Receive information | Meeting, email, or document | A digital form or conversation |
| Pass the request | Email or internal handoff | A secure system connection |
| Apply rules | Coordinator or specialist | Automated decision rules |
| Keep a record | Spreadsheet or CRM entry | Searchable shared storage |
| Recognize patterns | Human experience | Pattern-based assistance |
| Follow up | Manual email or call | Triggered messages and tasks |
| Handle exceptions | Manager judgment | Escalation to a person |
Apply the concept
Success looks like
A one-page business workflow map that Module 2 can relabel with the correct software components.
Watch for
A software product is a conversation between specialized parts. The frontend collects an action, an API carries a structured request to the backend, the backend applies protected rules, and the database stores or returns information before a response travels back.
Think of a restaurant. The menu and dining room are the frontend, the waiter carries a precise request like an API, the kitchen is the backend, the order book is the database, the manager verifies staff identity, and the building is the cloud.
| Concept | Job | Restaurant analogy | Lead Assistant example |
|---|---|---|---|
| Frontend | Serve the visible experience | Menu and dining room | Questions and result screen |
| API | Carry an agreed request/response | Waiter's order ticket | Submit lead answers |
| Backend | Apply protected rules | Kitchen | Validate and qualify lead |
| Database | Store durable records | Order book | Leads and recommendations |
| Authentication | Verify identity | Staff badge | Business owner sign-in |
| Cloud | Run the system online | Restaurant building and utilities | Public app and server |
Apply the concept
Use this prompt
Explain what happens after a visitor submits this form. Trace frontend → internet → API → backend → database → response → frontend. Include authentication, success, validation failure, and server failure. Use a restaurant analogy and then the correct technical terms.
Success looks like
You can trace one click in both directions and explain why private keys and protected rules belong in the backend.
Watch for
The brain is a useful starting analogy, not a literal blueprint for AI. Both receive input, detect patterns, use recent context, and produce a response. A human also has a body, lived experience, goals, emotions, values, and genuine understanding that a language model does not possess.
A child learns the idea of a dog through experiences in the world. A language model learns statistical relationships among tokens from large datasets, then predicts a likely next token when prompted.
| Concept | Human | AI model | Important limit |
|---|---|---|---|
| Input | Senses and lived experience | Tokens, images, audio, or other data | The model receives only encoded data |
| Learning | Experience, teaching, reflection | Training adjusts numerical weights | Training is not human understanding |
| Current focus | Attention and working memory | Prompt and context window | Context is limited and temporary |
| Memory | Personal and semantic memory | Weights plus external storage | A model does not remember a life |
| Response | Intentional thought and action | Predicted output tokens or actions | Plausible output may be wrong |
| Responsibility | Can hold values and accountability | Follows patterns and instructions | Humans remain accountable |
Apply the concept
Use this prompt
Create a careful brain-versus-LLM comparison for a non-technical corporate audience. Separate useful analogies from important differences. Do not claim that an LLM thinks, understands, remembers, or feels exactly like a human.
Success looks like
You can use the analogy to explain AI while clearly stating where it breaks down.
Watch for
AI did not begin with chatbots. The field moved from hand-written rules, through systems that learned statistical patterns, to deep neural networks and transformers trained on enormous datasets. Each wave expanded what machines could do, but none removed the need for clear goals and verification.
An early spam filter might use rules such as 'if the subject contains FREE, flag it.' A machine-learning filter learns patterns from labeled email. A modern language model can explain why a message looks suspicious, but may still make a confident mistake.
How we arrived here
1950s–1960s
Researchers ask whether machines can reason and create early symbolic programs.
1970s–1980s
Humans encode specialist knowledge as rules such as IF condition THEN action.
1990s–2000s
Systems learn patterns from labeled data for search, spam, speech, and recommendations.
2010s
Larger neural networks, datasets, and compute improve vision, speech, and language.
2017
Attention mechanisms enable models to learn relationships across long token sequences efficiently.
2018–2021
Large pretrained models adapt to many tasks through prompts or additional training.
2022–today
Chat, multimodal input, retrieval, tools, and controlled action loops become product building blocks.
| Concept | Plain-English meaning | Familiar example |
|---|---|---|
| Artificial intelligence | The broad field of machines performing tasks associated with intelligence | Planning, vision, speech, recommendations, and language |
| Machine learning | Systems learn patterns from examples instead of receiving every rule | Spam detection and product recommendations |
| Deep learning | Machine learning using multi-layer neural networks | Speech recognition and image understanding |
| Transformer | A neural-network architecture especially effective at relationships across sequences | Modern language and multimodal models |
| Foundation model | A large pretrained model adaptable to many downstream tasks | A base model used for writing, coding, search, or vision |
| Large language model | A foundation model focused on processing and generating language as token sequences | Drafting, extraction, classification, and conversation |
| Generative AI | Systems that create new text, images, audio, video, or code | Chat assistants, image generators, and coding assistants |
Apply the concept
Use this prompt
Teach the history from rule-based AI to modern LLM applications in seven milestones. For each milestone include: approximate period, central idea, familiar example, and one limitation. Avoid implying progress was a single straight line.
Success looks like
You can place LLMs inside the larger AI family and explain the difference between a model being trained and a product using it.
Watch for
An LLM is one component, not the entire AI product. Give it retrieved knowledge and you have a RAG pattern. Give it controlled functions and it can use tools. Let it choose and repeat actions toward a goal, with limits and checks, and you have an agentic system.
Asked about a refund, a plain LLM drafts a general answer. RAG first finds the company's policy. A tool-using workflow checks the order. An agent may gather evidence, select an allowed action, request approval, execute it, and verify the result.
| Concept | What it adds | Use it when | Main risk |
|---|---|---|---|
| Normal software | Deterministic rules | The outcome is known and repeatable | Rules become hard to maintain |
| LLM | Flexible language generation | The task needs interpretation or generation | Confident unsupported output |
| RAG | Retrieved trusted context | Answers depend on private or changing knowledge | Wrong retrieval produces wrong context |
| Tool workflow | Live data or controlled actions | Steps are known in advance | Permissions and integration failures |
| Agent | Chooses and repeats actions | The path varies and needs planning | Runaway cost, unsafe action, hard evaluation |
Complexity should be earned by a requirement, not added because a term is popular.
Apply the concept
Use this prompt
Classify this AI product as: no AI, one LLM call, RAG, fixed tool workflow, or agent. Explain the minimum architecture, required data, risks, evaluation method, and why a more complex pattern is unnecessary.
Success looks like
You can choose the least complex pattern that meets the need and explain why an agent is not automatically better.
Watch for
There is no single best model. A useful choice satisfies the product's quality threshold while meeting limits for speed, cost, privacy, language, context length, modality, tool use, deployment, and licensing. Model catalogs change quickly, so test current candidates with your own cases.
A high-volume category label may need a fast inexpensive model. A difficult coding migration may justify a frontier reasoning model. Sensitive offline summarization may require a smaller open-weight model running inside the organization.
| Concept | Best for | Trade-off |
|---|---|---|
| Base or pretrained | Further training, research, or specialized adaptation | Usually not the right direct interface for an end-user product |
| General instruct | Writing, extraction, classification, support | Balanced rather than strongest at one specialty |
| Reasoning | Complex planning, analysis, math, difficult decisions | Usually slower and more expensive |
| Coding | Code understanding, generation, debugging, repository work | Must still be tested in the real codebase |
| Concept | Best for | Trade-off |
|---|---|---|
| Multimodal | Text plus images, documents, audio, or video | Input support and quality vary by modality |
| Realtime voice | Low-latency spoken interaction | Conversation quality, latency, and interruption handling matter |
| Embedding | Search, similarity, clustering, and RAG retrieval | Produces vectors, not a user-facing answer |
| Small or local | Privacy, offline use, edge devices, high volume | Lower capability or more deployment work |
| Concept | Provider | Good starting point | Consider when |
|---|---|---|---|
| GPT-5.6 family | OpenAI | General, reasoning, coding, tools, and multimodal products | You want a broad hosted platform and frontier models |
| Claude Opus 5 / Sonnet 5 | Anthropic | Long work, coding, professional tasks, and agents | You value strong instruction following and agentic workflows |
| Gemini 3.1 Pro / 3.6 Flash | Multimodal, long context, Google ecosystem, or high-throughput work | You need a Pro-versus-Flash quality, speed, and cost choice | |
| Grok 4.5 | xAI | Reasoning, coding, tools, and realtime information products | Its capabilities, ecosystem, and policies fit the product |
This is a dated snapshot. Availability and names can change, so verify the live provider catalog.
| Concept | Organization | Consider when | Verify first |
|---|---|---|---|
| Llama 4 | Meta | You need a broad ecosystem and deployment choices | License, hardware, and task quality |
| Qwen 3.6 / Qwen Coder | Alibaba Qwen | You need multilingual, coding, or varied model sizes | License and language-specific evaluation |
| DeepSeek V4 family | DeepSeek | You want cost-conscious reasoning or coding options | Current release status, hosting, data policy, and license |
| Mistral Small 4 and specialists | Mistral AI | You value efficient models, deployment control, or European hosting | License and whether a specialist or general model fits |
| Gemma / Phi families | Google / Microsoft | You need smaller local, research, or edge-friendly options | Device performance and task capability |
Open-weight is not automatically open source, free, private, or permitted for every commercial use.
Apply the concept
Use this prompt
Help me select an AI model for this product. First ask for task, modalities, languages, quality threshold, context size, latency, volume, budget, privacy, region, tool use, and hosting constraints. Then propose three candidates and a small evaluation plan. Do not choose from benchmark rank alone.
Success looks like
Your selection can be defended with test results and product constraints, not brand preference.
Watch for
Model catalogs change
This deck is a dated snapshot. Before choosing or deploying a model, confirm its current name, status, pricing, availability, context, modalities, and deprecation policy.
Current GPT and specialist models
Current Claude tiers and selection guidance
Current Pro, Flash, multimodal, and specialist models
Current Grok catalog and capabilities
Official Llama family information
Official Qwen organization and open-weight releases
Current hosted models and pricing
Commercial and open-weight model families
Model-family snapshot last reviewed: 31 July 2026.
Build brief
Translate the manual lead process into a software-and-AI blueprint, customize the reference business, and confirm the starter application works.
User story
As a visitor, I immediately understand what the assistant will help me decide.
Role-play how the business receives, evaluates, records, and follows up with one lead today.
Assign each manual step to the frontend, backend, API, database, AI, automation, or human.
Pick one service business and describe the customer decision the assistant will support.
Complete: Answer a few questions and receive a clear recommendation for your next step.
Update the starter's business name and promise, then confirm it opens locally.
Record the working version before adding the interactive journey tomorrow.