@@ -53,11 +53,11 @@ The Kubeflow Pipelines Components repository serves as:
5353
5454### Install Core Components (Coming Soon)
5555
56- Install the official Kubeflow Pipelines Components package :
56+ Install the official Kubeflow SDK with components :
5757
5858``` bash
5959# Not yet available - coming soon!
60- pip install kfp-components
60+ pip install kubeflow
6161```
6262
6363### Install Third-Party Components (Coming Soon)
@@ -75,10 +75,10 @@ Once the packages are available, you'll be able to verify the installation:
7575
7676``` python
7777# Coming soon - example verification code
78- from kfp_components import training, evaluation, data_processing
78+ from kubeflow.pipelines.components import training, evaluation, data_processing
7979
8080# Example: Use a training component
81- from kfp_components .training import my_component
81+ from kubeflow.pipelines.components .training import my_component
8282
8383# List available components
8484print (dir (training))
@@ -90,8 +90,8 @@ print(dir(training))
9090
9191``` python
9292from kfp import dsl
93- from kfp_components .training import model_trainer
94- from kfp_components .evaluation import model_evaluator
93+ from kubeflow.pipelines.components .training import model_trainer
94+ from kubeflow.pipelines.components .evaluation import model_evaluator
9595
9696@dsl.pipeline (
9797 name = " my-ai-pipeline" ,
@@ -186,7 +186,7 @@ Each component has designated owners listed in its `OWNERS` file who:
186186
187187## 📦 Releases
188188
189- - ** Core Package** : ` kfp-components ` - Official community-maintained components
189+ - ** Core Package** : ` kubeflow ` - Official Kubeflow SDK including community-maintained components
190190- ** Third-Party Package** : ` kfp-components-third-party ` - Vetted third-party contributions
191191- ** Versioning** : Follows semantic versioning aligned with Kubeflow releases
192192- ** Release Cadence** : Regular releases aligned with Kubeflow Pipelines SDK
0 commit comments