Skip to content

Commit

Permalink
feat(components): Expand regions supported by `preview.llm.rlhf_pipel…
Browse files Browse the repository at this point in the history
…ine`

PiperOrigin-RevId: 627819341
  • Loading branch information
Googler committed Apr 24, 2024
1 parent a4f01b7 commit 22a98d9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/google-cloud/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Move `preview.model_evaluation.autosxs_pipeline` to `v1.model_evaluation.autosxs_pipeline`.
* Remove default prediction column names in `v1.model_evaluation.classification_component` component to fix pipeline errors when using bigquery data source.
* Drop support for Python 3.7 since it has reached end-of-life.
* Expand number of regions supported by `preview.llm.rlhf_pipeline`.

## Release 2.13.1
* 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`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,19 @@ def validate_pipeline(
# ]
# [ Check CMEK
supported_pipeline_regions = {
'asia-northeast1',
'asia-northeast3',
'asia-southeast1',
'europe-west1',
'europe-west2',
'europe-west3',
'europe-west4',
'europe-west9',
'northamerica-northeast1',
'us-central1',
'us-east4',
'us-west1',
'us-west4',
}
if location not in supported_pipeline_regions:
raise ValueError(
Expand Down

0 comments on commit 22a98d9

Please sign in to comment.