@maxim_mazurok/gapi.client.aiplatform-v1 0.2.20250917 → 0.2.20250920
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 +18 -4
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250920
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -360,6 +360,8 @@ declare namespace gapi.client {
|
|
|
360
360
|
autoraterModel?: string;
|
|
361
361
|
/** Optional. Default is true. Whether to flip the candidate and baseline responses. This is only applicable to the pairwise metric. If enabled, also provide PairwiseMetricSpec.candidate_response_field_name and PairwiseMetricSpec.baseline_response_field_name. When rendering PairwiseMetricSpec.metric_prompt_template, the candidate and baseline fields will be flipped for half of the samples to reduce bias. */
|
|
362
362
|
flipEnabled?: boolean;
|
|
363
|
+
/** Optional. Configuration options for model generation and outputs. */
|
|
364
|
+
generationConfig?: GoogleCloudAiplatformV1GenerationConfig;
|
|
363
365
|
/** Optional. Number of samples for each instance in the dataset. If not specified, the default is 4. Minimum value is 1, maximum value is 32. */
|
|
364
366
|
samplingCount?: number;
|
|
365
367
|
}
|
|
@@ -595,7 +597,7 @@ declare namespace gapi.client {
|
|
|
595
597
|
candidateResponseColumns?: {[P in string]: string};
|
|
596
598
|
/** Optional. The name of the column that contains the requests to evaluate. This will be in evaluation_item.EvalPrompt format. */
|
|
597
599
|
promptColumn?: string;
|
|
598
|
-
/** Optional. The name of the column that contains the rubrics. This
|
|
600
|
+
/** Optional. The name of the column that contains the rubrics. This is in evaluation_rubric.RubricGroup format. */
|
|
599
601
|
rubricsColumn?: string;
|
|
600
602
|
/** Optional. The sampling config for the bigquery resource. */
|
|
601
603
|
samplingConfig?: GoogleCloudAiplatformV1BigQueryRequestSetSamplingConfig;
|
|
@@ -2004,7 +2006,7 @@ declare namespace gapi.client {
|
|
|
2004
2006
|
evaluationRequest?: GoogleCloudAiplatformV1EvaluationRequest;
|
|
2005
2007
|
/** Output only. The response from evaluation. */
|
|
2006
2008
|
evaluationResponse?: GoogleCloudAiplatformV1EvaluationResult;
|
|
2007
|
-
/** The
|
|
2009
|
+
/** The Cloud Storage object where the request or response is stored. */
|
|
2008
2010
|
gcsUri?: string;
|
|
2009
2011
|
/** Optional. Labels for the EvaluationItem. */
|
|
2010
2012
|
labels?: {[P in string]: string};
|
|
@@ -3152,7 +3154,7 @@ declare namespace gapi.client {
|
|
|
3152
3154
|
interface GoogleCloudAiplatformV1FunctionCall {
|
|
3153
3155
|
/** Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details. */
|
|
3154
3156
|
args?: {[P in string]: any};
|
|
3155
|
-
/**
|
|
3157
|
+
/** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
|
|
3156
3158
|
name?: string;
|
|
3157
3159
|
}
|
|
3158
3160
|
interface GoogleCloudAiplatformV1FunctionCallingConfig {
|
|
@@ -4231,6 +4233,16 @@ declare namespace gapi.client {
|
|
|
4231
4233
|
/** Required. The user-defined display name of the Study */
|
|
4232
4234
|
displayName?: string;
|
|
4233
4235
|
}
|
|
4236
|
+
interface GoogleCloudAiplatformV1LustreMount {
|
|
4237
|
+
/** Required. The name of the Lustre filesystem. */
|
|
4238
|
+
filesystem?: string;
|
|
4239
|
+
/** Required. IP address of the Lustre instance. */
|
|
4240
|
+
instanceIp?: string;
|
|
4241
|
+
/** Required. Destination mount path. The Lustre file system will be mounted for the user under /mnt/lustre/ */
|
|
4242
|
+
mountPoint?: string;
|
|
4243
|
+
/** Required. The unique identifier of the Lustre volume. */
|
|
4244
|
+
volumeHandle?: string;
|
|
4245
|
+
}
|
|
4234
4246
|
interface GoogleCloudAiplatformV1MachineSpec {
|
|
4235
4247
|
/** The number of accelerators to attach to the machine. */
|
|
4236
4248
|
acceleratorCount?: number;
|
|
@@ -9811,6 +9823,8 @@ declare namespace gapi.client {
|
|
|
9811
9823
|
containerSpec?: GoogleCloudAiplatformV1ContainerSpec;
|
|
9812
9824
|
/** Disk spec. */
|
|
9813
9825
|
diskSpec?: GoogleCloudAiplatformV1DiskSpec;
|
|
9826
|
+
/** Optional. List of Lustre mounts. */
|
|
9827
|
+
lustreMounts?: GoogleCloudAiplatformV1LustreMount[];
|
|
9814
9828
|
/** Optional. Immutable. The specification of a single machine. */
|
|
9815
9829
|
machineSpec?: GoogleCloudAiplatformV1MachineSpec;
|
|
9816
9830
|
/** Optional. List of NFS mount spec. */
|