SaveMyCert
Log in
5 of 5 free questions left today·for unlimited practice
Fundamentals of gen AI

Generative AI Concepts: Foundation Models, LLMs, and Business Use Cases

12 min readGenAI Leader · Fundamentals of gen AIUpdated

Generative AI is a category of artificial intelligence that creates new content — text, images, code, audio, and video — by learning patterns from vast amounts of existing data. It sits inside a hierarchy: artificial intelligence is the broad goal of machines performing tasks that normally require human intelligence, machine learning is the technique of learning from data instead of following hand-written rules, and generative AI is the branch of machine learning that produces original output rather than only classifying or predicting. In this lesson you will learn the core vocabulary the exam expects — foundation models, large language models, multimodal models, diffusion models, prompt engineering, and prompt tuning — plus the three machine learning approaches, the five stages of the machine learning lifecycle, how to choose a foundation model for a business use case, and the four business patterns where gen AI delivers value: create, summarize, discover, and automate.

What you’ll learn
  • Define artificial intelligence, machine learning, natural language processing, and generative AI, and explain how they relate
  • Distinguish foundation models, large language models, multimodal foundation models, and diffusion models
  • Compare supervised, unsupervised, and reinforcement learning approaches
  • Identify the five stages of the machine learning lifecycle and the Google Cloud tools that support each stage
  • Evaluate foundation models for a business use case using factors such as modality, context window, security, cost, and performance
  • Recognize business use cases where gen AI can create, summarize, discover, and automate

How AI, machine learning, and generative AI relate

Artificial intelligence (AI) is the umbrella discipline, machine learning (ML) is a technique within it, and generative AI is a specialized branch of machine learning — each term is a narrower circle inside the previous one. AI describes any system that performs tasks associated with human intelligence, such as understanding language, recognizing images, or making decisions. Machine learning achieves this by training models on data so they improve from experience instead of relying on explicitly programmed rules. Generative AI goes one step further: rather than only classifying inputs or predicting a number, it produces new content that did not exist before.

Natural language processing (NLP) is the field of AI concerned with understanding and generating human language. It powers translation, sentiment analysis, and chat experiences, and it is the foundation on which large language models are built.

ConceptWhat it doesBusiness example
Artificial intelligenceMachines performing tasks that normally need human intelligenceA system that routes support tickets to the right team
Machine learningLearns patterns from data to classify or predictA model that predicts which customers are likely to churn
Generative AICreates new content: text, images, code, audio, videoGemini writing a first draft of a product announcement

On the exam, the reliable test is the output: if the system produces original content, it is generative AI; if it labels or forecasts, it is traditional (predictive) machine learning.

Foundation models and large language models

A foundation model is a large AI model pretrained on a vast, broad dataset that can then be adapted to many different downstream tasks — one model serving as the foundation for summarization, drafting, classification, translation, and more. This reuse is the business breakthrough: instead of building a separate model from scratch for every task, an organization starts from a pretrained foundation model and adapts it, which dramatically reduces the time, data, and cost needed to put AI to work.

A large language model (LLM) is a foundation model specialized in language. Trained on enormous volumes of text, an LLM predicts the most likely next words in a sequence, which lets it answer questions, draft documents, translate, and write code. Google's Gemini family is the flagship example, and Gemma is Google's family of lightweight open models that organizations can run and adapt themselves.

A multimodal foundation model can understand and combine more than one type of data — text, images, audio, and video — in a single model. Gemini is natively multimodal: you can show it a photo of a shelf display and ask for a written compliance report, or give it a recorded meeting and ask for action items. For business leaders, multimodality matters because most enterprise information is not plain text; a model that reads documents, screenshots, and recordings unlocks far more of an organization's knowledge.

Diffusion models: how gen AI creates images and video

A diffusion model is a type of generative model that creates images by learning to reverse noise: during training it watches images being progressively degraded into random static, and it learns to run that process backwards, refining pure noise step by step into a coherent picture that matches a text description. This is the technique behind modern image generation, and it is the concept the exam expects you to associate with visual content creation.

In the Google Cloud portfolio, Imagen is the foundation model for generating and editing high-quality images from text prompts, and Veo is the foundation model for generating video. A marketing team can use Imagen to produce campaign visuals and product imagery without a photo shoot, and use Veo to storyboard or generate short video content — compressing creative cycles from weeks to hours.

You do not need the mathematics for this exam. What matters is the mapping: language tasks point to large language models such as Gemini, image generation points to diffusion-based models such as Imagen, and video generation points to Veo. When a scenario describes creating visual assets from a written brief, diffusion models and Imagen are the concepts being tested.

Prompt engineering versus prompt tuning

Prompt engineering and prompt tuning are both ways to get better output from a foundation model without retraining it from scratch, but they work at different levels. Prompt engineering is the human craft of writing effective instructions: giving the model a clear task, context, examples, and a desired format. It requires no technical infrastructure — anyone can do it in the Gemini app — and it is usually the first, cheapest lever an organization pulls to improve results.

Prompt tuning is a lightweight, machine-driven customization technique: instead of a person rewording instructions, the system learns an optimized prompt representation from examples, steering the model toward a specific task or house style. The base model's weights stay frozen, which makes prompt tuning far cheaper and faster than full fine-tuning while still delivering consistent, task-specific behavior.

For a leader, the decision logic runs in order of cost and effort: start with prompt engineering (no training, immediate), move to prompt tuning when you need repeatable task-specific behavior at scale, and reserve fine-tuning — actually adjusting the model with your own data — for cases where the first two cannot reach the required quality. Exam questions often present this as a cost-efficiency choice: the answer that adapts the model with the least training effort that meets the need is usually correct.

The three machine learning approaches

Machine learning models are trained in three main ways, and the difference comes down to what kind of feedback the model receives. Supervised learning trains on labeled data — examples paired with the correct answer — so the model learns to map inputs to known outputs. It powers spam filtering (emails labeled spam or not), fraud detection (transactions labeled fraudulent or legitimate), and sales forecasting.

Unsupervised learning trains on unlabeled data and discovers hidden structure on its own. There is no correct answer provided; the model finds groupings and patterns. The classic business example is customer segmentation — clustering shoppers by behavior without anyone defining the segments in advance — along with anomaly detection and market-basket analysis.

Reinforcement learning trains an agent through trial and error: the agent takes actions in an environment and receives rewards or penalties, gradually learning a strategy that maximizes reward. It suits sequential decision problems such as recommendation systems, robotics, and resource optimization. It also plays a role in refining large language models, where human feedback acts as the reward signal that teaches a model to give more helpful, safer answers.

The exam cue is the data: labeled examples with known answers signal supervised learning, unlabeled data explored for patterns signals unsupervised learning, and learning by reward and penalty over repeated attempts signals reinforcement learning.

The five stages of the machine learning lifecycle

The machine learning lifecycle is the end-to-end journey a model travels: data ingestion, data preparation, model training, model deployment, and model management. Understanding it matters to leaders because most gen AI project cost and risk lives in the data and management stages, not in the model itself.

Data ingestion collects raw data from source systems — databases, applications, documents, event streams. On Google Cloud, Cloud Storage holds files and unstructured content, BigQuery ingests analytical data, and Pub/Sub streams real-time events. Data preparation cleans, transforms, and organizes that data so it is usable for training; tools such as Dataflow and BigQuery handle transformation at scale. Poor preparation is the most common reason AI projects underdeliver.

Model training teaches the model from the prepared data, or adapts a pretrained foundation model to your task. Model deployment puts the trained model into production behind an endpoint so applications and agents can call it. Model management is the ongoing work: monitoring quality, tracking versions, watching for drift as real-world data changes, and retraining when performance degrades. Vertex AI — Google Cloud's unified AI platform, whose agent-building capabilities carry the Agent Platform branding — supports training, deployment, and management from a single environment.

Remember the order and the ownership: the lifecycle is a loop, not a line, and management feeds back into new data and retraining for as long as the model serves the business.

How to choose a foundation model for a business use case

Choosing a foundation model is a structured trade-off across eight factors, not a search for a single best model. The exam expects you to match the factor to the scenario.

FactorQuestion it answersWhen it dominates
ModalityWhat data types must the model handle — text, images, audio, video?Analyzing documents with charts, or generating visuals
Context windowHow much information can the model consider in one request?Summarizing long contracts, codebases, or hours of transcripts
SecurityHow is data protected, and does it stay under enterprise control?Regulated industries and confidential data
Availability and reliabilityDoes the model meet uptime needs across regions?Customer-facing, business-critical applications
CostWhat does each request cost at expected volume?High-volume tasks such as classifying millions of tickets
PerformanceIs output quality and speed sufficient for the task?Complex reasoning versus simple, latency-sensitive tasks
Fine-tuningCan the model be trained further on your own data?Specialized domains with unique vocabulary
CustomizationCan behavior be shaped via prompts, tuning, and grounding?Enforcing brand voice or company-specific answers

The practical pattern: a lightweight, lower-cost model often wins for simple high-volume tasks, while a frontier multimodal model with a large context window wins for complex reasoning over rich inputs. Scenario questions reward matching requirements to factors — not defaulting to the most capable model.

Business use cases: create, summarize, discover, automate

Google Cloud frames gen AI business value in four verbs — create, summarize, discover, and automate — and exam scenarios are usually a thin disguise over one of them. Create covers generating new content: text generation for marketing copy and proposals, image generation for creative assets, code generation to accelerate developers, and video generation for training or advertising material.

Summarize condenses long content into short, decision-ready form: distilling a fifty-page report into an executive brief, recapping meetings, or compressing a support ticket history before an agent picks it up. Discover surfaces knowledge that already exists but is hard to find: asking questions across an organization's documents, analyzing data in plain language, and spotting patterns a person would miss. Automate removes manual steps from a workflow: drafting replies, extracting fields from invoices, classifying feedback, and powering personalized user experiences that adapt content to each customer.

Consider a national retailer. It uses gen AI to create product descriptions and seasonal campaign imagery, summarize thousands of customer reviews into weekly insight reports, discover answers from internal merchandising policies through conversational search, and automate personalized email offers for each shopper segment. One foundation model strategy serves all four patterns — which is exactly why foundation models changed the economics of enterprise AI.

Tip. The exam tests this topic mostly through definition-matching and scenario questions: expect to pick the term that fits a description (diffusion model for image generation, multimodal for mixed inputs, prompt tuning versus fine-tuning) or the ML approach that fits a dataset (labeled data signals supervised, pattern discovery in unlabeled data signals unsupervised, reward-driven learning signals reinforcement). Watch for trigger words like 'labeled', 'reward', 'context window', and 'adapt without retraining'. Foundation-model selection questions reward matching a business constraint — cost, security, modality — to the deciding factor rather than choosing the most powerful model.

Key takeaways
  • Generative AI is a branch of machine learning that creates new content; traditional ML classifies or predicts.
  • A foundation model is pretrained on broad data and adapted to many tasks; an LLM is a foundation model specialized in language.
  • Multimodal foundation models like Gemini handle text, images, audio, and video in a single model.
  • Diffusion models generate images by learning to reverse noise — the concept behind Imagen; Veo generates video.
  • Supervised learning uses labeled data, unsupervised finds patterns in unlabeled data, reinforcement learns from rewards and penalties.
  • The ML lifecycle runs data ingestion, data preparation, model training, model deployment, and model management — as a loop.
  • Choose a foundation model by modality, context window, security, availability, cost, performance, fine-tuning, and customization — matched to the scenario.
  • Gen AI business value maps to four verbs: create, summarize, discover, and automate.

Frequently asked questions

What is the difference between AI, machine learning, and generative AI?

Artificial intelligence is the broad field of machines performing tasks that normally require human intelligence. Machine learning is a technique within AI where models learn patterns from data instead of following hand-written rules. Generative AI is a branch of machine learning that creates new content — text, images, code, audio, and video — rather than only classifying inputs or predicting values. Each term is a narrower subset of the one before it.

What is a foundation model in generative AI?

A foundation model is a large AI model pretrained on a vast, broad dataset that can be adapted to many different downstream tasks, such as summarization, drafting, translation, and classification. Instead of building a separate model for every task, organizations adapt one pretrained foundation model — through prompting, tuning, or fine-tuning — which sharply reduces the time, data, and cost of applying AI. Google's foundation models include Gemini, Gemma, Imagen, and Veo.

What is the difference between prompt engineering and prompt tuning?

Prompt engineering is the human practice of writing better instructions for a model — clear tasks, context, examples, and output format — and requires no training or infrastructure. Prompt tuning is a lightweight machine-driven technique that learns an optimized prompt representation from examples while the model's weights stay frozen, giving consistent task-specific behavior at far lower cost than fine-tuning. Organizations typically try prompt engineering first, then prompt tuning, and reserve fine-tuning for cases neither can solve.

What are the five stages of the machine learning lifecycle?

The machine learning lifecycle has five stages: data ingestion (collecting raw data from source systems), data preparation (cleaning and transforming it for training), model training (teaching or adapting the model), model deployment (putting it into production so applications can use it), and model management (monitoring quality, tracking versions, watching for drift, and retraining). It operates as a continuous loop rather than a one-time sequence.

How do you choose the right foundation model for a business use case?

Evaluate candidate models against the requirements of the use case across eight factors: modality (which data types it must handle), context window (how much input it can consider at once), security, availability and reliability, cost at expected volume, performance, fine-tuning support, and customization options. Simple high-volume tasks often favor a lightweight, lower-cost model, while complex reasoning over long or mixed-media inputs favors a frontier multimodal model with a large context window.

What are the main business use cases for generative AI?

Generative AI business use cases group into four patterns: create (generating text, images, code, and video), summarize (condensing long reports, meetings, and ticket histories into decision-ready briefs), discover (finding and questioning knowledge across an organization's documents and data), and automate (removing manual workflow steps and delivering personalized user experiences). Most enterprise scenarios are a combination of these four.

Test yourself on this topic
Practice questions with full explanations.
Practice now

Sign up free to mark lessons complete, bookmark topics and track your exam readiness.