This guide shows how to migrate from Gemini 1.0 and Gemini 1.5 models (both Flash and Pro) to Gemini 2.0 models.
Differences between Gemini 1.5 and Gemini 2.0
The following are some differences between Gemini 2.0 and our 1.0 and 1.5 models:
- Only Gemini 1.5 and 2.0 are supported in the Google Gen AI SDK. Gemini 1.0 is not supported. This is important because your response structure varies based on what SDK you're using.
- Gemini 2.0 supports Multimodal Live API and multimodal generation.
- Their safety categories are different. To learn about the differences, visit Key differences between Gemini and other model families.
Setup and migration
Gen AI SDK
We recommend that you migrate to the Gen AI SDK when upgrading to Gemini 2.0.
If you choose to use the Gen AI SDK, the setup process is different from the Vertex AI SDK.
For more information, visit Google Gen AI SDK.
Install
pip install --upgrade google-genai
Set environment variables to use the Gen AI SDK with Vertex AI:
# Replace the `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION` values # with appropriate values for your project. export GOOGLE_CLOUD_PROJECT=GOOGLE_CLOUD_PROJECT export GOOGLE_CLOUD_LOCATION=us-central1 export GOOGLE_GENAI_USE_VERTEXAI=True
Replace GOOGLE_CLOUD_PROJECT
with your Google Cloud project ID, and replace
GOOGLE_CLOUD_LOCATION
with the location of your Google Cloud project (for example,
us-central1
).
Vertex AI SDK
If you reuse the Vertex AI SDK, the setup process is the same for the 1.0, 1.5, and 2.0 models. For more information, see Introduction to the Vertex AI SDK for Python.
Install the SDK:
pip install --upgrade --quiet google-cloud-aiplatform
The following is a short code sample that uses the Vertex AI SDK for Python:
Replace PROJECT_ID
with your Google Cloud project ID, and replace
LOCATION
with the location of your Google Cloud project (for example,
us-central1
). Then, change the model ID from gemini-1.5-flash-002
to gemini-2.0-flash
.