A large enterprise company is experiencing challenges managing their model. They have many versions of their model, including the code, data, and parameters used to train the models. They need to find a solution to manage versions, track changes, and stay organized throughout their lifecycle. What Gemini Enterprise Agent Platform tool should the company use?
Correct Answer: B
Model Registry provides a centralized repository for organizing and governing machine learning models and their versions throughout the model lifecycle. It allows teams to register models, retain version history, associate metadata, track lineage and deployment status, and consistently identify which model artifact is approved or operating in an environment. These capabilities directly address the company's need to manage numerous versions and remain organized. Model Monitoring observes deployed model behavior, including performance changes and data drift, but is not the primary version-management repository. Pipelines automate repeatable machine learning workflows such as training, evaluation, and deployment. Feature Store manages reusable machine learning features rather than complete model versions and their lifecycle metadata. Consequently, Model Registry is the appropriate tool for tracking, organizing, and controlling the company's evolving model assets.
Question 2
What does Vertex AI Search enable companies to do?
Correct Answer: D
Question 3
A company wants to use generative AI to create a chatbot that can answer customer questions about their products and services. They need to ensure that the chatbot only uses information from the company's official documentation. What should the company do?
Correct Answer: D
The core requirement is to guarantee that the chatbot only uses information from the company's official documentation and does not rely on its general knowledge base. This is crucial for ensuring factual accuracy, relevance to the company's specific products, and preventing the generation of fabricated or incorrect information (hallucinations). The specific technique designed to address this challenge is Grounding. Grounding is the process of connecting the Large Language Model's (LLM's) responses to a trusted, verifiable source of information, such as an organization's internal documents, databases, or live data feeds. When an LLM is grounded, it is forced to base its answers only on the provided context, effectively preventing it from drawing on its broad, generalized training data. Grounding is often implemented using a method called Retrieval-Augmented Generation (RAG), particularly with tools like Google Cloud's Vertex AI Search, which indexes the official documentation and feeds the relevant snippets to the model.
Question 4
An organization is collecting data to train a generative AI model for customer service. They want to ensure security throughout the ML lifecycle. What is a critical consideration at this stage?
Correct Answer: A
The stage mentioned is Data Collection/Training Data Preparation. In the machine learning lifecycle, this initial stage is where raw data is ingested and processed. If the model is being trained for customer service, the data (e.g., customer transcripts) is highly likely to contain sensitive information (like Personally Identifiable Information or PII). Therefore, the most critical security and privacy consideration at this stage is protecting the integrity and confidentiality of the data itself. Implementing strong access controls and protecting sensitive information (A) is the essential first step in a secure AI pipeline, aligning with Google's Secure AI Framework (SAIF). If data access is not controlled and sensitive data is not de-identified or redacted before it is used for training, the resulting model could leak that sensitive information to users. Options B, C, and D are all important controls, but they occur at later stages of the ML lifecycle: B (Software patches/latest versions) is part of deployment and management. C (Ethical guidelines/fairness) is a Responsible AI goal implemented via guardrails and testing (later stages). D (Monitoring) is an MLOps step that happens after deployment. The critical consideration at the data collection stage is ensuring the data's security and privacy before it influences the model. (Reference: Google Cloud guidance on securing generative AI emphasizes that one of the most significant risks is data leakage, making safeguarding training data and implementing identity and access control the foundational steps in the data ingestion and preparation phases.)
Question 5
A company is using a language model to solve complex customer service inquiries. For a particular issue, the prompt includes the following instructions: "To address this customer's problem, we should first identify the core issue they are experiencing. Then, we need to check if there are any known solutions or workarounds in our knowledge base. If a solution exists, we should clearly explain it to the customer. If not, we might need to escalate the issue to a specialist. Following these steps will help us provide a comprehensive and helpful response. Now, given the customer's message: 'My order hasn't arrived, and the tracking number shows no updates for a week,' what should be the next step in resolving this?" What type of prompting is this?
Correct Answer: D
The prompt explicitly instructs the Large Language Model (LLM) to perform a step-by-step reasoning process before arriving at the final answer. The instructions lay out a sequential series of intermediate steps: "first identify," "then check," "if a solution exists, explain," "if not, escalate." This technique is known as Chain-of-Thought (CoT) Prompting. CoT is a powerful prompt engineering technique where the user or developer explicitly includes intermediate reasoning steps in the prompt. This guides the model to break down a complex, multi-step problem into smaller, manageable, logical steps, significantly improving its reasoning ability and the accuracy of its final output for complex queries like customer service troubleshooting or multi-step analysis. Zero-shot (A) would be the raw question without any structure. Few-shot (B) would involve providing examples of successfully solved problems. Role-based (C) would involve assigning a persona (e.g., "Act as a customer service expert") but would not explicitly mandate the sequential process. The inclusion of the explicit steps ("first identify," "then check," etc.) is the defining characteristic of Chain-of-Thought prompting. (Reference: Google's courses on Prompt Engineering classify Chain-of-Thought prompting as the technique that improves reasoning by explicitly giving the model a series of sequential, intermediate steps to follow to arrive at a better answer for complex tasks.)