@google/genai 1.13.0 → 1.14.0

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/dist/genai.d.ts CHANGED
@@ -1425,6 +1425,8 @@ export declare interface CreateTuningJobConfig {
1425
1425
  learningRateMultiplier?: number;
1426
1426
  /** If set to true, disable intermediate checkpoints for SFT and only the last checkpoint will be exported. Otherwise, enable intermediate checkpoints for SFT. */
1427
1427
  exportLastCheckpointOnly?: boolean;
1428
+ /** The optional checkpoint id of the pre-tuned model to use for tuning, if applicable. */
1429
+ preTunedModelCheckpointId?: string;
1428
1430
  /** Adapter size for tuning. */
1429
1431
  adapterSize?: AdapterSize;
1430
1432
  /** The batch size hyperparameter for tuning. If not set, a default of 4 or 16 will be used based on the number of training examples. */
@@ -1435,7 +1437,7 @@ export declare interface CreateTuningJobConfig {
1435
1437
 
1436
1438
  /** Supervised fine-tuning job creation parameters - optional fields. */
1437
1439
  export declare interface CreateTuningJobParameters {
1438
- /** The base model that is being tuned, e.g., "gemini-1.0-pro-002". */
1440
+ /** The base model that is being tuned, e.g., "gemini-2.5-flash". */
1439
1441
  baseModel: string;
1440
1442
  /** Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
1441
1443
  trainingDataset: TuningDataset;
@@ -1443,6 +1445,18 @@ export declare interface CreateTuningJobParameters {
1443
1445
  config?: CreateTuningJobConfig;
1444
1446
  }
1445
1447
 
1448
+ /** Supervised fine-tuning job creation parameters - optional fields. */
1449
+ export declare interface CreateTuningJobParametersPrivate {
1450
+ /** The base model that is being tuned, e.g., "gemini-2.5-flash". */
1451
+ baseModel?: string;
1452
+ /** The PreTunedModel that is being tuned. */
1453
+ preTunedModel?: PreTunedModel;
1454
+ /** Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
1455
+ trainingDataset: TuningDataset;
1456
+ /** Configuration for the tuning job. */
1457
+ config?: CreateTuningJobConfig;
1458
+ }
1459
+
1446
1460
  /**
1447
1461
  * Creates a `Content` object with a user role from a `PartListUnion` object or `string`.
1448
1462
  */
@@ -1612,34 +1626,6 @@ export declare interface DistillationDataStats {
1612
1626
  trainingDatasetStats?: DatasetStats;
1613
1627
  }
1614
1628
 
1615
- /** Hyperparameters for Distillation. */
1616
- export declare interface DistillationHyperParameters {
1617
- /** Optional. Adapter size for distillation. */
1618
- adapterSize?: AdapterSize;
1619
- /** Optional. Number of complete passes the model makes over the entire training dataset during training. */
1620
- epochCount?: string;
1621
- /** Optional. Multiplier for adjusting the default learning rate. */
1622
- learningRateMultiplier?: number;
1623
- }
1624
-
1625
- /** Tuning Spec for Distillation. */
1626
- export declare interface DistillationSpec {
1627
- /** The base teacher model that is being distilled. See [Supported models](https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/tuning#supported_models). */
1628
- baseTeacherModel?: string;
1629
- /** Optional. Hyperparameters for Distillation. */
1630
- hyperParameters?: DistillationHyperParameters;
1631
- /** Deprecated. A path in a Cloud Storage bucket, which will be treated as the root output directory of the distillation pipeline. It is used by the system to generate the paths of output artifacts. */
1632
- pipelineRootDirectory?: string;
1633
- /** The student model that is being tuned, e.g., "google/gemma-2b-1.1-it". Deprecated. Use base_model instead. */
1634
- studentModel?: string;
1635
- /** Deprecated. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
1636
- trainingDatasetUri?: string;
1637
- /** The resource name of the Tuned teacher model. Format: `projects/{project}/locations/{location}/models/{model}`. */
1638
- tunedTeacherModelSource?: string;
1639
- /** Optional. Cloud Storage path to file containing validation dataset for tuning. The dataset must be formatted as a JSONL file. */
1640
- validationDatasetUri?: string;
1641
- }
1642
-
1643
1629
  export declare type DownloadableFileUnion = string | File_2 | GeneratedVideo | Video;
1644
1630
 
1645
1631
  declare interface Downloader {
@@ -1895,9 +1881,11 @@ export declare enum EndSensitivity {
1895
1881
 
1896
1882
  /** Tool to search public web data, powered by Vertex AI Search and Sec4 compliance. */
1897
1883
  export declare interface EnterpriseWebSearch {
1884
+ /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
1885
+ excludeDomains?: string[];
1898
1886
  }
1899
1887
 
1900
- /** Required. The environment being operated. */
1888
+ /** The environment being operated. */
1901
1889
  export declare enum Environment {
1902
1890
  /**
1903
1891
  * Defaults to browser.
@@ -2331,6 +2319,22 @@ export declare enum FunctionResponseScheduling {
2331
2319
  INTERRUPT = "INTERRUPT"
2332
2320
  }
2333
2321
 
2322
+ /** Input example for preference optimization. */
2323
+ export declare interface GeminiPreferenceExample {
2324
+ /** List of completions for a given prompt. */
2325
+ completions?: GeminiPreferenceExampleCompletion[];
2326
+ /** Multi-turn contents that represents the Prompt. */
2327
+ contents?: Content[];
2328
+ }
2329
+
2330
+ /** Completion and its preference score. */
2331
+ export declare interface GeminiPreferenceExampleCompletion {
2332
+ /** Single turn completion for the given prompt. */
2333
+ completion?: Content;
2334
+ /** The score for the given completion. */
2335
+ score?: number;
2336
+ }
2337
+
2334
2338
  /** Optional model configuration parameters.
2335
2339
 
2336
2340
  For more information, see `Content generation parameters
@@ -2960,7 +2964,7 @@ export declare interface GenerationConfigRoutingConfigManualRoutingMode {
2960
2964
  export declare interface GenerationConfigThinkingConfig {
2961
2965
  /** Optional. Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. */
2962
2966
  includeThoughts?: boolean;
2963
- /** Optional. Indicates the thinking budget in tokens. This is only applied when enable_thinking is true. */
2967
+ /** Optional. Indicates the thinking budget in tokens. */
2964
2968
  thinkingBudget?: number;
2965
2969
  }
2966
2970
 
@@ -3224,6 +3228,9 @@ export declare interface GoogleSearch {
3224
3228
  If customers set a start time, they must set an end time (and vice versa).
3225
3229
  */
3226
3230
  timeRangeFilter?: Interval;
3231
+ /** Optional. List of domains to be excluded from the search results.
3232
+ The default limit is 2000 domains. */
3233
+ excludeDomains?: string[];
3227
3234
  }
3228
3235
 
3229
3236
  /** Tool to retrieve public web data for grounding, powered by Google. */
@@ -3244,14 +3251,64 @@ export declare interface GoogleTypeDate {
3244
3251
 
3245
3252
  /** Grounding chunk. */
3246
3253
  export declare interface GroundingChunk {
3254
+ /** Grounding chunk from Google Maps. */
3255
+ maps?: GroundingChunkMaps;
3247
3256
  /** Grounding chunk from context retrieved by the retrieval tools. */
3248
3257
  retrievedContext?: GroundingChunkRetrievedContext;
3249
3258
  /** Grounding chunk from the web. */
3250
3259
  web?: GroundingChunkWeb;
3251
3260
  }
3252
3261
 
3262
+ /** Chunk from Google Maps. */
3263
+ export declare interface GroundingChunkMaps {
3264
+ /** Sources used to generate the place answer. This includes review snippets and photos that were used to generate the answer, as well as uris to flag content. */
3265
+ placeAnswerSources?: GroundingChunkMapsPlaceAnswerSources;
3266
+ /** This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place. */
3267
+ placeId?: string;
3268
+ /** Text of the chunk. */
3269
+ text?: string;
3270
+ /** Title of the chunk. */
3271
+ title?: string;
3272
+ /** URI reference of the chunk. */
3273
+ uri?: string;
3274
+ }
3275
+
3276
+ /** Sources used to generate the place answer. */
3277
+ export declare interface GroundingChunkMapsPlaceAnswerSources {
3278
+ /** A link where users can flag a problem with the generated answer. */
3279
+ flagContentUri?: string;
3280
+ /** Snippets of reviews that are used to generate the answer. */
3281
+ reviewSnippets?: GroundingChunkMapsPlaceAnswerSourcesReviewSnippet[];
3282
+ }
3283
+
3284
+ /** Author attribution for a photo or review. */
3285
+ export declare interface GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution {
3286
+ /** Name of the author of the Photo or Review. */
3287
+ displayName?: string;
3288
+ /** Profile photo URI of the author of the Photo or Review. */
3289
+ photoUri?: string;
3290
+ /** URI of the author of the Photo or Review. */
3291
+ uri?: string;
3292
+ }
3293
+
3294
+ /** Encapsulates a review snippet. */
3295
+ export declare interface GroundingChunkMapsPlaceAnswerSourcesReviewSnippet {
3296
+ /** This review's author. */
3297
+ authorAttribution?: GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution;
3298
+ /** A link where users can flag a problem with the review. */
3299
+ flagContentUri?: string;
3300
+ /** A link to show the review on Google Maps. */
3301
+ googleMapsUri?: string;
3302
+ /** A string of formatted recent time, expressing the review time relative to the current time in a form appropriate for the language and country. */
3303
+ relativePublishTimeDescription?: string;
3304
+ /** A reference representing this place review which may be used to look up this place review again. */
3305
+ review?: string;
3306
+ }
3307
+
3253
3308
  /** Chunk from context retrieved by the retrieval tools. */
3254
3309
  export declare interface GroundingChunkRetrievedContext {
3310
+ /** Output only. The full document name for the referenced Vertex AI Search document. */
3311
+ documentName?: string;
3255
3312
  /** Additional context for the RAG retrieval result. This is only populated when using the RAG retrieval tool. */
3256
3313
  ragChunk?: RagChunk;
3257
3314
  /** Text of the attribution. */
@@ -3274,6 +3331,8 @@ export declare interface GroundingChunkWeb {
3274
3331
 
3275
3332
  /** Metadata returned to client when grounding is enabled. */
3276
3333
  export declare interface GroundingMetadata {
3334
+ /** Optional. Output only. Resource name of the Google Maps widget context token to be used with the PlacesContextElement widget to render contextual data. This is populated only for Google Maps grounding. */
3335
+ googleMapsWidgetContextToken?: string;
3277
3336
  /** List of supporting references retrieved from specified grounding source. */
3278
3337
  groundingChunks?: GroundingChunk[];
3279
3338
  /** Optional. List of grounding support. */
@@ -5472,6 +5531,36 @@ export declare interface PrebuiltVoiceConfig {
5472
5531
  voiceName?: string;
5473
5532
  }
5474
5533
 
5534
+ /** Statistics computed for datasets used for preference optimization. */
5535
+ export declare interface PreferenceOptimizationDataStats {
5536
+ /** Output only. Dataset distributions for scores variance per example. */
5537
+ scoreVariancePerExampleDistribution?: DatasetDistribution;
5538
+ /** Output only. Dataset distributions for scores. */
5539
+ scoresDistribution?: DatasetDistribution;
5540
+ /** Output only. Number of billable tokens in the tuning dataset. */
5541
+ totalBillableTokenCount?: string;
5542
+ /** Output only. Number of examples in the tuning dataset. */
5543
+ tuningDatasetExampleCount?: string;
5544
+ /** Output only. Number of tuning steps for this Tuning Job. */
5545
+ tuningStepCount?: string;
5546
+ /** Output only. Sample user examples in the training dataset. */
5547
+ userDatasetExamples?: GeminiPreferenceExample[];
5548
+ /** Output only. Dataset distributions for the user input tokens. */
5549
+ userInputTokenDistribution?: DatasetDistribution;
5550
+ /** Output only. Dataset distributions for the user output tokens. */
5551
+ userOutputTokenDistribution?: DatasetDistribution;
5552
+ }
5553
+
5554
+ /** A pre-tuned model for continuous tuning. */
5555
+ export declare interface PreTunedModel {
5556
+ /** Output only. The name of the base model this PreTunedModel was tuned from. */
5557
+ baseModel?: string;
5558
+ /** Optional. The source checkpoint id. If not specified, the default checkpoint will be used. */
5559
+ checkpointId?: string;
5560
+ /** The resource name of the Model. E.g., a model resource name with a specified version id or alias: `projects/{project}/locations/{location}/models/{model}@{version_id}` `projects/{project}/locations/{location}/models/{model}@{alias}` Or, omit the version id to use the default version: `projects/{project}/locations/{location}/models/{model}` */
5561
+ tunedModelName?: string;
5562
+ }
5563
+
5475
5564
  /** Config for proactivity features. */
5476
5565
  export declare interface ProactivityConfig {
5477
5566
  /** If enabled, the model can reject responding to the last prompt. For
@@ -6204,9 +6293,13 @@ export declare enum SubjectReferenceType {
6204
6293
  export declare interface SupervisedHyperParameters {
6205
6294
  /** Optional. Adapter size for tuning. */
6206
6295
  adapterSize?: AdapterSize;
6296
+ /** Optional. Batch size for tuning. This feature is only available for open source models. */
6297
+ batchSize?: string;
6207
6298
  /** Optional. Number of complete passes the model makes over the entire training dataset during training. */
6208
6299
  epochCount?: string;
6209
- /** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. */
6300
+ /** Optional. Learning rate for tuning. Mutually exclusive with `learning_rate_multiplier`. This feature is only available for open source models. */
6301
+ learningRate?: number;
6302
+ /** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. This feature is only available for 1P models. */
6210
6303
  learningRateMultiplier?: number;
6211
6304
  }
6212
6305
 
@@ -6278,6 +6371,8 @@ export declare interface SupervisedTuningSpec {
6278
6371
  hyperParameters?: SupervisedHyperParameters;
6279
6372
  /** Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
6280
6373
  trainingDatasetUri?: string;
6374
+ /** Tuning mode. */
6375
+ tuningMode?: TuningMode;
6281
6376
  /** Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
6282
6377
  validationDatasetUri?: string;
6283
6378
  }
@@ -6437,10 +6532,12 @@ export declare interface Tool {
6437
6532
  googleMaps?: GoogleMaps;
6438
6533
  /** Optional. Tool to support URL context retrieval. */
6439
6534
  urlContext?: UrlContext;
6535
+ /** Optional. Tool to support the model interacting directly with the
6536
+ computer. If enabled, it automatically populates computer-use specific
6537
+ Function Declarations. */
6538
+ computerUse?: ToolComputerUse;
6440
6539
  /** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. */
6441
6540
  codeExecution?: ToolCodeExecution;
6442
- /** Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations. */
6443
- computerUse?: ToolComputerUse;
6444
6541
  }
6445
6542
 
6446
6543
  /** Tool that executes code generated by the model, and automatically returns the result to the model. See also [ExecutableCode]and [CodeExecutionResult] which are input and output to this tool. */
@@ -6495,7 +6592,7 @@ export declare interface Transcription {
6495
6592
  }
6496
6593
 
6497
6594
  export declare interface TunedModel {
6498
- /** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}`. */
6595
+ /** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1 from the last version id in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}` */
6499
6596
  model?: string;
6500
6597
  /** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
6501
6598
  endpoint?: string;
@@ -6546,6 +6643,8 @@ export declare interface TuningDataset {
6546
6643
  export declare interface TuningDataStats {
6547
6644
  /** Output only. Statistics for distillation. */
6548
6645
  distillationDataStats?: DistillationDataStats;
6646
+ /** Output only. Statistics for preference optimization. */
6647
+ preferenceOptimizationDataStats?: PreferenceOptimizationDataStats;
6549
6648
  /** The SFT Tuning data stats. */
6550
6649
  supervisedTuningDataStats?: SupervisedTuningDataStats;
6551
6650
  }
@@ -6581,6 +6680,8 @@ export declare interface TuningJob {
6581
6680
  baseModel?: string;
6582
6681
  /** Output only. The tuned model resources associated with this TuningJob. */
6583
6682
  tunedModel?: TunedModel;
6683
+ /** The pre-tuned model for continuous tuning. */
6684
+ preTunedModel?: PreTunedModel;
6584
6685
  /** Tuning Spec for Supervised Fine Tuning. */
6585
6686
  supervisedTuningSpec?: SupervisedTuningSpec;
6586
6687
  /** Output only. The tuning data statistics associated with this TuningJob. */
@@ -6589,24 +6690,38 @@ export declare interface TuningJob {
6589
6690
  encryptionSpec?: EncryptionSpec;
6590
6691
  /** Tuning Spec for open sourced and third party Partner models. */
6591
6692
  partnerModelTuningSpec?: PartnerModelTuningSpec;
6592
- /** Tuning Spec for Distillation. */
6593
- distillationSpec?: DistillationSpec;
6693
+ /** Optional. The user-provided path to custom model weights. Set this field to tune a custom model. The path must be a Cloud Storage directory that contains the model weights in .safetensors format along with associated model metadata files. If this field is set, the base_model field must still be set to indicate which base model the custom model is derived from. This feature is only available for open source models. */
6694
+ customBaseModel?: string;
6594
6695
  /** Output only. The Experiment associated with this TuningJob. */
6595
6696
  experiment?: string;
6596
6697
  /** Optional. The labels with user-defined metadata to organize TuningJob and generated resources such as Model and Endpoint. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
6597
6698
  labels?: Record<string, string>;
6699
+ /** Optional. Cloud Storage path to the directory where tuning job outputs are written to. This field is only available and required for open source models. */
6700
+ outputUri?: string;
6598
6701
  /** Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. */
6599
6702
  pipelineJob?: string;
6600
- /** Output only. Reserved for future use. */
6601
- satisfiesPzi?: boolean;
6602
- /** Output only. Reserved for future use. */
6603
- satisfiesPzs?: boolean;
6604
6703
  /** The service account that the tuningJob workload runs as. If not specified, the Vertex AI Secure Fine-Tuned Service Agent in the project will be used. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-secure-fine-tuning-service-agent Users starting the pipeline must have the `iam.serviceAccounts.actAs` permission on this service account. */
6605
6704
  serviceAccount?: string;
6606
6705
  /** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
6607
6706
  tunedModelDisplayName?: string;
6608
6707
  }
6609
6708
 
6709
+ /** Tuning mode. */
6710
+ export declare enum TuningMode {
6711
+ /**
6712
+ * Tuning mode is unspecified.
6713
+ */
6714
+ TUNING_MODE_UNSPECIFIED = "TUNING_MODE_UNSPECIFIED",
6715
+ /**
6716
+ * Full fine-tuning mode.
6717
+ */
6718
+ TUNING_MODE_FULL = "TUNING_MODE_FULL",
6719
+ /**
6720
+ * PEFT adapter tuning mode.
6721
+ */
6722
+ TUNING_MODE_PEFT_ADAPTER = "TUNING_MODE_PEFT_ADAPTER"
6723
+ }
6724
+
6610
6725
  /** A long-running operation. */
6611
6726
  export declare interface TuningOperation {
6612
6727
  /** Used to retain the full HTTP response. */
@@ -6739,7 +6854,6 @@ declare namespace types {
6739
6854
  Mode,
6740
6855
  AuthType,
6741
6856
  ApiSpec,
6742
- Environment,
6743
6857
  UrlRetrievalStatus,
6744
6858
  FinishReason,
6745
6859
  HarmProbability,
@@ -6749,10 +6863,12 @@ declare namespace types {
6749
6863
  Modality,
6750
6864
  MediaResolution,
6751
6865
  JobState,
6866
+ TuningMode,
6752
6867
  AdapterSize,
6753
6868
  FeatureSelectionPreference,
6754
6869
  Behavior,
6755
6870
  DynamicRetrievalConfigMode,
6871
+ Environment,
6756
6872
  FunctionCallingConfigMode,
6757
6873
  SafetyFilterLevel,
6758
6874
  PersonGeneration,
@@ -6800,6 +6916,7 @@ declare namespace types {
6800
6916
  AuthConfig,
6801
6917
  GoogleMaps,
6802
6918
  UrlContext,
6919
+ ToolComputerUse,
6803
6920
  ApiAuthApiKeyConfig,
6804
6921
  ApiAuth,
6805
6922
  ExternalApiElasticSearchParams,
@@ -6817,7 +6934,6 @@ declare namespace types {
6817
6934
  VertexRagStore,
6818
6935
  Retrieval,
6819
6936
  ToolCodeExecution,
6820
- ToolComputerUse,
6821
6937
  Tool,
6822
6938
  FunctionCallingConfig,
6823
6939
  LatLng,
@@ -6842,6 +6958,10 @@ declare namespace types {
6842
6958
  CitationMetadata,
6843
6959
  UrlMetadata,
6844
6960
  UrlContextMetadata,
6961
+ GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution,
6962
+ GroundingChunkMapsPlaceAnswerSourcesReviewSnippet,
6963
+ GroundingChunkMapsPlaceAnswerSources,
6964
+ GroundingChunkMaps,
6845
6965
  RagChunkPageSpan,
6846
6966
  RagChunk,
6847
6967
  GroundingChunkRetrievedContext,
@@ -6920,20 +7040,22 @@ declare namespace types {
6920
7040
  TunedModelCheckpoint,
6921
7041
  TunedModel,
6922
7042
  GoogleRpcStatus,
7043
+ PreTunedModel,
6923
7044
  SupervisedHyperParameters,
6924
7045
  SupervisedTuningSpec,
6925
7046
  DatasetDistributionDistributionBucket,
6926
7047
  DatasetDistribution,
6927
7048
  DatasetStats,
6928
7049
  DistillationDataStats,
7050
+ GeminiPreferenceExampleCompletion,
7051
+ GeminiPreferenceExample,
7052
+ PreferenceOptimizationDataStats,
6929
7053
  SupervisedTuningDatasetDistributionDatasetBucket,
6930
7054
  SupervisedTuningDatasetDistribution,
6931
7055
  SupervisedTuningDataStats,
6932
7056
  TuningDataStats,
6933
7057
  EncryptionSpec,
6934
7058
  PartnerModelTuningSpec,
6935
- DistillationHyperParameters,
6936
- DistillationSpec,
6937
7059
  TuningJob,
6938
7060
  ListTuningJobsConfig,
6939
7061
  ListTuningJobsParameters,
@@ -6942,7 +7064,7 @@ declare namespace types {
6942
7064
  TuningDataset,
6943
7065
  TuningValidationDataset,
6944
7066
  CreateTuningJobConfig,
6945
- CreateTuningJobParameters,
7067
+ CreateTuningJobParametersPrivate,
6946
7068
  TuningOperation,
6947
7069
  CreateCachedContentConfig,
6948
7070
  CreateCachedContentParameters,
@@ -7034,8 +7156,8 @@ declare namespace types {
7034
7156
  ActivityStart,
7035
7157
  ActivityEnd,
7036
7158
  LiveClientRealtimeInput,
7037
- LiveSendRealtimeInputParameters,
7038
7159
  LiveClientToolResponse,
7160
+ LiveSendRealtimeInputParameters,
7039
7161
  LiveClientMessage,
7040
7162
  LiveConnectConfig,
7041
7163
  LiveConnectParameters,
@@ -7065,6 +7187,7 @@ declare namespace types {
7065
7187
  LiveConnectConstraints,
7066
7188
  CreateAuthTokenConfig,
7067
7189
  CreateAuthTokenParameters,
7190
+ CreateTuningJobParameters,
7068
7191
  BlobImageUnion,
7069
7192
  PartUnion,
7070
7193
  PartListUnion,