@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250107 → 0.0.20250120
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250120
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -8879,15 +8879,17 @@ declare namespace gapi.client {
|
|
|
8879
8879
|
right?: number;
|
|
8880
8880
|
}
|
|
8881
8881
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDataStats {
|
|
8882
|
+
/** Output only. For each index in `truncated_example_indices`, the user-facing reason why the example was dropped. Must not include example itself. */
|
|
8883
|
+
droppedExampleReasons?: string[];
|
|
8882
8884
|
/** Output only. Number of billable characters in the tuning dataset. */
|
|
8883
8885
|
totalBillableCharacterCount?: string;
|
|
8884
8886
|
/** Output only. Number of billable tokens in the tuning dataset. */
|
|
8885
8887
|
totalBillableTokenCount?: string;
|
|
8886
|
-
/** The number of examples in the dataset that have been
|
|
8888
|
+
/** 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. */
|
|
8887
8889
|
totalTruncatedExampleCount?: string;
|
|
8888
8890
|
/** Output only. Number of tuning characters in the tuning dataset. */
|
|
8889
8891
|
totalTuningCharacterCount?: string;
|
|
8890
|
-
/** A partial sample of the indices (starting from 1) of the
|
|
8892
|
+
/** Output only. A partial sample of the indices (starting from 1) of the dropped examples. */
|
|
8891
8893
|
truncatedExampleIndices?: string[];
|
|
8892
8894
|
/** Output only. Number of examples in the tuning dataset. */
|
|
8893
8895
|
tuningDatasetExampleCount?: string;
|