Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dataflow/gemma-flex-template/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-cloud-aiplatform==1.62.0
google-cloud-aiplatform==1.133.0
google-cloud-dataflow-client==0.8.14
google-cloud-pubsub==2.28.0
google-cloud-storage==2.18.2
Expand Down
2 changes: 1 addition & 1 deletion dataflow/run-inference/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-cloud-aiplatform==1.57.0
google-cloud-aiplatform==1.133.0
google-cloud-dataflow-client==0.8.14
google-cloud-storage==2.10.0
pytest==8.2.0
2 changes: 1 addition & 1 deletion gemma2/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
google-cloud-aiplatform[all]==1.64.0
google-cloud-aiplatform[all]==1.133.0
protobuf==5.29.5
2 changes: 1 addition & 1 deletion generative_ai/embeddings/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.84.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.29.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/evaluation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Updating google-cloud-aiplatform to 1.133.0 introduces a breaking change for Vertex AI Experiments (see CVE-2026-2473). The SDK now requires an explicit staging_bucket or uri when saving results to an experiment. The code in generative_ai/evaluation/pairwise_summarization_quality.py uses Vertex AI Experiments (experiment='pairwise-experiment') without specifying a staging_bucket in vertexai.init(). This may lead to failures with version 1.133.0 due to the new security requirements for experiment storage. Consider updating the sample to provide a staging bucket.

sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/extensions/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/function_calling/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-auth==2.38.0
openai==1.68.2
google-cloud-aiplatform==1.86.0
google-cloud-aiplatform==1.133.0
2 changes: 1 addition & 1 deletion generative_ai/image_generation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/model_garden/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/model_tuning/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Updating google-cloud-aiplatform to 1.133.0 introduces a breaking change for Vertex AI Experiments (see CVE-2026-2473). The SDK now requires an explicit staging_bucket or uri when saving models to an experiment. The code in generative_ai/model_tuning/supervised_example.py currently calls sft.train() without providing a staging bucket (either in the call or via vertexai.init()), which will likely cause it to fail with a ValueError in this new version. Please update the sample code to include a staging bucket.

sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/prompts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.74.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/provisioned_throughput/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
google-cloud-aiplatform==1.82.0
google-cloud-aiplatform==1.133.0
google-auth==2.38.0
2 changes: 1 addition & 1 deletion generative_ai/rag/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
google-cloud-aiplatform==1.87.0
google-cloud-aiplatform==1.133.0
2 changes: 1 addition & 1 deletion generative_ai/reasoning_engine/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
google-cloud-aiplatform[all]==1.133.0
sentencepiece==0.2.0
google-auth==2.38.0
anthropic[vertex]==0.28.0
Expand Down
2 changes: 1 addition & 1 deletion model_garden/gemma/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
google-cloud-aiplatform[all]==1.103.0
google-cloud-aiplatform[all]==1.133.0
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
earthengine-api==1.5.9
folium==0.19.5
google-cloud-aiplatform==1.47.0
google-cloud-aiplatform==1.133.0
pandas==2.2.3
tensorflow==2.12.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pillow==10.3.0
apache-beam[gcp]==2.55.1
google-cloud-aiplatform==1.47.0
google-cloud-aiplatform==1.133.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apache-beam[gcp]==2.46.0
earthengine-api==1.5.9
folium==0.19.5
google-cloud-aiplatform==1.47.0
google-cloud-aiplatform==1.133.0
imageio==2.36.1
plotly==5.15.0
tensorflow==2.12.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Flask==3.0.3
apache-beam[gcp]==2.46.0
google-cloud-aiplatform==1.47.0
google-cloud-aiplatform==1.133.0
gunicorn==23.0.0
pandas==2.2.3
tensorflow==2.12.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
../../serving/weather-model
build==0.10.0
google-cloud-aiplatform==1.47.0
google-cloud-aiplatform==1.133.0