You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Update product name from "Vertex AI" to "Gemini Enterprise Agent Platform" in README, and add a note to rename Agent Engine to Agent Runtime in upcoming major release
`Vertex AI`_: Google Vertex AI is an integrated suite of machine learning tools and services for building and using ML models with AutoML or custom code. It offers both novices and experts the best workbench for the entire machine learning development lifecycle.
6
+
> **Note:** The Gemini Enterprise Agent Platform was formerly known as
7
+
> Vertex AI.
8
+
9
+
> **Note:** The **agent_engines** module will be rebranded as **runtimes** in
10
+
> an upcoming major release (not before 7/31/2026). See [Agent Runtime](https://docs.cloud.google.com/gemini-enterprise-agent-platform/scale#agent-runtime) for details.
11
+
12
+
13
+
`Gemini Enterprise Agent Platform`_: Gemini Enterprise Agent Platform is Google Cloud's comprehensive platform for developers to build, scale, govern and optimize agents.
To use Gen AI features from the Vertex AI SDK, you can instantiate a Vertex SDK client with the following:
51
+
To use Gen AI features from the Gemini Enterprise Agent Platform SDK, you can instantiate a Vertex SDK client with the following:
45
52
46
53
.. code-block:: Python
47
54
@@ -134,7 +141,7 @@ Next, define an ADK Agent:
134
141
from vertexai.agent_engines import AdkApp
135
142
136
143
app = AdkApp(agent=Agent(
137
-
model="gemini-2.0-flash", # Required.
144
+
model="gemini-3.5-flash", # Required.
138
145
name='currency_exchange_agent', # Required.
139
146
tools=[get_exchange_rate], # Optional.
140
147
))
@@ -153,6 +160,7 @@ To deploy the agent to Agent Engine:
153
160
154
161
.. code-block:: Python
155
162
163
+
# Replace with client.runtimes.create in a future major release.
156
164
remote_app = client.agent_engines.create(
157
165
agent=app,
158
166
config={
@@ -185,7 +193,7 @@ method.
185
193
print(response.parsed_response.suggested_prompt)
186
194
187
195
To call the data-driven prompt optimization, call the `launch_optimization_job` method.
188
-
In this case however, we need to provide a VAPO (Vertex AI Prompt Optimizer) config. This config needs to
196
+
In this case however, we need to provide a VAPO (Gemini Enterprise Agent Platform Prompt Optimizer) config. This config needs to
189
197
have either service account or project **number** and the config path.
190
198
Please refer to this [tutorial](https://cloud.google.com/vertex-ai/generative-ai/docs/learn/prompts/data-driven-optimizer)
191
199
for more details on config parameter.
@@ -368,11 +376,11 @@ Delete a skill when it is no longer required.
368
376
369
377
.. note::
370
378
371
-
The following Generative AI modules in the Vertex AI SDK are deprecated as of June 24, 2025 and will be removed on June 24, 2026:
379
+
The following Generative AI modules in the Gemini Enterprise Agent Platform SDK are deprecated as of June 24, 2025 and will be removed on June 24, 2026:
372
380
`vertexai.generative_models`, `vertexai.language_models`, `vertexai.vision_models`, `vertexai.tuning`, `vertexai.caching`. Please use the
373
381
[Google Gen AI SDK](https://pypi.org/project/google-genai/) to access these features. See
374
382
[the migration guide](https://cloud.google.com/vertex-ai/generative-ai/docs/deprecations/genai-vertexai-sdk) for details.
375
-
You can continue using all other Vertex AI SDK modules, as they are the recommended way to use the API.
383
+
You can continue using all other Gemini Enterprise Agent Platform SDK modules, as they are the recommended way to use the API.
376
384
377
385
Quick Start
378
386
-----------
@@ -381,12 +389,12 @@ In order to use this library, you first need to go through the following steps:
381
389
382
390
1. `Select or create a Cloud Platform project.`_
383
391
2. `Enable billing for your project.`_
384
-
3. `Enable the Vertex AI API.`_
392
+
3. `Enable the Gemini Enterprise Agent Platform API.`_
385
393
4. `Setup Authentication.`_
386
394
387
395
.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
388
396
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
389
-
.. _Enable the Vertex AI API.: https://cloud.google.com/vertex-ai/docs/start/use-vertex-ai-python-sdk
397
+
.. _Enable the Gemini Enterprise Agent Platform API.: https://cloud.google.com/vertex-ai/docs/start/use-vertex-ai-python-sdk
@@ -406,7 +414,7 @@ The last version of this library compatible with Python 3.6 is google-cloud-aipl
406
414
407
415
Overview
408
416
~~~~~~~~
409
-
This section provides a brief overview of the Vertex AI SDK for Python. You can also reference the notebooks in `vertex-ai-samples`_ for examples.
417
+
This section provides a brief overview of the Gemini Enterprise Agent Platform SDK for Python. You can also reference the notebooks in `vertex-ai-samples`_ for examples.
Vertex AI supports a variety of dataset schemas. References to these schemas are available under the
509
+
Gemini Enterprise Agent Platform supports a variety of dataset schemas. References to these schemas are available under the
502
510
:code:`aiplatform.schema.dataset` namespace. For more information on the supported dataset schemas please refer to the
503
511
`Preparing data docs`_.
504
512
505
513
.. _Preparing data docs: https://cloud.google.com/ai-platform-unified/docs/datasets/prepare
506
514
507
515
Training
508
516
^^^^^^^^
509
-
The Vertex AI SDK for Python allows you train Custom and AutoML Models.
517
+
The Gemini Enterprise Agent Platform SDK for Python allows you train Custom and AutoML Models.
510
518
511
519
You can train custom models using a custom Python script, custom Python package, or container.
512
520
513
521
**Preparing Your Custom Code**
514
522
515
-
Vertex AI custom training enables you to train on Vertex AI datasets and produce Vertex AI models. To do so your
523
+
Gemini Enterprise Agent Platform custom training enables you to train on Gemini Enterprise Agent Platform datasets and produce Gemini Enterprise Agent Platform models. To do so your
516
524
script must adhere to the following contract:
517
525
518
526
It must read datasets from the environment variables populated by the training service:
@@ -552,12 +560,12 @@ It must write the model artifact to the environment variable populated by the tr
552
560
accelerator_type='NVIDIA_TESLA_K80',
553
561
accelerator_count=1)
554
562
555
-
In the code block above `my_dataset` is managed dataset created in the `Dataset` section above. The `model` variable is a managed Vertex AI model that can be deployed or exported.
563
+
In the code block above `my_dataset` is managed dataset created in the `Dataset` section above. The `model` variable is a managed Gemini Enterprise Agent Platform model that can be deployed or exported.
556
564
557
565
558
566
AutoMLs
559
567
-------
560
-
The Vertex AI SDK for Python supports AutoML tabular, image, text, video, and forecasting.
568
+
The Gemini Enterprise Agent Platform SDK for Python supports AutoML tabular, image, text, video, and forecasting.
561
569
562
570
To train an AutoML tabular model:
563
571
@@ -619,14 +627,14 @@ To deploy a model:
619
627
accelerator_count=1)
620
628
621
629
622
-
Please visit `Importing models to Vertex AI`_ for a detailed overview:
630
+
Please visit `Importing models to Gemini Enterprise Agent Platform`_ for a detailed overview:
623
631
624
-
.. _Importing models to Vertex AI: https://cloud.google.com/vertex-ai/docs/general/import-model
632
+
.. _Importing models to Gemini Enterprise Agent Platform: https://cloud.google.com/vertex-ai/docs/general/import-model
625
633
626
634
Model Evaluation
627
635
----------------
628
636
629
-
The Vertex AI SDK for Python currently supports getting model evaluation metrics for all AutoML models.
637
+
The Gemini Enterprise Agent Platform SDK for Python currently supports getting model evaluation metrics for all AutoML models.
630
638
631
639
To list all model evaluations for a model:
632
640
@@ -743,7 +751,7 @@ To delete an endpoint:
743
751
Pipelines
744
752
---------
745
753
746
-
To create a Vertex AI Pipeline run and monitor until completion:
754
+
To create a Gemini Enterprise Agent Platform Pipeline run and monitor until completion:
747
755
748
756
.. code-block:: Python
749
757
@@ -767,7 +775,7 @@ To create a Vertex AI Pipeline run and monitor until completion:
767
775
pipeline_root=pipeline_root,
768
776
)
769
777
770
-
# Execute pipeline in Vertex AI and monitor until completion
778
+
# Execute pipeline in Gemini Enterprise Agent Platform and monitor until completion
771
779
pl.run(
772
780
# Email address of service account to use for the pipeline run
773
781
# You must have iam.serviceAccounts.actAs permission on the service account to use it
@@ -778,7 +786,7 @@ To create a Vertex AI Pipeline run and monitor until completion:
778
786
sync=True
779
787
)
780
788
781
-
To create a Vertex AI Pipeline without monitoring until completion, use `submit` instead of `run`:
789
+
To create a Gemini Enterprise Agent Platform Pipeline without monitoring until completion, use `submit` instead of `run`:
782
790
783
791
.. code-block:: Python
784
792
@@ -802,7 +810,7 @@ To create a Vertex AI Pipeline without monitoring until completion, use `submit`
802
810
pipeline_root=pipeline_root,
803
811
)
804
812
805
-
# Submit the Pipeline to Vertex AI
813
+
# Submit the Pipeline to Gemini Enterprise Agent Platform
806
814
pl.submit(
807
815
# Email address of service account to use for the pipeline run
808
816
# You must have iam.serviceAccounts.actAs permission on the service account to use it
@@ -852,7 +860,7 @@ To use Explanation Metadata in endpoint deployment and model upload:
852
860
Cloud Profiler
853
861
----------------------------
854
862
855
-
Cloud Profiler allows you to profile your remote Vertex AI Training jobs on demand and visualize the results in Vertex AI Tensorboard.
863
+
Cloud Profiler allows you to profile your remote Gemini Enterprise Agent Platform Training jobs on demand and visualize the results in Gemini Enterprise Agent Platform Tensorboard.
856
864
857
865
To start using the profiler with TensorFlow, update your training script to include the following:
858
866
@@ -862,20 +870,20 @@ To start using the profiler with TensorFlow, update your training script to incl
862
870
...
863
871
cloud_profiler.init()
864
872
865
-
Next, run the job with with a Vertex AI TensorBoard instance. For full details on how to do this, visit https://cloud.google.com/vertex-ai/docs/experiments/tensorboard-overview
873
+
Next, run the job with with a Gemini Enterprise Agent Platform TensorBoard instance. For full details on how to do this, visit https://cloud.google.com/vertex-ai/docs/experiments/tensorboard-overview
866
874
867
875
Finally, visit your TensorBoard in your Google Cloud Console, navigate to the "Profile" tab, and click the `Capture Profile` button. This will allow users to capture profiling statistics for the running jobs.
868
876
869
877
870
878
Next Steps
871
879
~~~~~~~~~~
872
880
873
-
- Read the `Client Library Documentation`_ for Vertex AI
881
+
- Read the `Client Library Documentation`_ for Gemini Enterprise Agent Platform
874
882
API to see other available methods on the client.
875
-
- Read the `Vertex AI API Product documentation`_ to learn
883
+
- Read the `Gemini Enterprise Agent Platform API Product documentation`_ to learn
876
884
more about the product and see How-to Guides.
877
885
- View this `README`_ to see the full list of Cloud
878
886
APIs that we cover.
879
887
880
-
.. _Vertex AI API Product documentation: https://cloud.google.com/vertex-ai/docs
888
+
.. _Gemini Enterprise Agent Platform API Product documentation: https://cloud.google.com/vertex-ai/docs
0 commit comments