Skip to content

Commit dd3d17a

Browse files
Google APIscopybara-github
authored andcommitted
feat: A new field inference_generation_config is added to message .google.cloud.aiplatform.v1beta1.EvaluationConfig
feat: A new field `evaluation_run` is added to message `.google.cloud.aiplatform.v1beta1.EvaluateDatasetRun` docs: comment on `evaluate_dataset_response` clarified PiperOrigin-RevId: 875384529
1 parent c608bdf commit dd3d17a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

google/cloud/aiplatform/v1beta1/tuning_job.proto

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2025 Google LLC
1+
// Copyright 2026 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -644,6 +644,11 @@ message EvaluationConfig {
644644

645645
// Optional. Autorater config for evaluation.
646646
AutoraterConfig autorater_config = 3 [(google.api.field_behavior) = OPTIONAL];
647+
648+
// Optional. Configuration options for inference generation and outputs.
649+
// If not set, default generation parameters are used.
650+
GenerationConfig inference_generation_config = 5
651+
[(google.api.field_behavior) = OPTIONAL];
647652
}
648653

649654
// Evaluate Dataset Run Result for Tuning Job.
@@ -652,11 +657,15 @@ message EvaluateDatasetRun {
652657
// `projects/{project}/locations/{location}/operations/{operation_id}`.
653658
string operation_name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
654659

660+
// Output only. The resource name of the evaluation run. Format:
661+
// `projects/{project}/locations/{location}/evaluationRuns/{evaluation_run_id}`.
662+
string evaluation_run = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
663+
655664
// Output only. The checkpoint id used in the evaluation run. Only populated
656665
// when evaluating checkpoints.
657666
string checkpoint_id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
658667

659-
// Output only. Results for EvaluationService.EvaluateDataset.
668+
// Output only. Results for EvaluationService.
660669
EvaluateDatasetResponse evaluate_dataset_response = 3
661670
[(google.api.field_behavior) = OUTPUT_ONLY];
662671

0 commit comments

Comments
 (0)