Skip to content

Commit 22a98d9

Browse files
author
Googler
committed
feat(components): Expand regions supported by preview.llm.rlhf_pipeline
PiperOrigin-RevId: 627819341
1 parent a4f01b7 commit 22a98d9

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

components/google-cloud/RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Move `preview.model_evaluation.autosxs_pipeline` to `v1.model_evaluation.autosxs_pipeline`.
44
* Remove default prediction column names in `v1.model_evaluation.classification_component` component to fix pipeline errors when using bigquery data source.
55
* Drop support for Python 3.7 since it has reached end-of-life.
6+
* Expand number of regions supported by `preview.llm.rlhf_pipeline`.
67

78
## Release 2.13.1
89
* Fix model name preprocess error, pass correct model to `ModelImportEvaluationOp` component in `v1.model_evaluation.evaluation_llm_text_generation_pipeline` and `v1.model_evaluation.evaluation_llm_classification_pipeline`.

components/google-cloud/google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,19 @@ def validate_pipeline(
7979
# ]
8080
# [ Check CMEK
8181
supported_pipeline_regions = {
82+
'asia-northeast1',
83+
'asia-northeast3',
84+
'asia-southeast1',
85+
'europe-west1',
86+
'europe-west2',
87+
'europe-west3',
8288
'europe-west4',
89+
'europe-west9',
90+
'northamerica-northeast1',
8391
'us-central1',
92+
'us-east4',
93+
'us-west1',
94+
'us-west4',
8495
}
8596
if location not in supported_pipeline_regions:
8697
raise ValueError(

0 commit comments

Comments
 (0)