google-cloud-pipeline-components 2.14.0__py3-none-any.whl → 2.15.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of google-cloud-pipeline-components might be problematic. Click here for more details.

Files changed (64) hide show
  1. google_cloud_pipeline_components/_implementation/llm/deployment_graph.py +10 -26
  2. google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py +1 -1
  3. google_cloud_pipeline_components/_implementation/llm/infer_preprocessor.py +109 -0
  4. google_cloud_pipeline_components/_implementation/llm/online_evaluation_pairwise.py +8 -0
  5. google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py +5 -6
  6. google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py +24 -0
  7. google_cloud_pipeline_components/_implementation/model_evaluation/__init__.py +0 -12
  8. google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/evaluation_llm_embedding_pipeline.py +2 -1
  9. google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py +14 -0
  10. google_cloud_pipeline_components/_implementation/starry_net/__init__.py +41 -0
  11. google_cloud_pipeline_components/_implementation/{model_evaluation/import_evaluation → starry_net/dataprep}/__init__.py +1 -2
  12. google_cloud_pipeline_components/_implementation/starry_net/dataprep/component.py +159 -0
  13. google_cloud_pipeline_components/_implementation/starry_net/evaluation/__init__.py +13 -0
  14. google_cloud_pipeline_components/_implementation/starry_net/evaluation/component.py +23 -0
  15. google_cloud_pipeline_components/_implementation/starry_net/evaluation/evaluation.yaml +197 -0
  16. google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/__init__.py +13 -0
  17. google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py +62 -0
  18. google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/__init__.py +13 -0
  19. google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/component.py +77 -0
  20. google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/__init__.py +13 -0
  21. google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/component.py +97 -0
  22. google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/__init__.py +13 -0
  23. google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/component.py +76 -0
  24. google_cloud_pipeline_components/_implementation/starry_net/set_test_set/__init__.py +13 -0
  25. google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py +48 -0
  26. google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/__init__.py +13 -0
  27. google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/component.py +70 -0
  28. google_cloud_pipeline_components/_implementation/starry_net/set_train_args/__init__.py +13 -0
  29. google_cloud_pipeline_components/_implementation/starry_net/set_train_args/component.py +90 -0
  30. google_cloud_pipeline_components/_implementation/starry_net/train/__init__.py +13 -0
  31. google_cloud_pipeline_components/_implementation/starry_net/train/component.py +209 -0
  32. google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/__init__.py +13 -0
  33. google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py +59 -0
  34. google_cloud_pipeline_components/_implementation/starry_net/upload_model/__init__.py +13 -0
  35. google_cloud_pipeline_components/_implementation/starry_net/upload_model/component.py +23 -0
  36. google_cloud_pipeline_components/_implementation/starry_net/upload_model/upload_model.yaml +37 -0
  37. google_cloud_pipeline_components/_implementation/starry_net/version.py +18 -0
  38. google_cloud_pipeline_components/container/utils/error_surfacing.py +45 -0
  39. google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py +36 -7
  40. google_cloud_pipeline_components/preview/llm/infer/component.py +22 -25
  41. google_cloud_pipeline_components/preview/llm/rlhf/component.py +15 -8
  42. google_cloud_pipeline_components/preview/model_evaluation/__init__.py +4 -1
  43. google_cloud_pipeline_components/{_implementation/model_evaluation/import_evaluation/component.py → preview/model_evaluation/model_evaluation_import_component.py} +4 -3
  44. google_cloud_pipeline_components/preview/starry_net/__init__.py +19 -0
  45. google_cloud_pipeline_components/preview/starry_net/component.py +443 -0
  46. google_cloud_pipeline_components/proto/task_error_pb2.py +32 -0
  47. google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml +13 -13
  48. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py +10 -0
  49. google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml +4 -1
  50. google_cloud_pipeline_components/v1/model_evaluation/error_analysis_pipeline.py +8 -10
  51. google_cloud_pipeline_components/v1/model_evaluation/evaluated_annotation_pipeline.py +2 -2
  52. google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_feature_attribution_pipeline.py +2 -2
  53. google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_pipeline.py +2 -2
  54. google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py +2 -2
  55. google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py +2 -2
  56. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py +4 -2
  57. google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py +8 -2
  58. google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py +1 -0
  59. google_cloud_pipeline_components/version.py +1 -1
  60. {google_cloud_pipeline_components-2.14.0.dist-info → google_cloud_pipeline_components-2.15.0.dist-info}/METADATA +17 -20
  61. {google_cloud_pipeline_components-2.14.0.dist-info → google_cloud_pipeline_components-2.15.0.dist-info}/RECORD +64 -32
  62. {google_cloud_pipeline_components-2.14.0.dist-info → google_cloud_pipeline_components-2.15.0.dist-info}/WHEEL +1 -1
  63. {google_cloud_pipeline_components-2.14.0.dist-info → google_cloud_pipeline_components-2.15.0.dist-info}/LICENSE +0 -0
  64. {google_cloud_pipeline_components-2.14.0.dist-info → google_cloud_pipeline_components-2.15.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ from google_cloud_pipeline_components._implementation.model import GetVertexMode
19
19
  from google_cloud_pipeline_components._implementation.model_evaluation import EvaluatedAnnotationOp
20
20
  from google_cloud_pipeline_components._implementation.model_evaluation import EvaluationDatasetPreprocessorOp as DatasetPreprocessorOp
21
21
  from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluatedAnnotationOp
22
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
22
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
23
23
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
24
24
  from google_cloud_pipeline_components.v1.dataset import GetVertexDatasetOp
25
25
  from google_cloud_pipeline_components.v1.model_evaluation.classification_component import model_evaluation_classification as ModelEvaluationClassificationOp
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@ from typing import Any, Dict, List, NamedTuple
17
17
  from google_cloud_pipeline_components import _placeholders
18
18
  from google_cloud_pipeline_components._implementation.model import GetVertexModelOp
19
19
  from google_cloud_pipeline_components._implementation.model_evaluation import FeatureAttributionGraphComponentOp
20
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
20
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
21
21
  from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
22
22
  from google_cloud_pipeline_components.types.artifact_types import RegressionMetrics
23
23
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@ from typing import Any, List, NamedTuple
16
16
 
17
17
  from google_cloud_pipeline_components import _placeholders
18
18
  from google_cloud_pipeline_components._implementation.model import GetVertexModelOp
19
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
19
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
20
20
  from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
21
21
  from google_cloud_pipeline_components.types.artifact_types import RegressionMetrics
22
22
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -16,8 +16,8 @@ from typing import Any, List, NamedTuple
16
16
 
17
17
  from google_cloud_pipeline_components import _placeholders
18
18
  from google_cloud_pipeline_components._implementation.model import GetVertexModelOp
19
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
20
19
  from google_cloud_pipeline_components._implementation.model_evaluation import TargetFieldDataRemoverOp
20
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
21
21
  from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
22
22
  from google_cloud_pipeline_components.types.artifact_types import RegressionMetrics
23
23
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -17,8 +17,8 @@ from typing import Any, Dict, List, NamedTuple
17
17
  from google_cloud_pipeline_components import _placeholders
18
18
  from google_cloud_pipeline_components._implementation.model import GetVertexModelOp
19
19
  from google_cloud_pipeline_components._implementation.model_evaluation import FeatureAttributionGraphComponentOp
20
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
21
20
  from google_cloud_pipeline_components._implementation.model_evaluation import TargetFieldDataRemoverOp
21
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
22
22
  from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
23
23
  from google_cloud_pipeline_components.types.artifact_types import RegressionMetrics
24
24
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -17,13 +17,15 @@ from typing import Dict, List, NamedTuple
17
17
 
18
18
  from google_cloud_pipeline_components._implementation.model_evaluation import LLMEvaluationClassificationPredictionsPostprocessorOp
19
19
  from google_cloud_pipeline_components._implementation.model_evaluation import LLMEvaluationPreprocessorOp
20
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
21
20
  from google_cloud_pipeline_components._implementation.model_evaluation import ModelNamePreprocessorOp
21
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
22
22
  from google_cloud_pipeline_components.types.artifact_types import ClassificationMetrics
23
23
  from google_cloud_pipeline_components.types.artifact_types import VertexModel
24
24
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
25
25
  from google_cloud_pipeline_components.v1.model_evaluation.classification_component import model_evaluation_classification as ModelEvaluationClassificationOp
26
26
  from kfp import dsl
27
+
28
+
27
29
  # pylint: disable=unused-argument, unexpected-keyword-arg
28
30
 
29
31
  _PIPELINE_NAME = 'evaluation-llm-classification-pipeline'
@@ -1,4 +1,4 @@
1
- # Copyright 2023 The Kubeflow Authors. All Rights Reserved.
1
+ # Copyright 2024 The Kubeflow Authors. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -17,11 +17,13 @@ from typing import Dict, List, NamedTuple
17
17
 
18
18
  from google_cloud_pipeline_components._implementation.model_evaluation import LLMEvaluationPreprocessorOp
19
19
  from google_cloud_pipeline_components._implementation.model_evaluation import LLMEvaluationTextGenerationOp
20
- from google_cloud_pipeline_components._implementation.model_evaluation import ModelImportEvaluationOp
21
20
  from google_cloud_pipeline_components._implementation.model_evaluation import ModelNamePreprocessorOp
21
+ from google_cloud_pipeline_components.preview.model_evaluation.model_evaluation_import_component import model_evaluation_import as ModelImportEvaluationOp
22
22
  from google_cloud_pipeline_components.types.artifact_types import VertexModel
23
23
  from google_cloud_pipeline_components.v1.batch_predict_job import ModelBatchPredictOp
24
24
  from kfp import dsl
25
+
26
+
25
27
  # pylint: disable=unused-argument, unexpected-keyword-arg
26
28
 
27
29
 
@@ -36,6 +38,7 @@ def evaluation_llm_text_generation_pipeline( # pylint: disable=dangerous-defaul
36
38
  batch_predict_gcs_destination_output_uri: str,
37
39
  model_name: str = 'publishers/google/models/text-bison@002',
38
40
  evaluation_task: str = 'text-generation',
41
+ role_field_name: str = 'role',
39
42
  input_field_name: str = 'input_text',
40
43
  target_field_name: str = 'output_text',
41
44
  batch_predict_instances_format: str = 'jsonl',
@@ -74,6 +77,7 @@ def evaluation_llm_text_generation_pipeline( # pylint: disable=dangerous-defaul
74
77
  batch_predict_gcs_destination_output_uri: Required. The Google Cloud Storage location of the directory where the eval pipeline output is to be written to.
75
78
  model_name: The Model name used to run evaluation. Must be a publisher Model or a managed Model sharing the same ancestor location. Starting this job has no impact on any existing deployments of the Model and their resources.
76
79
  evaluation_task: The task that the large language model will be evaluated on. The evaluation component computes a set of metrics relevant to that specific task. Currently supported tasks are: `summarization`, `question-answering`, `text-generation`.
80
+ role_field_name: The field name of the role for input eval dataset instances that contains the input prompts to the LLM.
77
81
  input_field_name: The field name of the input eval dataset instances that contains the input prompts to the LLM.
78
82
  target_field_name: The field name of the eval dataset instance that contains an example reference text response. Alternatively referred to as the ground truth (or ground_truth_column) field. If not set, defaulted to `output_text`.
79
83
  batch_predict_instances_format: The format in which instances are given, must be one of the Model's supportedInputStorageFormats. Only "jsonl" is currently supported. For more details about this input config, see https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.batchPredictionJobs#InputConfig.
@@ -122,6 +126,8 @@ def evaluation_llm_text_generation_pipeline( # pylint: disable=dangerous-defaul
122
126
  location=location,
123
127
  gcs_source_uris=batch_predict_gcs_source_uris,
124
128
  input_field_name=input_field_name,
129
+ role_field_name=role_field_name,
130
+ model_name=model_name,
125
131
  machine_type=machine_type,
126
132
  service_account=service_account,
127
133
  network=network,
@@ -121,6 +121,7 @@ def autosxs_pipeline(
121
121
  project=project,
122
122
  location=location,
123
123
  encryption_spec_key_name=encryption_spec_key_name,
124
+ autorater_prompt_parameters=autorater_prompt_parameters,
124
125
  ).set_display_name('AutoSxS Autorater')
125
126
 
126
127
  metrics = model_evaluation_text_generation_pairwise.model_evaluation_text_generation_pairwise(
@@ -13,4 +13,4 @@
13
13
  # limitations under the License.
14
14
  """Google Cloud Pipeline Components version."""
15
15
 
16
- __version__ = "2.14.0"
16
+ __version__ = "2.15.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: google-cloud-pipeline-components
3
- Version: 2.14.0
3
+ Version: 2.15.0
4
4
  Summary: This SDK enables a set of First Party (Google owned) pipeline components that allow users to take their experience from Vertex AI SDK and other Google Cloud services and create a corresponding pipeline using KFP or Managed Pipelines.
5
5
  Home-page: https://github.com/kubeflow/pipelines/tree/master/components/google-cloud
6
6
  Author: The Google Cloud Pipeline Components authors
@@ -10,7 +10,6 @@ Project-URL: User Documentation, https://cloud.google.com/vertex-ai/docs/pipelin
10
10
  Project-URL: Reference Documentation, https://google-cloud-pipeline-components.readthedocs.io/
11
11
  Project-URL: Source, https://github.com/kubeflow/pipelines/tree/master/components/google-cloud
12
12
  Project-URL: Release Notes, https://github.com/kubeflow/pipelines/tree/master/components/google-cloud/RELEASE.md
13
- Platform: UNKNOWN
14
13
  Classifier: Development Status :: 4 - Beta
15
14
  Classifier: Operating System :: Unix
16
15
  Classifier: Operating System :: MacOS
@@ -31,24 +30,24 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
30
  Requires-Python: >=3.8.0,<3.12.0
32
31
  Description-Content-Type: text/markdown
33
32
  License-File: LICENSE
34
- Requires-Dist: google-api-core (!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5)
35
- Requires-Dist: kfp (<=2.7.0,>=2.6.0)
36
- Requires-Dist: google-cloud-aiplatform (<2,>=1.14.0)
37
- Requires-Dist: Jinja2 (<4,>=3.1.2)
33
+ Requires-Dist: Jinja2 <4,>=3.1.2
34
+ Requires-Dist: google-api-core !=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5
35
+ Requires-Dist: google-cloud-aiplatform <2,>=1.14.0
36
+ Requires-Dist: kfp <=2.7.0,>=2.6.0
38
37
  Provides-Extra: docs
39
- Requires-Dist: protobuf (<5,>=4.21.1) ; extra == 'docs'
40
- Requires-Dist: grpcio-status (<=1.47.0) ; extra == 'docs'
41
- Requires-Dist: commonmark (==0.9.1) ; extra == 'docs'
42
- Requires-Dist: autodocsumm (==0.2.9) ; extra == 'docs'
43
- Requires-Dist: sphinx (<6.0.0,>=5.0.2) ; extra == 'docs'
44
- Requires-Dist: sphinx-immaterial (==0.9.0) ; extra == 'docs'
45
- Requires-Dist: sphinx-rtd-theme (==2.0.0) ; extra == 'docs'
46
- Requires-Dist: m2r2 (==0.3.3.post2) ; extra == 'docs'
47
- Requires-Dist: sphinx-notfound-page (==0.8.3) ; extra == 'docs'
38
+ Requires-Dist: autodocsumm ==0.2.9 ; extra == 'docs'
39
+ Requires-Dist: commonmark ==0.9.1 ; extra == 'docs'
40
+ Requires-Dist: grpcio-status <=1.47.0 ; extra == 'docs'
41
+ Requires-Dist: m2r2 ==0.3.3.post2 ; extra == 'docs'
42
+ Requires-Dist: protobuf <5,>=4.21.1 ; extra == 'docs'
43
+ Requires-Dist: sphinx-immaterial ==0.9.0 ; extra == 'docs'
44
+ Requires-Dist: sphinx-notfound-page ==0.8.3 ; extra == 'docs'
45
+ Requires-Dist: sphinx-rtd-theme ==2.0.0 ; extra == 'docs'
46
+ Requires-Dist: sphinx <6.0.0,>=5.0.2 ; extra == 'docs'
48
47
  Provides-Extra: tests
49
- Requires-Dist: mock (>=4.0.0) ; extra == 'tests'
50
- Requires-Dist: flake8 (>=3.0.0) ; extra == 'tests'
51
- Requires-Dist: pytest (>=6.0.0) ; extra == 'tests'
48
+ Requires-Dist: flake8 >=3.0.0 ; extra == 'tests'
49
+ Requires-Dist: mock >=4.0.0 ; extra == 'tests'
50
+ Requires-Dist: pytest >=6.0.0 ; extra == 'tests'
52
51
 
53
52
  # Google Cloud Pipeline Components
54
53
 
@@ -93,5 +92,3 @@ Use the following command to install Google Cloud Pipeline Components from [PyPI
93
92
  ```shell
94
93
  pip install -U google-cloud-pipeline-components
95
94
  ```
96
-
97
-
@@ -2,26 +2,27 @@ google_cloud_pipeline_components/__init__.py,sha256=HOU1WNUeWpY1HjluW8vbI7Cai_EF
2
2
  google_cloud_pipeline_components/_image.py,sha256=lANDYNk1WSuGZSoTTRcWdjsUvCkkA-PmwouTM9Et7fY,828
3
3
  google_cloud_pipeline_components/_placeholders.py,sha256=9yIbieYjZkZJg4xuKklxWQVn3Z-9ryb9Q6V15Jqpe98,3090
4
4
  google_cloud_pipeline_components/utils.py,sha256=9FG7umyEXhyUvtNeC46NuQ04olDMR3o-Wp78V1xs8GY,11045
5
- google_cloud_pipeline_components/version.py,sha256=dPeItKd-CNnHFmAleFK5AGgWNYH5lEvQKNwkbHDD-Fk,678
5
+ google_cloud_pipeline_components/version.py,sha256=B1LmnOje3jX6UBWw6MRYP4vz17e1zbc2Wbh_wwF8CHg,678
6
6
  google_cloud_pipeline_components/_implementation/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
7
7
  google_cloud_pipeline_components/_implementation/llm/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
8
8
  google_cloud_pipeline_components/_implementation/llm/batch_prediction_pairwise.py,sha256=mARB-tDYFr0tpBrLCIh481H4LDuXdr_8UyKVUaOF5Cw,7569
9
9
  google_cloud_pipeline_components/_implementation/llm/bulk_inferrer.py,sha256=k-MHsyESWboHdNeRm9q3MOGwbtZr37QNGm_Y_cGsETA,3958
10
10
  google_cloud_pipeline_components/_implementation/llm/deploy_llm_model.py,sha256=Jjme37_M32AK1r_MmHMHZvW8k9LJiqfZ4eJEquWoTt4,5029
11
- google_cloud_pipeline_components/_implementation/llm/deployment_graph.py,sha256=QuftPh7TD_wIEr-V53etfZY2ncBJJqiJaZ4I3RhLHoE,4902
11
+ google_cloud_pipeline_components/_implementation/llm/deployment_graph.py,sha256=zG80-yL9LmqCQrFYp48hIIbIVXtk1xe4QiP_Md3Y3yM,4238
12
12
  google_cloud_pipeline_components/_implementation/llm/env.py,sha256=zY5glHO9oPWsALfYquR0euJHJnXbv2w-21mWVNit2Gw,1864
13
13
  google_cloud_pipeline_components/_implementation/llm/function_based.py,sha256=SFeq2F27cA1we05xwSWBl7wwuYEx-zPLVq60yRohsTQ,17617
14
+ google_cloud_pipeline_components/_implementation/llm/infer_preprocessor.py,sha256=Pb8HbsCiL5_YYVXteurSu9v2NdO_8mjTeIz7-AmHWb8,5832
14
15
  google_cloud_pipeline_components/_implementation/llm/model_evaluation_text_generation_pairwise.py,sha256=W64FNFfbarOcDw1sSG9J-BQCVPUYx3zLAmwLhhGhth0,5102
15
- google_cloud_pipeline_components/_implementation/llm/online_evaluation_pairwise.py,sha256=khEli4fSoIQlaiReXOm3zsvsM7BIdbJOXFGUzjcvxOI,5299
16
+ google_cloud_pipeline_components/_implementation/llm/online_evaluation_pairwise.py,sha256=ZBKuSkl5H00S9X5c5_hlQKmyMKTIgSwZQNQxFhEcP2A,5667
16
17
  google_cloud_pipeline_components/_implementation/llm/preference_data_formatter.py,sha256=xqgvMsFgFIuiDAv3V3lf4XJSnLjZSTCHknGkmUcP9fs,5025
17
18
  google_cloud_pipeline_components/_implementation/llm/preprocess_chat_dataset.py,sha256=dMf2uXW4znn9W8xv9ZRNSPI6nZvp64FTq5GAqjXFRDk,11746
18
19
  google_cloud_pipeline_components/_implementation/llm/private_text_comparison_importer.py,sha256=Cwug1Tmk6tvg-l_qyxA6qr1-rslx33RkxA17sedFCz4,4133
19
20
  google_cloud_pipeline_components/_implementation/llm/private_text_importer.py,sha256=go6SqWEH5fuDuXYeIzglQIARNG_etOwhyhCsbQgFI8I,4418
20
21
  google_cloud_pipeline_components/_implementation/llm/reinforcement_learning_graph.py,sha256=9Bmk0941-yShhLw8uG7iOcGhqs6CUH30c9h_06rNIIk,9756
21
22
  google_cloud_pipeline_components/_implementation/llm/reinforcer.py,sha256=yeg_2DGonlmf21KQYQXN28Mza0d6P0IPt9lDEyK5de8,6948
22
- google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py,sha256=aV0DtHYBwExqlsn1DeA0WknmXglDKiwwJthOLqKBx1A,10114
23
+ google_cloud_pipeline_components/_implementation/llm/reward_model_graph.py,sha256=86KTFH_J_tBmUYfpEVMgayUvdijYecbteYEn8AGYWLc,10196
23
24
  google_cloud_pipeline_components/_implementation/llm/reward_model_trainer.py,sha256=xkj2hnHpZMLutGNxoewTVUsRR2bkLNkVUhWwjY9EXKA,5596
24
- google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py,sha256=0kJaJAkrdTUW4mOD0F8s0TmLS0Mi0isk-9KHL3YrBtI,6404
25
+ google_cloud_pipeline_components/_implementation/llm/rlhf_preprocessor.py,sha256=YIKahoSWnrnkjhaINRp23p5-f2GbjOBe-enr5pbFAFo,7917
25
26
  google_cloud_pipeline_components/_implementation/llm/supervised_fine_tuner.py,sha256=5HzjhMXMRmaWGv3BlAi8lBg6MMlaaHlbqKez3ZcX5Ss,4951
26
27
  google_cloud_pipeline_components/_implementation/llm/upload_llm_model.py,sha256=iLtHLtrXzDbRHbgOW99SA9XDdhr_8omhLX1bTP-tsaE,4724
27
28
  google_cloud_pipeline_components/_implementation/llm/upload_tensorboard_metrics.py,sha256=BN-0TQFl49TcE54ltBRt4iZYTjO7718eCLwHKR58ips,4010
@@ -29,11 +30,11 @@ google_cloud_pipeline_components/_implementation/llm/utils.py,sha256=E250cmvw0QU
29
30
  google_cloud_pipeline_components/_implementation/llm/utils_test.py,sha256=co8gWyrowY5CpkFNsaLGQlD_gpIykkVI7czxIizp5cM,2864
30
31
  google_cloud_pipeline_components/_implementation/llm/validate_pipeline.py,sha256=35E2jx3wG_1-qnF9u6GygEmekJ3dG9LklJx2Bh6ayJ8,4350
31
32
  google_cloud_pipeline_components/_implementation/llm/generated/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
32
- google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=a4YTJDADYluJ4fhZta-82z-_iaVkFFbeKEvq_tuP6EU,768
33
+ google_cloud_pipeline_components/_implementation/llm/generated/refined_image_versions.py,sha256=dSLCXSQKd4M1HxSIhoAmASPIqDa2qx7BMzHB97vIEz8,763
33
34
  google_cloud_pipeline_components/_implementation/model/__init__.py,sha256=KmOW74re0WZ93DWM1lqqQYbv6w1aIW66BMV3gaAdg3s,811
34
35
  google_cloud_pipeline_components/_implementation/model/get_model/__init__.py,sha256=cXMkDUZHVSbXeXSa3qsI6Ef8Tad9nmusw5NUZaYORdE,662
35
36
  google_cloud_pipeline_components/_implementation/model/get_model/component.py,sha256=H2sbMTWCw8nMDMT-Ni9-pdzVXEFmHYjtP3z1LcI5m5w,2307
36
- google_cloud_pipeline_components/_implementation/model_evaluation/__init__.py,sha256=eq9g2RsGgKmIHsjsUEvoD1GFmix0Pk-GIzU1hfapCbM,5839
37
+ google_cloud_pipeline_components/_implementation/model_evaluation/__init__.py,sha256=oB1e-LSzK0pctcXf6M9Uiu3_83QxC7RnUy4lU1dlOJs,4692
37
38
  google_cloud_pipeline_components/_implementation/model_evaluation/utils.py,sha256=9V34RtPZSRNeBwcsImaZM6YC3T7CafT_E00Iby4KHxw,3540
38
39
  google_cloud_pipeline_components/_implementation/model_evaluation/version.py,sha256=QHCvg6WZkQq-VdX7hbWCQHK-7SjHpxSppGa9ppyJNmk,963
39
40
  google_cloud_pipeline_components/_implementation/model_evaluation/chunking/__init__.py,sha256=PRHVsIq1dFb0mweuU0kfUUP90FbX--kxdBGCpwfLTgA,665
@@ -56,18 +57,16 @@ google_cloud_pipeline_components/_implementation/model_evaluation/feature_extrac
56
57
  google_cloud_pipeline_components/_implementation/model_evaluation/feature_extractor/component.py,sha256=u4P3hSGBnFXtn8MKb8g1J9FAA74VpowBmPTmSDFq9J4,5539
57
58
  google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluated_annotation/__init__.py,sha256=-znXeLR3Uhon4BsRcAqHdVhcSUCqkY7rFouQFLD6Atg,684
58
59
  google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluated_annotation/component.py,sha256=d1QlNA_hpSJNgvwRJFGKZnVi0zc0KhZEHzVkq5wJWXQ,3053
59
- google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/__init__.py,sha256=eG4D5YbXHkveV6PP1uX8ZL48LCZ1mUtKGKb520dpILg,674
60
- google_cloud_pipeline_components/_implementation/model_evaluation/import_evaluation/component.py,sha256=uZEtGhRtkCtjJFxBHFv8LSm_m7KlJxgmMhc2Whw6Mrw,8026
61
60
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/__init__.py,sha256=kEQ4aaKnV-KulHqbhb6eJIZzk4O7uSBRPzm_e3q_hcA,697
62
61
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_classification_postprocessor/component.py,sha256=H0g7nMK3JVdQonLe5jpKvvzm9N2YzFGQUWJwwfxQ33s,11227
63
62
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/__init__.py,sha256=CUSeP0l2KFuo2wbw00DE5Zur0jpgHpZ1aThg7yqWuGY,680
64
- google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/evaluation_llm_embedding_pipeline.py,sha256=7Rah6V-8jSVoy6QNBI8c93RgkAW89z5VwN0FRtRPmJ8,14207
63
+ google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding/evaluation_llm_embedding_pipeline.py,sha256=U4sI585OGw90_1vmQcX6P6ThjbrRpLwl70xSqtHdVto,14206
65
64
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding_retrieval/__init__.py,sha256=Q9YimgEKkKP8QW8fV50nNRjWXdt0_90Qr_gfQ0A9fao,691
66
65
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_embedding_retrieval/component.py,sha256=er26AxV0ydpKFbhrLs2IIia9hbLxXhe78Q-fQvvK_20,7265
67
66
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/__init__.py,sha256=gDyltb_vTZRncaVZbMUkXYBHZsEg_CuaPAQVWUOGy7c,671
68
67
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation/component.py,sha256=rclGlXxDr6vozQ6elDDCDbdJXWjG461Z9nmTaiKGsFs,7478
69
68
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/__init__.py,sha256=LLvQQ9Mv_md1POK_XErR7NUr-XAZX28w5KD0EQiT32w,684
70
- google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=H_rqyBZJP3VXO9_S5kr5soY6wJ0bFCIxXoDTIqR1Pxg,7952
69
+ google_cloud_pipeline_components/_implementation/model_evaluation/llm_evaluation_preprocessor/component.py,sha256=LTMJRqFLYlXE5iiO8O-vUPPbTIerAoL3rOGAMcwXKl8,8748
71
70
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/__init__.py,sha256=UcAfohvqwJ7X8rlV6I2RsZ5ohYWbafXI5yYRAAwvspE,695
72
71
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_information_retrieval_preprocessor/component.py,sha256=hpwra0rXUP_LG6WNdnB9RD0cy1Gn3InrzAUJIk-oRc4,8142
73
72
  google_cloud_pipeline_components/_implementation/model_evaluation/llm_retrieval_metrics/__init__.py,sha256=oVVVTCE230KYGcuz_rXYEuypZmm6OKg7K2BsFtpcDw0,701
@@ -89,6 +88,34 @@ google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_prepr
89
88
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_preprocess/component.py,sha256=Gnc5lpJjnGtlxQKyX5wZNyms1QBQga8CiMBh77QBCYM,5197
90
89
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_validate_and_process/__init__.py,sha256=EFQ99_7vrJ7J4R5dv5bwnhEC_d5kPTv5xlaZeRg1p8s,701
91
90
  google_cloud_pipeline_components/_implementation/model_evaluation/text2sql_validate_and_process/component.py,sha256=N0i_X8xNdLzcEKudSWTbzB_d8u0W4a7xp2D8CC2HDYM,5636
91
+ google_cloud_pipeline_components/_implementation/starry_net/__init__.py,sha256=CSopfSpiwuix5UEjjVQWINND1-0uTReQAZ6ZA6Y9m5U,2502
92
+ google_cloud_pipeline_components/_implementation/starry_net/version.py,sha256=ZamcYN82LR-FvLH63j6TPhZ999_sZGib_vmznmfp1T8,778
93
+ google_cloud_pipeline_components/_implementation/starry_net/dataprep/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
94
+ google_cloud_pipeline_components/_implementation/starry_net/dataprep/component.py,sha256=WkRWfbcwP1RV5yoK2ASfzW66JepGq9bxxS4fmpJ1-T8,7144
95
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
96
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/component.py,sha256=SlNxkVcaxmJRiOFxPjL71amNrE4R0J2UGl5xdHAZUgU,819
97
+ google_cloud_pipeline_components/_implementation/starry_net/evaluation/evaluation.yaml,sha256=qEcFeTONUU4HgiuPrqb8HkEPpkQARl6xIzGkRVuwogE,10283
98
+ google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
99
+ google_cloud_pipeline_components/_implementation/starry_net/get_training_artifacts/component.py,sha256=BJk2iTzxwlwnKUFMziltSI25dxCkD7dr038c5Hwye_M,2213
100
+ google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
101
+ google_cloud_pipeline_components/_implementation/starry_net/maybe_set_tfrecord_args/component.py,sha256=Vv5_7aXU3mNw8JYFofioGMgik_qvokzoFSWgtJqVCcs,2734
102
+ google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
103
+ google_cloud_pipeline_components/_implementation/starry_net/set_dataprep_args/component.py,sha256=mOHSabzjZXGCD6Nd-B-kAaOBsUoCTAEoFYLudk6l03k,3713
104
+ google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
105
+ google_cloud_pipeline_components/_implementation/starry_net/set_eval_args/component.py,sha256=MEtS4QXWZgoVi5K9LlEv6WQ7teXR-UbzCOnMEjkroDQ,2638
106
+ google_cloud_pipeline_components/_implementation/starry_net/set_test_set/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
107
+ google_cloud_pipeline_components/_implementation/starry_net/set_test_set/component.py,sha256=6OEzrA5-VTJMVR6udi9sG_-GjygkzX1MeiypWLILxcM,1686
108
+ google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
109
+ google_cloud_pipeline_components/_implementation/starry_net/set_tfrecord_args/component.py,sha256=xjXUunPDU0HmkTrPzWl9hfcQHcgdEtnCxYEEuS9sPd0,2423
110
+ google_cloud_pipeline_components/_implementation/starry_net/set_train_args/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
111
+ google_cloud_pipeline_components/_implementation/starry_net/set_train_args/component.py,sha256=MEol3nBmsGLMwiCnH9NhBCPxSmZkqyKco9qmkr9hXbA,3466
112
+ google_cloud_pipeline_components/_implementation/starry_net/train/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
113
+ google_cloud_pipeline_components/_implementation/starry_net/train/component.py,sha256=9kz5Wcho8JLUj0KebnqHjZjxGT9G6y3kzohG31DipSE,10324
114
+ google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
115
+ google_cloud_pipeline_components/_implementation/starry_net/upload_decomposition_plots/component.py,sha256=pmN0GQ-pCvCy3Wo28a-TgN_AVdngAJgOzWlOhbf6-3g,2208
116
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
117
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/component.py,sha256=P-gCilLSI8ypUDwRFSZKmkS0FS9JBXr6vk7_qLDTidE,826
118
+ google_cloud_pipeline_components/_implementation/starry_net/upload_model/upload_model.yaml,sha256=6eTzVJ7bvp67NjN0Y3HwZWdgYdswJTVXiQNSdOtSh_E,1462
92
119
  google_cloud_pipeline_components/container/__init__.py,sha256=5X_ymPsBAGK9hpepKd1PR0opJLeeMmHvB2DR5YjAtCQ,651
93
120
  google_cloud_pipeline_components/container/_implementation/__init__.py,sha256=Yz9TE5TRKlmUV6auolXWipHdEffdDa9XbXJ1P2uAjpo,659
94
121
  google_cloud_pipeline_components/container/_implementation/llm/__init__.py,sha256=D8WxLEcHEUlehVGp6bSBsCOyJz3Nza7OGJ5jGMEXNgI,665
@@ -113,6 +140,7 @@ google_cloud_pipeline_components/container/preview/gcp_launcher/__init__.py,sha2
113
140
  google_cloud_pipeline_components/container/preview/gcp_launcher/job_remote_runner.py,sha256=-p4kwPvfeW3WcggjcZueZ0eQna_Tu47wvO31XlbY0Gs,8447
114
141
  google_cloud_pipeline_components/container/utils/__init__.py,sha256=yqPd0QW1ITPpcgd-0Fv5665kTX1HRPNutCfkBXnA_uA,638
115
142
  google_cloud_pipeline_components/container/utils/artifact_utils.py,sha256=VEb89NTTcyiy_ouO0ysosUv3nDwj9QfI_EbZnX9kHZk,3027
143
+ google_cloud_pipeline_components/container/utils/error_surfacing.py,sha256=OWi8ylVGsmDjOicTwmSWWOwdLsd-k7zOlOru9r5VNZw,1665
116
144
  google_cloud_pipeline_components/container/utils/execution_context.py,sha256=6d2qC7IE5BcVT2nLZzBg6T-I3yPiU1_J61t2wtlDEe8,1841
117
145
  google_cloud_pipeline_components/container/v1/__init__.py,sha256=iEvOrKaUA31vCoQeMAr7EBPKPkIwv5iLQ1tChsJok8w,651
118
146
  google_cloud_pipeline_components/container/v1/aiplatform/__init__.py,sha256=5X_ymPsBAGK9hpepKd1PR0opJLeeMmHvB2DR5YjAtCQ,651
@@ -264,7 +292,7 @@ google_cloud_pipeline_components/container/v1/model/export_model/launcher.py,sha
264
292
  google_cloud_pipeline_components/container/v1/model/export_model/remote_runner.py,sha256=YJwkjq5UhJtpX43pjqGs09dNPWpjJqct6cRAHDFBmZk,2479
265
293
  google_cloud_pipeline_components/container/v1/model/get_model/__init__.py,sha256=PgJlyiNYIex-iqZFd3B2H3SA8y0Kpajg8aFBEq36pwU,685
266
294
  google_cloud_pipeline_components/container/v1/model/get_model/launcher.py,sha256=VTDS59v35zz25UqA4mmTwhdmqluuKk6uinadn4KtgQ4,1909
267
- google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py,sha256=pUed_Pq5u6kl_CzSWwGvEeyA4PfRgREiVkScTRdIILs,2062
295
+ google_cloud_pipeline_components/container/v1/model/get_model/remote_runner.py,sha256=22DbMMpl9E-KPdHkOVP29v5pkS52BovcWLwJxCBfz24,3044
268
296
  google_cloud_pipeline_components/container/v1/model/upload_model/__init__.py,sha256=NZJ1pbjANZ1XDV-RvjtJcKX7Bdhw39_Eh_DRMq6vOko,688
269
297
  google_cloud_pipeline_components/container/v1/model/upload_model/launcher.py,sha256=QwnM9K43By8MNM9_iiIJH7LexeI6WLA5-V8iRS2S-0Y,2331
270
298
  google_cloud_pipeline_components/container/v1/model/upload_model/remote_runner.py,sha256=elCve0-6IrfQyI4qWVt6d5yI_DwwxOXVUE5aKF1U-mk,4480
@@ -325,19 +353,23 @@ google_cloud_pipeline_components/preview/custom_job/utils.py,sha256=6JkjGAXei9ON
325
353
  google_cloud_pipeline_components/preview/dataflow/__init__.py,sha256=74-o9aye0R356KRmf5sBeXZ3OkBWEn62pywrclsEIW4,773
326
354
  google_cloud_pipeline_components/preview/llm/__init__.py,sha256=acmo31OFe-d7Ubo5FC2baLwxORFQzLtLdm8o5cO15qY,996
327
355
  google_cloud_pipeline_components/preview/llm/infer/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
328
- google_cloud_pipeline_components/preview/llm/infer/component.py,sha256=lRksuPdsDj9UYkBWh7Rb9w-HZ_SbrTAgZKeTtQYmkR8,7798
356
+ google_cloud_pipeline_components/preview/llm/infer/component.py,sha256=p6gnwCjex4nKR00GOWv9gKenHavsiyRUb9fbwX7hn2Q,7620
329
357
  google_cloud_pipeline_components/preview/llm/rlaif/__init__.py,sha256=LYxMCPeZcfGqRbt3mo3hY7U02A6G8aWdP_RtdoqxNrQ,606
330
358
  google_cloud_pipeline_components/preview/llm/rlaif/component.py,sha256=F4uzuz2pcLDd5IJ6--IkZf2dcmimiYfCivwmPwL_QIg,10801
331
359
  google_cloud_pipeline_components/preview/llm/rlhf/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
332
- google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=3mw2q6Myc6e-ipyr0Jqmu_2HhV0DXmSBti0__-_m9Cc,15022
333
- google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=_6D2AWSo4kBouhZvWVtNLoPvv-2PvwiVqZGAxGe-DIw,1934
360
+ google_cloud_pipeline_components/preview/llm/rlhf/component.py,sha256=9XpSVUga81GTqkn4qMBddhc41IzY0-p4IBC4UFP50G4,15339
361
+ google_cloud_pipeline_components/preview/model_evaluation/__init__.py,sha256=n076N7S2HEdMuSZ8cyKM6acjCjslOHjCx4SR49asRME,2121
334
362
  google_cloud_pipeline_components/preview/model_evaluation/data_bias_component.py,sha256=YiwkWfbGymX_lDIg_x7AP6nYMm3MQp_NgV8xuSZxCpU,5791
335
363
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_component.py,sha256=XWrI1inQ9hKixFrp2LUdgu7hONYUvbsxv2GXZ-UTkCY,7450
336
364
  google_cloud_pipeline_components/preview/model_evaluation/feature_attribution_graph_component.py,sha256=jesgBUKbIB_qQoYb5-Bv_LBbFHl0tPyMlVFx-o1eE6k,13624
337
365
  google_cloud_pipeline_components/preview/model_evaluation/model_bias_component.py,sha256=R8WhT8jf_OOpMuABRh2BYTDEcfiGAf6VA-vFgiTymYY,6674
366
+ google_cloud_pipeline_components/preview/model_evaluation/model_evaluation_import_component.py,sha256=ePHbJqWYbZR5wCgJ8aVgDrOcWSoAiVq7df6HxTw1gdY,8118
338
367
  google_cloud_pipeline_components/preview/model_evaluation/utils.py,sha256=oRlEvA3zMSTzgxJklZD0A-BzFDx0-PsBHBXZ4kmaREY,7539
368
+ google_cloud_pipeline_components/preview/starry_net/__init__.py,sha256=yEpcicPBsGqgahrCtcJ06a_7E2pUgdp32U0yWwFRy7E,796
369
+ google_cloud_pipeline_components/preview/starry_net/component.py,sha256=Qq23bAUh4-DqR9D8dqQA9bvY8peGLVoe5MNho0UwPmg,22831
339
370
  google_cloud_pipeline_components/proto/__init__.py,sha256=aiPUc6gpQwG9cRTYfw3ChFCJfDr3vAIsm2eMYUDJjJQ,661
340
371
  google_cloud_pipeline_components/proto/gcp_resources_pb2.py,sha256=ssNNm4zjiWbuBUS7IH6kyrvvfmcC_Z5F7hOAuQe_YLk,2134
372
+ google_cloud_pipeline_components/proto/task_error_pb2.py,sha256=PPz4luEm3Pa3YDn4mtpqEPl8QVSFa44pV8W2KbWRq1I,1235
341
373
  google_cloud_pipeline_components/proto/template_metadata_pb2.py,sha256=RGyD_xJ9C_YmUCqgqifnY4HF8Y8kkIHzLcpbbqeXUEw,9939
342
374
  google_cloud_pipeline_components/types/__init__.py,sha256=1WFkL49QEy-gNb6ywQOE4yZkD7DoULAeiL1tLdb3S28,606
343
375
  google_cloud_pipeline_components/types/artifact_types.py,sha256=zvwvzRuFb_s1VS1mtKkltOOACATJk-kG7dVFOUasfw4,23725
@@ -346,9 +378,9 @@ google_cloud_pipeline_components/v1/automl/__init__.py,sha256=l8whL8MMhZ-KMyacLp
346
378
  google_cloud_pipeline_components/v1/automl/forecasting/__init__.py,sha256=FVS4qHJEuAxXZuW9ffOD16_-T0xwaUUBh2j1d4AF8HQ,1488
347
379
  google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_predict_pipeline.yaml,sha256=MKyHNlM5pgZ-FAOs9TjPq3dxPhPjHDCzc2TFMEbB9Ho,51452
348
380
  google_cloud_pipeline_components/v1/automl/forecasting/bqml_arima_train_pipeline.yaml,sha256=HMR59BvlfnMKup8zzB0UypL8dsTZpjARRRmZRXMr34c,242529
349
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=cTDwIp26Kbjgg2lwN7ZFCMEE2ce6rfnM6NIeogTFmCA,93654
350
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=3hzVV_aad9TaGTr8HgfoJepZg2_uJo_AgoGzPwHDGy0,8363
351
- google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=UyfUD17f1MSoeBAYx7L946zBvsNDbLbENKBWh2jT3G0,142696
381
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_predict_pipeline.yaml,sha256=X4S_rHfbhhMOTLOvCxh5NCCJUvLL-dnEXQjG2FIJQbA,93654
382
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer.py,sha256=hIrhfw5a5RyMvp_UutZSxxSg_n255_6uOGdL2qgQTF4,8815
383
+ google_cloud_pipeline_components/v1/automl/forecasting/prophet_trainer_pipeline.yaml,sha256=Cpf0f5AXyROtIobnaVqUqbqHoKGy_UDEIuWceWANJJE,143006
352
384
  google_cloud_pipeline_components/v1/automl/forecasting/utils.py,sha256=Q0SxHlj2jhlpX-buOkxZqDL0wN8Si2-f5iMo08w54ms,14855
353
385
  google_cloud_pipeline_components/v1/automl/tabular/__init__.py,sha256=Clqtp6KThsxtvgu6Egj-dbkftci-VWDSKXXo_T6bTv8,2480
354
386
  google_cloud_pipeline_components/v1/automl/tabular/automl_tabular_pipeline.yaml,sha256=6u0d5gEDvd-DV6ZUjsOmVDaob0je26goe6s41pUz5SE,500714
@@ -505,25 +537,25 @@ google_cloud_pipeline_components/v1/model/upload_model/__init__.py,sha256=6uwVQw
505
537
  google_cloud_pipeline_components/v1/model/upload_model/component.py,sha256=6zy9G2AK2twiyT-B2X15qovvi6qHu0koRzzzelgN8CQ,7280
506
538
  google_cloud_pipeline_components/v1/model_evaluation/__init__.py,sha256=CjEllp-NmgeZ77HKgYpM1polX5Q1wo3ihxMHSvnozrc,2897
507
539
  google_cloud_pipeline_components/v1/model_evaluation/classification_component.py,sha256=4XsQsqLUNv0Ftw-V-rFii2Iega1yQQkLP3ggMof1sVI,12087
508
- google_cloud_pipeline_components/v1/model_evaluation/error_analysis_pipeline.py,sha256=l972cEWDViVV41oCy0jTsX96Pau49D3KdJA3yAjKEY0,20122
509
- google_cloud_pipeline_components/v1/model_evaluation/evaluated_annotation_pipeline.py,sha256=JskLsIHvLNNvNaMD8gTa0NWlB5gKiSSyqeC78Fn5OW8,12142
510
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_feature_attribution_pipeline.py,sha256=sEoMoR5ITp0fWGnbUvGO6ZApz5Z04URseMONyMytSWI,46187
511
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_pipeline.py,sha256=p-GH_tVqffHwck5Sll0BHsnvVAHQk48WNAUohZxATcs,37108
512
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py,sha256=aiZOK5BE5mdqJL3s4pU1Y_ynHvWBE9JIxl9UrJuNsco,42404
513
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py,sha256=ChDwHvPCn0prrK1FLvEhAbaTmA153M9NG3Wj3QIlNHs,51173
514
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=hwQrgFL79hyLiwMeIRdOzGZGNtXPS1G0n9_YnZDhf0w,11981
515
- google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=z1Bx8p603cxGC_nre3tUs-3KF1O5t5xBwAWmK2H9R3U,11529
540
+ google_cloud_pipeline_components/v1/model_evaluation/error_analysis_pipeline.py,sha256=StNi-9HFSnkmfbScyiGyqMq6TIO9aVQsJIrW63bSfMI,20137
541
+ google_cloud_pipeline_components/v1/model_evaluation/evaluated_annotation_pipeline.py,sha256=PaTrjNcwXtNMmJFqmac4V1Xtlqs4mJytgX3Cq5RjCZs,12195
542
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_feature_attribution_pipeline.py,sha256=gH2k5I8MRjIKKf_4NkE_5E3xZHZgch_kJP0jm7pQRJs,46240
543
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_tabular_pipeline.py,sha256=zkZkYNKQ214TmIhwsL15rtf0fWDp9K8xjdpj3ytpOEI,37161
544
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_automl_unstructure_data_pipeline.py,sha256=LlMSMVbiZGXOZo4SqEQZZu9GQWWzHnwhrygwmDkqVdA,42457
545
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_feature_attribution_pipeline.py,sha256=wEu67EPXb9x9PcYMYmnuETKbAz_lP5Kewv439IiFxIM,51226
546
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_classification_pipeline.py,sha256=vF_EOPg7S3UCTCNw6GrhQz_Sn8ctPZ-JpJEt6JlSF3Y,12036
547
+ google_cloud_pipeline_components/v1/model_evaluation/evaluation_llm_text_generation_pipeline.py,sha256=o169DX7cJuaLmbp2VSQgXrlluoCJHwuHqXdaHYgLA6w,11812
516
548
  google_cloud_pipeline_components/v1/model_evaluation/forecasting_component.py,sha256=gOnvKAJWa3velczeuVBCzW6b_tcc2v_lNFqHXGhjD44,10017
517
549
  google_cloud_pipeline_components/v1/model_evaluation/regression_component.py,sha256=eFrjrKQot3-SlRCoKoTOEsyp2Xj0GfDtrjpxTDKAHYY,9117
518
550
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/__init__.py,sha256=57gYyoAJwLIeXoLTTyVqOWgkj7dlUP4IKM4OmMabCRM,828
519
551
  google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/__init__.py,sha256=sb6SfJl6rt3AKjiWxd-KO9DSiZ3PzGZRcsqKuc1A2Cg,606
520
- google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=Jzrd6sQsj0E_ECqsODJ-95dk85T6KgsITsvJh6qVpxc,8851
552
+ google_cloud_pipeline_components/v1/model_evaluation/model_based_llm_evaluation/autosxs/autosxs_pipeline.py,sha256=s3cWwJzy6qqogA2rURdojMQfRYBTdiQ20e3i3vRis50,8914
521
553
  google_cloud_pipeline_components/v1/vertex_notification_email/__init__.py,sha256=YIRljNy_oHY_vRda-kfhm5QiulNd_SIIPbmpzOiYJ0k,863
522
554
  google_cloud_pipeline_components/v1/vertex_notification_email/component.py,sha256=Dau8ZI0mzLBnLOUBQm6EtK8gbtX1u57t76Ud5qlg9xc,2163
523
555
  google_cloud_pipeline_components/v1/wait_gcp_resources/__init__.py,sha256=w6dfz-rYsYnxFapRH1Dix3GVz0mhPW0m1IVpE6z8jbg,878
524
556
  google_cloud_pipeline_components/v1/wait_gcp_resources/component.py,sha256=Nsfj5c3eeZq83fHLvv2IlpK4jrjxLxRksFYOl5W6JnA,2468
525
- google_cloud_pipeline_components-2.14.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
526
- google_cloud_pipeline_components-2.14.0.dist-info/METADATA,sha256=EkbuKB-faNaHwR-lyX-5PohaFtT9ZDpxs-hgf59YP04,5862
527
- google_cloud_pipeline_components-2.14.0.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
528
- google_cloud_pipeline_components-2.14.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
529
- google_cloud_pipeline_components-2.14.0.dist-info/RECORD,,
557
+ google_cloud_pipeline_components-2.15.0.dist-info/LICENSE,sha256=VAc1R5OxOELKsX5L5Ldp5THfNtxtt1cMIZBaC0Jdj5Q,13118
558
+ google_cloud_pipeline_components-2.15.0.dist-info/METADATA,sha256=NY4mchqdmHxUJLDxtd__VeILGopuo9IFsBqgoVy3ttc,5810
559
+ google_cloud_pipeline_components-2.15.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
560
+ google_cloud_pipeline_components-2.15.0.dist-info/top_level.txt,sha256=E8T4T8KGMGLXbHvt2goa98oezRpxryPC6QhWBZ27Hhc,33
561
+ google_cloud_pipeline_components-2.15.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5