@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20240916 → 0.0.20240925
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 +10 -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: 20240925
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -277,7 +277,7 @@ declare namespace gapi.client {
|
|
|
277
277
|
genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
278
278
|
}
|
|
279
279
|
interface GoogleCloudAiplatformV1BatchCreateFeaturesRequest {
|
|
280
|
-
/** Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType. The `parent` field in each child request message can be omitted. If `parent` is set in a child request, then the value must match the `parent` value in this request message. */
|
|
280
|
+
/** Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType / FeatureGroup. The `parent` field in each child request message can be omitted. If `parent` is set in a child request, then the value must match the `parent` value in this request message. */
|
|
281
281
|
requests?: GoogleCloudAiplatformV1CreateFeatureRequest[];
|
|
282
282
|
}
|
|
283
283
|
interface GoogleCloudAiplatformV1BatchCreateFeaturesResponse {
|
|
@@ -5849,12 +5849,18 @@ declare namespace gapi.client {
|
|
|
5849
5849
|
groundingConfig?: GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig;
|
|
5850
5850
|
/** Whether the prompt dataset has prompt variable. */
|
|
5851
5851
|
hasPromptVariable?: boolean;
|
|
5852
|
+
/** Whether or not the user has enabled logit probabilities in the model parameters. */
|
|
5853
|
+
logprobs?: boolean;
|
|
5852
5854
|
/** Value of the maximum number of tokens generated set when the dataset was saved. */
|
|
5853
5855
|
maxOutputTokens?: string;
|
|
5854
5856
|
/** User-created prompt note. Note size limit is 2KB. */
|
|
5855
5857
|
note?: string;
|
|
5856
5858
|
/** Type of the prompt dataset. */
|
|
5857
5859
|
promptType?: string;
|
|
5860
|
+
/** Seeding enables model to return a deterministic response on a best effort basis. Determinism isn't guaranteed. This field determines whether or not seeding is enabled. */
|
|
5861
|
+
seedEnabled?: boolean;
|
|
5862
|
+
/** The actual value of the seed. */
|
|
5863
|
+
seedValue?: string;
|
|
5858
5864
|
/** Customized stop sequences. */
|
|
5859
5865
|
stopSequences?: string[];
|
|
5860
5866
|
/** The content of the prompt dataset system instruction. */
|
|
@@ -14356,7 +14362,7 @@ declare namespace gapi.client {
|
|
|
14356
14362
|
key?: string;
|
|
14357
14363
|
/** OAuth 2.0 token for the current user. */
|
|
14358
14364
|
oauth_token?: string;
|
|
14359
|
-
/** Required. The resource name of the EntityType to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
14365
|
+
/** Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}` */
|
|
14360
14366
|
parent: string;
|
|
14361
14367
|
/** Returns response with indentations and line breaks. */
|
|
14362
14368
|
prettyPrint?: boolean;
|
|
@@ -14385,7 +14391,7 @@ declare namespace gapi.client {
|
|
|
14385
14391
|
key?: string;
|
|
14386
14392
|
/** OAuth 2.0 token for the current user. */
|
|
14387
14393
|
oauth_token?: string;
|
|
14388
|
-
/** Required. The resource name of the EntityType to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
14394
|
+
/** Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}` */
|
|
14389
14395
|
parent: string;
|
|
14390
14396
|
/** Returns response with indentations and line breaks. */
|
|
14391
14397
|
prettyPrint?: boolean;
|