Topic 1 Question 39
You have millions of customer feedback records stored in BigQuery. You want to summarize the data by using the large language model (LLM) Gemini. You need to plan and execute this analysis using the most efficient approach. What should you do?
Query the BigQuery table from within a Python notebook, use the Gemini API to summarize the data within the notebook, and store the summaries in BigQuery.
Use a BigQuery ML model to pre-process the text data, export the results to Cloud Storage, and use the Gemini API to summarize the pre- processed data.
Create a BigQuery Cloud resource connection to a remote model in Vertex Al, and use Gemini to summarize the data.
Export the raw BigQuery data to a CSV file, upload it to Cloud Storage, and use the Gemini API to summarize the data.
ユーザの投票
コメント(4)
- 正解だと思う選択肢: C
Querying BigQuery from a Python notebook and using the Gemini API manually introduces unnecessary complexity and latency. It also requires additional infrastructure (like a notebook environment) and manual intervention. The most efficient approach should minimize data movement, leverage Google Cloud's native integrations, and avoid unnecessary steps like exporting data to external files or manually processing it.
👍 2SaquibHerman2025/02/19 - 正解だと思う選択肢: A
Using Gemini API is better way
👍 1a_vi2025/01/27 - 正解だと思う選択肢: C
better to use the vertex api > gemini integration in BQ
👍 1A4M2025/02/14
シャッフルモード