Matching a model task to a given business requirement
For a given business requirement, the exam expects you to match it to the correct model task type (e.g., text generation, summarization, extraction, classification, embedding/retrieval, or translation) rather than defaulting to a single general-purpose LLM approach. Choosing the right task type drives downstream decisions like model selection, evaluation metrics, and pipeline architecture (e.g., RAG vs. fine-tuning vs. simple prompting).
1 · Learn the must-know
- Question answering over private/proprietary documents typically requires retrieval-augmented generation (RAG) using embeddings and a vector search index, not just a base LLM.
- Semantic similarity, clustering, or document search tasks require an embedding model, not a text-generation model.
- Summarization and extraction tasks can often use smaller, cheaper, or specialized models rather than the largest general-purpose LLM, which is more cost-effective for production.
- Classification tasks (e.g., sentiment, intent, routing) may be solved with either a fine-tuned traditional ML model or an LLM via prompting, depending on latency, cost, and accuracy needs.
- Multi-step business requirements (e.g., summarize then classify then respond) often require chaining multiple model calls or tools rather than a single prompt.
- Selecting a task that is over-powered for the requirement (e.g., using a large generative model for simple classification) increases cost and latency without improving business outcomes.
2 · Check your understanding
A Generative AI Engineer at a telecom company is building a system to route 15,000 inbound support emails per day into one of eight fixed departments (billing, technical, retention, sales, and others). Routing must complete in under 300 milliseconds per email, and the set of department labels never changes. Which model task should the engineer select to meet this requirement?
What you have tried across Databricks GenAI Engineer's objectives, not a readiness score.
Design Applications10.71% of the exam*0 of 6 tried
Data Preparation14.29% of the exam*0 of 8 tried
Application Development23.21% of the exam*0 of 13 tried
Assembling and Deploying Applications26.79% of the exam*0 of 15 tried
Governance7.14% of the exam*0 of 4 tried
Evaluation and Monitoring17.86% of the exam*0 of 10 tried
* Our estimate. Databricks publishes no section weights.
3 · Keep going
Ready for more? Take a weighted mock or try free practice questions.