Skip to content

Commit 5fa785c

Browse files
committed
Resolve merge conflict
2 parents fe92f07 + f0dc877 commit 5fa785c

File tree

52 files changed

+2214
-352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2214
-352
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.119.0"
2+
".": "1.120.0"
33
}

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [1.120.0](https://github.com/googleapis/python-aiplatform/compare/v1.119.0...v1.120.0) (2025-10-08)
4+
5+
6+
### Features
7+
8+
* Add ability to use existing sessions for streaming_agent_run_with_events calls. ([0a369ea](https://github.com/googleapis/python-aiplatform/commit/0a369eacaa4e21e8055ef7c2e0f4c6da3a9298f8))
9+
* Add DeploymentTier enum to DeployedIndex ([89a26c1](https://github.com/googleapis/python-aiplatform/commit/89a26c15b8a15c8698192dc283e5839729ad3e66))
10+
* Add labels field for Predict API for Imagen use case (v1beta) ([89a26c1](https://github.com/googleapis/python-aiplatform/commit/89a26c15b8a15c8698192dc283e5839729ad3e66))
11+
* Auto-generated CL for //google/cloud/aiplatform:aiplatform_v1_public_proto_gen ([89a26c1](https://github.com/googleapis/python-aiplatform/commit/89a26c15b8a15c8698192dc283e5839729ad3e66))
12+
* Expose PSC for CustomModel ([d02099c](https://github.com/googleapis/python-aiplatform/commit/d02099cf200f7e372ad0c38f98a5b8c92bcc581c))
13+
* GenAI Client(evals) - Add `get_evaluation_set` and `get_evaluation_item` methods to Vertex AI GenAI SDK evals ([7757886](https://github.com/googleapis/python-aiplatform/commit/77578867ff7c4e8a9c4618481821cded32b4b135))
14+
* GenAI Client(evals) - Add `show` method for EvaluationRun class in Vertex AI GenAI SDK evals ([0c932b9](https://github.com/googleapis/python-aiplatform/commit/0c932b99bafde099734cf136828583de23fbaeb6))
15+
* Migrate vertex ai session service to use agent engine sdk ([b72df1c](https://github.com/googleapis/python-aiplatform/commit/b72df1c3e418c4b87ecb92e1506e7f3fe8da3994))
16+
* Migrate vertex_ai_session_service to use Agent Engine SDK ([55b54a2](https://github.com/googleapis/python-aiplatform/commit/55b54a21005587338abdd66c7605f534294b0c94))
17+
* Migrate vertex_ai_session_service to use Agent Engine SDK ([03772e2](https://github.com/googleapis/python-aiplatform/commit/03772e2a87f2fc6c66a69220e004522cc6ba1f94))
18+
19+
20+
### Bug Fixes
21+
22+
* GenAI Client(evals) - Parse user defined rubrics correctly to LLM metric ([64b0665](https://github.com/googleapis/python-aiplatform/commit/64b0665169b045ccfd16e537af2e45a4dd7977e0))
23+
24+
25+
### Documentation
26+
27+
* Fix Sessions SDK docstrings ([0077bde](https://github.com/googleapis/python-aiplatform/commit/0077bdebe62d0363c1faacd5f6e5562086dff080))
28+
329
## [1.119.0](https://github.com/googleapis/python-aiplatform/compare/v1.118.0...v1.119.0) (2025-10-03)
430

531

google/cloud/aiplatform/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

google/cloud/aiplatform/matching_engine/matching_engine_index.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,7 @@ def create_tree_ah_index(
588588
SHARD_SIZE_SMALL
589589
SHARD_SIZE_MEDIUM
590590
SHARD_SIZE_LARGE
591+
SHARD_SIZE_SO_DYNAMIC
591592
592593
593594
Returns:
@@ -740,6 +741,7 @@ def create_brute_force_index(
740741
SHARD_SIZE_SMALL
741742
SHARD_SIZE_MEDIUM
742743
SHARD_SIZE_LARGE
744+
SHARD_SIZE_SO_DYNAMIC
743745
744746
Returns:
745747
MatchingEngineIndex - Index resource object

google/cloud/aiplatform/matching_engine/matching_engine_index_endpoint.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,7 @@ def _build_deployed_index(
944944
auth_config_audiences: Optional[Sequence[str]] = None,
945945
auth_config_allowed_issuers: Optional[Sequence[str]] = None,
946946
psc_automation_configs: Optional[Sequence[Tuple[str, str]]] = None,
947+
deployment_tier: Optional[str] = None,
947948
) -> gca_matching_engine_index_endpoint.DeployedIndex:
948949
"""Builds a DeployedIndex.
949950
@@ -1046,6 +1047,8 @@ def _build_deployed_index(
10461047
projects/{project}/global/networks/{network}, where
10471048
{project} is a project number, as in '12345', and {network}
10481049
is network name.
1050+
deployment_tier (str):
1051+
Optional. The deployment tier that the index is deployed to.
10491052
10501053
"""
10511054

@@ -1056,6 +1059,7 @@ def _build_deployed_index(
10561059
enable_access_logging=enable_access_logging,
10571060
reserved_ip_ranges=reserved_ip_ranges,
10581061
deployment_group=deployment_group,
1062+
deployment_tier=deployment_tier,
10591063
)
10601064

10611065
if auth_config_audiences and auth_config_allowed_issuers:
@@ -1115,6 +1119,7 @@ def deploy_index(
11151119
sync: bool = True,
11161120
deploy_request_timeout: Optional[float] = None,
11171121
psc_automation_configs: Optional[Sequence[Tuple[str, str]]] = None,
1122+
deployment_tier: Optional[str] = None,
11181123
) -> "MatchingEngineIndexEndpoint":
11191124
"""Deploys an existing index resource to this endpoint resource.
11201125
@@ -1231,6 +1236,8 @@ def deploy_index(
12311236
[(project_id_1, network_1), (project_id_1, network_2))] will enable
12321237
PSC automation for the index to be deployed to project_id_1's network_1
12331238
and network_2 and can be queried within these networks.
1239+
deployment_tier (str):
1240+
Optional. The deployment tier that the index is deployed to.
12341241
Returns:
12351242
MatchingEngineIndexEndpoint - IndexEndpoint resource object
12361243
"""
@@ -1250,6 +1257,7 @@ def deploy_index(
12501257
sync=sync,
12511258
deploy_request_timeout=deploy_request_timeout,
12521259
psc_automation_configs=psc_automation_configs,
1260+
deployment_tier=deployment_tier,
12531261
)
12541262

12551263
@base.optional_sync(return_input_arg="self")
@@ -1270,6 +1278,7 @@ def _deploy_index(
12701278
sync: bool = True,
12711279
deploy_request_timeout: Optional[float] = None,
12721280
psc_automation_configs: Optional[Sequence[Tuple[str, str]]] = None,
1281+
deployment_tier: Optional[str] = None,
12731282
) -> "MatchingEngineIndexEndpoint":
12741283
"""Helper method to deploy an existing index resource to this endpoint resource.
12751284
@@ -1386,6 +1395,8 @@ def _deploy_index(
13861395
[(project_id_1, network_1), (project_id_1, network_2))] will enable
13871396
PSC automation for the index to be deployed to project_id_1's network_1
13881397
and network_2 and can be queried within these networks.
1398+
deployment_tier (str):
1399+
Optional. The deployment tier that the index is deployed to.
13891400
Returns:
13901401
MatchingEngineIndexEndpoint - IndexEndpoint resource object
13911402
"""
@@ -1411,6 +1422,7 @@ def _deploy_index(
14111422
auth_config_audiences=auth_config_audiences,
14121423
auth_config_allowed_issuers=auth_config_allowed_issuers,
14131424
psc_automation_configs=psc_automation_configs,
1425+
deployment_tier=deployment_tier,
14141426
)
14151427

14161428
deploy_lro = self.api_client.deploy_index(

google/cloud/aiplatform/v1/schema/predict/instance/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

google/cloud/aiplatform/v1/schema/predict/instance_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

google/cloud/aiplatform/v1/schema/predict/params/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

google/cloud/aiplatform/v1/schema/predict/params_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

google/cloud/aiplatform/v1/schema/predict/prediction/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.119.0" # {x-release-please-version}
16+
__version__ = "1.120.0" # {x-release-please-version}

0 commit comments

Comments
 (0)