GENERATIVE-AI-LEADER · Question #69
A regional artisan bakery plans to launch a chatbot that accepts custom cake delivery orders. The assistant must guide a structured dialogue so it gathers every required detail before submitting the o
The correct answer is C. Dialogflow API. Dialogflow API is Google Cloud's purpose-built service for goal-directed, task-completion conversations. It models conversations as 'intents' (what the user wants) and 'entities' (the required data slots, such as cake size, flavor, and delivery address). Dialogflow tracks which e
Question
A regional artisan bakery plans to launch a chatbot that accepts custom cake delivery orders. The assistant must guide a structured dialogue so it gathers every required detail before submitting the order, including cake size, flavor choices, and the recipient's delivery address. If a customer says, "I need a medium chocolate cake", the assistant must detect that the address is still missing and ask for it. Which Google Cloud service is designed to run goal directed conversations that identify user intents and extract required entities to complete the task?
Options
- AVertex AI Search
- BNatural Language API
- CDialogflow API
- DGemini API
How the community answered
(31 responses)- A3% (1)
- B3% (1)
- C94% (29)
Explanation
Dialogflow API is Google Cloud's purpose-built service for goal-directed, task-completion conversations. It models conversations as 'intents' (what the user wants) and 'entities' (the required data slots, such as cake size, flavor, and delivery address). Dialogflow tracks which entities have been filled and which are still missing, automatically prompting the user for outstanding details before the order can be submitted. Vertex AI Search (A) is for document/data retrieval, Natural Language API (B) analyzes text sentiment and syntax but does not manage dialogue state, and the Gemini API (D) is a general-purpose generative model with no built-in dialogue slot-filling framework.
Topics
Community Discussion
No community discussion yet for this question.