Skip to content

Commit 341c648

Browse files
feat: Automated regeneration of AIPlatform client (googleapis#12843)
Auto-created at 2025-01-20 13:12:55 +0000 using the toys pull request generator.
1 parent 26d9044 commit 341c648

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

clients/ai_platform/lib/google_api/ai_platform/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.AIPlatform.V1 do
2020
API client metadata for GoogleApi.AIPlatform.V1.
2121
"""
2222

23-
@discovery_revision "20250107"
23+
@discovery_revision "20250114"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/ai_platform/lib/google_api/ai_platform/v1/model/google_cloud_aiplatform_v1_supervised_tuning_data_stats.ex

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ defmodule GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1SupervisedTuningD
2121
2222
## Attributes
2323
24+
* `droppedExampleReasons` (*type:* `list(String.t)`, *default:* `nil`) - Output only. For each index in `truncated_example_indices`, the user-facing reason why the example was dropped. Must not include example itself.
2425
* `totalBillableCharacterCount` (*type:* `String.t`, *default:* `nil`) - Output only. Number of billable characters in the tuning dataset.
2526
* `totalBillableTokenCount` (*type:* `String.t`, *default:* `nil`) - Output only. Number of billable tokens in the tuning dataset.
26-
* `totalTruncatedExampleCount` (*type:* `String.t`, *default:* `nil`) - The number of examples in the dataset that have been truncated by any amount.
27+
* `totalTruncatedExampleCount` (*type:* `String.t`, *default:* `nil`) - Output only. The number of examples in the dataset that have been dropped. An example can be dropped for reasons including: too many tokens, contains an invalid image, contains too many images, etc.
2728
* `totalTuningCharacterCount` (*type:* `String.t`, *default:* `nil`) - Output only. Number of tuning characters in the tuning dataset.
28-
* `truncatedExampleIndices` (*type:* `list(String.t)`, *default:* `nil`) - A partial sample of the indices (starting from 1) of the truncated examples.
29+
* `truncatedExampleIndices` (*type:* `list(String.t)`, *default:* `nil`) - Output only. A partial sample of the indices (starting from 1) of the dropped examples.
2930
* `tuningDatasetExampleCount` (*type:* `String.t`, *default:* `nil`) - Output only. Number of examples in the tuning dataset.
3031
* `tuningStepCount` (*type:* `String.t`, *default:* `nil`) - Output only. Number of tuning steps for this Tuning Job.
3132
* `userDatasetExamples` (*type:* `list(GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1Content.t)`, *default:* `nil`) - Output only. Sample user messages in the training dataset uri.
@@ -37,6 +38,7 @@ defmodule GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1SupervisedTuningD
3738
use GoogleApi.Gax.ModelBase
3839

3940
@type t :: %__MODULE__{
41+
:droppedExampleReasons => list(String.t()) | nil,
4042
:totalBillableCharacterCount => String.t() | nil,
4143
:totalBillableTokenCount => String.t() | nil,
4244
:totalTruncatedExampleCount => String.t() | nil,
@@ -57,6 +59,7 @@ defmodule GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1SupervisedTuningD
5759
| nil
5860
}
5961

62+
field(:droppedExampleReasons, type: :list)
6063
field(:totalBillableCharacterCount)
6164
field(:totalBillableTokenCount)
6265
field(:totalTruncatedExampleCount)

0 commit comments

Comments
 (0)