@google/genai 1.38.0 → 1.40.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 +163 -33
- package/dist/index.cjs +356 -125
- package/dist/index.mjs +356 -126
- package/dist/index.mjs.map +1 -1
- package/dist/node/index.cjs +399 -126
- package/dist/node/index.mjs +399 -127
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/node.d.ts +163 -33
- package/dist/tokenizer/node.cjs +4 -0
- package/dist/tokenizer/node.mjs +4 -0
- package/dist/tokenizer/node.mjs.map +1 -1
- package/dist/web/index.mjs +356 -126
- package/dist/web/index.mjs.map +1 -1
- package/dist/web/web.d.ts +163 -33
- package/package.json +1 -1
package/dist/web/web.d.ts
CHANGED
|
@@ -567,6 +567,10 @@ declare class BadRequestError extends APIError<400, Headers> {
|
|
|
567
567
|
}
|
|
568
568
|
|
|
569
569
|
declare interface BaseCreateAgentInteractionParams {
|
|
570
|
+
/**
|
|
571
|
+
* Path param: Which version of the API to use.
|
|
572
|
+
*/
|
|
573
|
+
api_version?: string;
|
|
570
574
|
/**
|
|
571
575
|
* Body param: The name of the `Agent` used for generating the interaction.
|
|
572
576
|
*/
|
|
@@ -575,10 +579,6 @@ declare interface BaseCreateAgentInteractionParams {
|
|
|
575
579
|
* Body param: The inputs for the interaction.
|
|
576
580
|
*/
|
|
577
581
|
input: string | Array<Content_2> | Array<Turn> | TextContent | ImageContent | AudioContent | DocumentContent | VideoContent | ThoughtContent | FunctionCallContent | FunctionResultContent | CodeExecutionCallContent | CodeExecutionResultContent | URLContextCallContent | URLContextResultContent | GoogleSearchCallContent | GoogleSearchResultContent | MCPServerToolCallContent | MCPServerToolResultContent | FileSearchCallContent | FileSearchResultContent;
|
|
578
|
-
/**
|
|
579
|
-
* Path param: Which version of the API to use.
|
|
580
|
-
*/
|
|
581
|
-
api_version?: string;
|
|
582
582
|
/**
|
|
583
583
|
* Body param: Configuration for the agent.
|
|
584
584
|
*/
|
|
@@ -623,6 +623,10 @@ declare interface BaseCreateAgentInteractionParams {
|
|
|
623
623
|
}
|
|
624
624
|
|
|
625
625
|
declare interface BaseCreateModelInteractionParams {
|
|
626
|
+
/**
|
|
627
|
+
* Path param: Which version of the API to use.
|
|
628
|
+
*/
|
|
629
|
+
api_version?: string;
|
|
626
630
|
/**
|
|
627
631
|
* Body param: The inputs for the interaction.
|
|
628
632
|
*/
|
|
@@ -631,10 +635,6 @@ declare interface BaseCreateModelInteractionParams {
|
|
|
631
635
|
* Body param: The name of the `Model` used for generating the interaction.
|
|
632
636
|
*/
|
|
633
637
|
model: Model_2;
|
|
634
|
-
/**
|
|
635
|
-
* Path param: Which version of the API to use.
|
|
636
|
-
*/
|
|
637
|
-
api_version?: string;
|
|
638
638
|
/**
|
|
639
639
|
* Body param: Input only. Whether to run the model interaction in the background.
|
|
640
640
|
*/
|
|
@@ -775,6 +775,7 @@ declare class BaseInteractions extends APIResource {
|
|
|
775
775
|
* @example
|
|
776
776
|
* ```ts
|
|
777
777
|
* const interaction = await client.interactions.create({
|
|
778
|
+
* api_version: 'api_version',
|
|
778
779
|
* input: 'string',
|
|
779
780
|
* model: 'gemini-2.5-pro',
|
|
780
781
|
* });
|
|
@@ -790,7 +791,9 @@ declare class BaseInteractions extends APIResource {
|
|
|
790
791
|
*
|
|
791
792
|
* @example
|
|
792
793
|
* ```ts
|
|
793
|
-
* const interaction = await client.interactions.delete('id'
|
|
794
|
+
* const interaction = await client.interactions.delete('id', {
|
|
795
|
+
* api_version: 'api_version',
|
|
796
|
+
* });
|
|
794
797
|
* ```
|
|
795
798
|
*/
|
|
796
799
|
delete(id: string, params?: InteractionDeleteParams | null | undefined, options?: RequestOptions): APIPromise<unknown>;
|
|
@@ -799,7 +802,9 @@ declare class BaseInteractions extends APIResource {
|
|
|
799
802
|
*
|
|
800
803
|
* @example
|
|
801
804
|
* ```ts
|
|
802
|
-
* const interaction = await client.interactions.cancel('id'
|
|
805
|
+
* const interaction = await client.interactions.cancel('id', {
|
|
806
|
+
* api_version: 'api_version',
|
|
807
|
+
* });
|
|
803
808
|
* ```
|
|
804
809
|
*/
|
|
805
810
|
cancel(id: string, params?: InteractionCancelParams | null | undefined, options?: RequestOptions): APIPromise<Interaction>;
|
|
@@ -808,7 +813,9 @@ declare class BaseInteractions extends APIResource {
|
|
|
808
813
|
*
|
|
809
814
|
* @example
|
|
810
815
|
* ```ts
|
|
811
|
-
* const interaction = await client.interactions.get('id'
|
|
816
|
+
* const interaction = await client.interactions.get('id', {
|
|
817
|
+
* api_version: 'api_version',
|
|
818
|
+
* });
|
|
812
819
|
* ```
|
|
813
820
|
*/
|
|
814
821
|
get(id: string, params?: InteractionGetParamsNonStreaming, options?: RequestOptions): APIPromise<Interaction>;
|
|
@@ -1824,7 +1831,7 @@ declare namespace ContentDelta {
|
|
|
1824
1831
|
}
|
|
1825
1832
|
namespace FunctionResultDelta {
|
|
1826
1833
|
interface Items {
|
|
1827
|
-
items?: Array<
|
|
1834
|
+
items?: Array<InteractionsAPI.TextContent | InteractionsAPI.ImageContent | unknown>;
|
|
1828
1835
|
}
|
|
1829
1836
|
}
|
|
1830
1837
|
interface CodeExecutionCallDelta {
|
|
@@ -2439,7 +2446,7 @@ export declare interface CreateTuningJobConfig {
|
|
|
2439
2446
|
be charged usage for any applicable operations.
|
|
2440
2447
|
*/
|
|
2441
2448
|
abortSignal?: AbortSignal;
|
|
2442
|
-
/** The method to use for tuning (SUPERVISED_FINE_TUNING or PREFERENCE_TUNING). If not set, the default method (SFT) will be used. */
|
|
2449
|
+
/** The method to use for tuning (SUPERVISED_FINE_TUNING or PREFERENCE_TUNING or DISTILLATION). If not set, the default method (SFT) will be used. */
|
|
2443
2450
|
method?: TuningMethod;
|
|
2444
2451
|
/** Validation dataset for tuning. The dataset must be formatted as a JSONL file. */
|
|
2445
2452
|
validationDataset?: TuningValidationDataset;
|
|
@@ -2449,7 +2456,7 @@ export declare interface CreateTuningJobConfig {
|
|
|
2449
2456
|
description?: string;
|
|
2450
2457
|
/** Number of complete passes the model makes over the entire training dataset during training. */
|
|
2451
2458
|
epochCount?: number;
|
|
2452
|
-
/** Multiplier for adjusting the default learning rate. */
|
|
2459
|
+
/** Multiplier for adjusting the default learning rate. 1P models only. Mutually exclusive with learning_rate. */
|
|
2453
2460
|
learningRateMultiplier?: number;
|
|
2454
2461
|
/** If set to true, disable intermediate checkpoints and only the last checkpoint will be exported. Otherwise, enable intermediate checkpoints. */
|
|
2455
2462
|
exportLastCheckpointOnly?: boolean;
|
|
@@ -2457,14 +2464,26 @@ export declare interface CreateTuningJobConfig {
|
|
|
2457
2464
|
preTunedModelCheckpointId?: string;
|
|
2458
2465
|
/** Adapter size for tuning. */
|
|
2459
2466
|
adapterSize?: AdapterSize;
|
|
2460
|
-
/**
|
|
2467
|
+
/** Tuning mode for SFT tuning. */
|
|
2468
|
+
tuningMode?: TuningMode;
|
|
2469
|
+
/** Custom base model for tuning. This is only supported for OSS models in Vertex. */
|
|
2470
|
+
customBaseModel?: string;
|
|
2471
|
+
/** The batch size hyperparameter for tuning. This is only supported for OSS models in Vertex. */
|
|
2461
2472
|
batchSize?: number;
|
|
2462
|
-
/** The learning rate
|
|
2473
|
+
/** The learning rate for tuning. OSS models only. Mutually exclusive with learning_rate_multiplier. */
|
|
2463
2474
|
learningRate?: number;
|
|
2464
2475
|
/** 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. */
|
|
2465
2476
|
labels?: Record<string, string>;
|
|
2466
2477
|
/** Weight for KL Divergence regularization, Preference Optimization tuning only. */
|
|
2467
2478
|
beta?: number;
|
|
2479
|
+
/** The base teacher model that is being distilled. Distillation only. */
|
|
2480
|
+
baseTeacherModel?: string;
|
|
2481
|
+
/** The resource name of the Tuned teacher model. Distillation only. */
|
|
2482
|
+
tunedTeacherModelSource?: string;
|
|
2483
|
+
/** Multiplier for adjusting the weight of the SFT loss. Distillation only. */
|
|
2484
|
+
sftLossWeightMultiplier?: number;
|
|
2485
|
+
/** The Google Cloud Storage location where the tuning job outputs are written. */
|
|
2486
|
+
outputUri?: string;
|
|
2468
2487
|
}
|
|
2469
2488
|
|
|
2470
2489
|
/** Fine-tuning job creation parameters - optional fields. */
|
|
@@ -2739,6 +2758,36 @@ export declare interface DistillationDataStats {
|
|
|
2739
2758
|
trainingDatasetStats?: DatasetStats;
|
|
2740
2759
|
}
|
|
2741
2760
|
|
|
2761
|
+
/** Hyperparameters for Distillation. This data type is not supported in Gemini API. */
|
|
2762
|
+
export declare interface DistillationHyperParameters {
|
|
2763
|
+
/** Optional. Adapter size for distillation. */
|
|
2764
|
+
adapterSize?: AdapterSize;
|
|
2765
|
+
/** Optional. Number of complete passes the model makes over the entire training dataset during training. */
|
|
2766
|
+
epochCount?: string;
|
|
2767
|
+
/** Optional. Multiplier for adjusting the default learning rate. */
|
|
2768
|
+
learningRateMultiplier?: number;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
/** Distillation tuning spec for tuning. */
|
|
2772
|
+
export declare interface DistillationSpec {
|
|
2773
|
+
/** The GCS URI of the prompt dataset to use during distillation. */
|
|
2774
|
+
promptDatasetUri?: string;
|
|
2775
|
+
/** 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). */
|
|
2776
|
+
baseTeacherModel?: string;
|
|
2777
|
+
/** Optional. Hyperparameters for Distillation. */
|
|
2778
|
+
hyperParameters?: DistillationHyperParameters;
|
|
2779
|
+
/** 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. */
|
|
2780
|
+
pipelineRootDirectory?: string;
|
|
2781
|
+
/** The student model that is being tuned, e.g., "google/gemma-2b-1.1-it". Deprecated. Use base_model instead. */
|
|
2782
|
+
studentModel?: string;
|
|
2783
|
+
/** Deprecated. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
|
|
2784
|
+
trainingDatasetUri?: string;
|
|
2785
|
+
/** The resource name of the Tuned teacher model. Format: `projects/{project}/locations/{location}/models/{model}`. */
|
|
2786
|
+
tunedTeacherModelSource?: string;
|
|
2787
|
+
/** Optional. Cloud Storage path to file containing validation dataset for tuning. The dataset must be formatted as a JSONL file. */
|
|
2788
|
+
validationDatasetUri?: string;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2742
2791
|
/** A Document is a collection of Chunks. */
|
|
2743
2792
|
declare interface Document_2 {
|
|
2744
2793
|
/** The resource name of the Document.
|
|
@@ -3372,6 +3421,12 @@ export declare class Files extends BaseModule {
|
|
|
3372
3421
|
* ```
|
|
3373
3422
|
*/
|
|
3374
3423
|
download(params: types.DownloadFileParameters): Promise<void>;
|
|
3424
|
+
/**
|
|
3425
|
+
* Registers Google Cloud Storage files for use with the API.
|
|
3426
|
+
* This method is only available in Node.js environments.
|
|
3427
|
+
*/
|
|
3428
|
+
registerFiles(params: types.RegisterFilesParameters): Promise<types.RegisterFilesResponse>;
|
|
3429
|
+
protected _registerFiles(params: types.InternalRegisterFilesParameters): Promise<types.RegisterFilesResponse>;
|
|
3375
3430
|
private listInternal;
|
|
3376
3431
|
private createInternal;
|
|
3377
3432
|
/**
|
|
@@ -3404,6 +3459,7 @@ export declare class Files extends BaseModule {
|
|
|
3404
3459
|
* ```
|
|
3405
3460
|
*/
|
|
3406
3461
|
delete(params: types.DeleteFileParameters): Promise<types.DeleteFileResponse>;
|
|
3462
|
+
private registerFilesInternal;
|
|
3407
3463
|
}
|
|
3408
3464
|
|
|
3409
3465
|
/** Tool to retrieve knowledge from the File Search Stores. */
|
|
@@ -3906,7 +3962,7 @@ declare interface FunctionResultContent {
|
|
|
3906
3962
|
|
|
3907
3963
|
declare namespace FunctionResultContent {
|
|
3908
3964
|
interface Items {
|
|
3909
|
-
items?: Array<
|
|
3965
|
+
items?: Array<InteractionsAPI.TextContent | InteractionsAPI.ImageContent | unknown>;
|
|
3910
3966
|
}
|
|
3911
3967
|
}
|
|
3912
3968
|
|
|
@@ -5635,6 +5691,8 @@ export declare class InlinedResponse {
|
|
|
5635
5691
|
/** The response to the request.
|
|
5636
5692
|
*/
|
|
5637
5693
|
response?: GenerateContentResponse;
|
|
5694
|
+
/** The metadata to be associated with the request. */
|
|
5695
|
+
metadata?: Record<string, string>;
|
|
5638
5696
|
/** The error encountered while processing the request.
|
|
5639
5697
|
*/
|
|
5640
5698
|
error?: JobError;
|
|
@@ -5695,6 +5753,18 @@ declare interface InteractionCancelParams {
|
|
|
5695
5753
|
api_version?: string;
|
|
5696
5754
|
}
|
|
5697
5755
|
|
|
5756
|
+
declare interface InteractionCompleteEvent {
|
|
5757
|
+
/**
|
|
5758
|
+
* The event_id token to be used to resume the interaction stream, from this event.
|
|
5759
|
+
*/
|
|
5760
|
+
event_id?: string;
|
|
5761
|
+
event_type?: 'interaction.complete';
|
|
5762
|
+
/**
|
|
5763
|
+
* The Interaction resource.
|
|
5764
|
+
*/
|
|
5765
|
+
interaction?: Interaction;
|
|
5766
|
+
}
|
|
5767
|
+
|
|
5698
5768
|
declare type InteractionCreateParams = CreateModelInteractionParamsNonStreaming | CreateModelInteractionParamsStreaming | CreateAgentInteractionParamsNonStreaming | CreateAgentInteractionParamsStreaming;
|
|
5699
5769
|
|
|
5700
5770
|
declare interface InteractionDeleteParams {
|
|
@@ -5706,18 +5776,6 @@ declare interface InteractionDeleteParams {
|
|
|
5706
5776
|
|
|
5707
5777
|
declare type InteractionDeleteResponse = unknown;
|
|
5708
5778
|
|
|
5709
|
-
declare interface InteractionEvent {
|
|
5710
|
-
/**
|
|
5711
|
-
* The event_id token to be used to resume the interaction stream, from this event.
|
|
5712
|
-
*/
|
|
5713
|
-
event_id?: string;
|
|
5714
|
-
event_type?: 'interaction.start' | 'interaction.complete';
|
|
5715
|
-
/**
|
|
5716
|
-
* The Interaction resource.
|
|
5717
|
-
*/
|
|
5718
|
-
interaction?: Interaction;
|
|
5719
|
-
}
|
|
5720
|
-
|
|
5721
5779
|
declare type InteractionGetParams = InteractionGetParamsNonStreaming | InteractionGetParamsStreaming;
|
|
5722
5780
|
|
|
5723
5781
|
declare namespace InteractionGetParams {
|
|
@@ -5730,6 +5788,10 @@ declare interface InteractionGetParamsBase {
|
|
|
5730
5788
|
* Path param: Which version of the API to use.
|
|
5731
5789
|
*/
|
|
5732
5790
|
api_version?: string;
|
|
5791
|
+
/**
|
|
5792
|
+
* Query param: If set to true, includes the input in the response.
|
|
5793
|
+
*/
|
|
5794
|
+
include_input?: boolean;
|
|
5733
5795
|
/**
|
|
5734
5796
|
* Query param: Optional. If set, resumes the interaction stream from the next chunk after the event marked by the event id. Can only be used if `stream` is true.
|
|
5735
5797
|
*/
|
|
@@ -5758,7 +5820,7 @@ export declare class Interactions extends BaseInteractions {
|
|
|
5758
5820
|
}
|
|
5759
5821
|
|
|
5760
5822
|
export declare namespace Interactions {
|
|
5761
|
-
export { type AllowedTools as AllowedTools, type Annotation as Annotation, type AudioContent as AudioContent, type AudioMimeType as AudioMimeType, type CodeExecutionCallArguments as CodeExecutionCallArguments, type CodeExecutionCallContent as CodeExecutionCallContent, type CodeExecutionResultContent as CodeExecutionResultContent, type Content_2 as Content, type ContentDelta as ContentDelta, type ContentStart as ContentStart, type ContentStop as ContentStop, type DeepResearchAgentConfig as DeepResearchAgentConfig, type DocumentContent as DocumentContent, type DocumentMimeType as DocumentMimeType, type DynamicAgentConfig as DynamicAgentConfig, type ErrorEvent_2 as ErrorEvent, type FileSearchCallContent as FileSearchCallContent, type FileSearchResultContent as FileSearchResultContent, type Function_2 as Function, type FunctionCallContent as FunctionCallContent, type FunctionResultContent as FunctionResultContent, type GenerationConfig_2 as GenerationConfig, type GoogleSearchCallArguments as GoogleSearchCallArguments, type GoogleSearchCallContent as GoogleSearchCallContent, type GoogleSearchResult as GoogleSearchResult, type GoogleSearchResultContent as GoogleSearchResultContent, type ImageConfig_2 as ImageConfig, type ImageContent as ImageContent, type ImageMimeType as ImageMimeType, type Interaction as Interaction, type
|
|
5823
|
+
export { type AllowedTools as AllowedTools, type Annotation as Annotation, type AudioContent as AudioContent, type AudioMimeType as AudioMimeType, type CodeExecutionCallArguments as CodeExecutionCallArguments, type CodeExecutionCallContent as CodeExecutionCallContent, type CodeExecutionResultContent as CodeExecutionResultContent, type Content_2 as Content, type ContentDelta as ContentDelta, type ContentStart as ContentStart, type ContentStop as ContentStop, type DeepResearchAgentConfig as DeepResearchAgentConfig, type DocumentContent as DocumentContent, type DocumentMimeType as DocumentMimeType, type DynamicAgentConfig as DynamicAgentConfig, type ErrorEvent_2 as ErrorEvent, type FileSearchCallContent as FileSearchCallContent, type FileSearchResultContent as FileSearchResultContent, type Function_2 as Function, type FunctionCallContent as FunctionCallContent, type FunctionResultContent as FunctionResultContent, type GenerationConfig_2 as GenerationConfig, type GoogleSearchCallArguments as GoogleSearchCallArguments, type GoogleSearchCallContent as GoogleSearchCallContent, type GoogleSearchResult as GoogleSearchResult, type GoogleSearchResultContent as GoogleSearchResultContent, type ImageConfig_2 as ImageConfig, type ImageContent as ImageContent, type ImageMimeType as ImageMimeType, type Interaction as Interaction, type InteractionCompleteEvent as InteractionCompleteEvent, type InteractionSSEEvent as InteractionSSEEvent, type InteractionStartEvent as InteractionStartEvent, type InteractionStatusUpdate as InteractionStatusUpdate, type MCPServerToolCallContent as MCPServerToolCallContent, type MCPServerToolResultContent as MCPServerToolResultContent, type Model_2 as Model, type SpeechConfig_2 as SpeechConfig, type TextContent as TextContent, type ThinkingLevel_2 as ThinkingLevel, type ThoughtContent as ThoughtContent, type Tool_2 as Tool, type ToolChoice as ToolChoice, type ToolChoiceConfig as ToolChoiceConfig, type ToolChoiceType as ToolChoiceType, type Turn as Turn, type URLContextCallArguments as URLContextCallArguments, type URLContextCallContent as URLContextCallContent, type URLContextResult as URLContextResult, type URLContextResultContent as URLContextResultContent, type Usage as Usage, type VideoContent as VideoContent, type VideoMimeType as VideoMimeType, type InteractionDeleteResponse as InteractionDeleteResponse, type InteractionCreateParams as InteractionCreateParams, type CreateModelInteractionParamsNonStreaming as CreateModelInteractionParamsNonStreaming, type CreateModelInteractionParamsStreaming as CreateModelInteractionParamsStreaming, type CreateAgentInteractionParamsNonStreaming as CreateAgentInteractionParamsNonStreaming, type CreateAgentInteractionParamsStreaming as CreateAgentInteractionParamsStreaming, type InteractionDeleteParams as InteractionDeleteParams, type InteractionCancelParams as InteractionCancelParams, type InteractionGetParams as InteractionGetParams, type InteractionGetParamsNonStreaming as InteractionGetParamsNonStreaming, type InteractionGetParamsStreaming as InteractionGetParamsStreaming, };
|
|
5762
5824
|
}
|
|
5763
5825
|
|
|
5764
5826
|
declare namespace InteractionsAPI {
|
|
@@ -5795,8 +5857,9 @@ declare namespace InteractionsAPI {
|
|
|
5795
5857
|
ImageContent,
|
|
5796
5858
|
ImageMimeType,
|
|
5797
5859
|
Interaction,
|
|
5798
|
-
|
|
5860
|
+
InteractionCompleteEvent,
|
|
5799
5861
|
InteractionSSEEvent,
|
|
5862
|
+
InteractionStartEvent,
|
|
5800
5863
|
InteractionStatusUpdate,
|
|
5801
5864
|
MCPServerToolCallContent,
|
|
5802
5865
|
MCPServerToolResultContent,
|
|
@@ -5834,7 +5897,19 @@ declare namespace InteractionsAPI {
|
|
|
5834
5897
|
}
|
|
5835
5898
|
}
|
|
5836
5899
|
|
|
5837
|
-
declare type InteractionSSEEvent =
|
|
5900
|
+
declare type InteractionSSEEvent = InteractionStartEvent | InteractionCompleteEvent | InteractionStatusUpdate | ContentStart | ContentDelta | ContentStop | ErrorEvent_2;
|
|
5901
|
+
|
|
5902
|
+
declare interface InteractionStartEvent {
|
|
5903
|
+
/**
|
|
5904
|
+
* The event_id token to be used to resume the interaction stream, from this event.
|
|
5905
|
+
*/
|
|
5906
|
+
event_id?: string;
|
|
5907
|
+
event_type?: 'interaction.start';
|
|
5908
|
+
/**
|
|
5909
|
+
* The Interaction resource.
|
|
5910
|
+
*/
|
|
5911
|
+
interaction?: Interaction;
|
|
5912
|
+
}
|
|
5838
5913
|
|
|
5839
5914
|
declare interface InteractionStatusUpdate {
|
|
5840
5915
|
/**
|
|
@@ -5846,6 +5921,14 @@ declare interface InteractionStatusUpdate {
|
|
|
5846
5921
|
status?: 'in_progress' | 'requires_action' | 'completed' | 'failed' | 'cancelled';
|
|
5847
5922
|
}
|
|
5848
5923
|
|
|
5924
|
+
/** Parameters for the private _Register method. */
|
|
5925
|
+
export declare interface InternalRegisterFilesParameters {
|
|
5926
|
+
/** The Google Cloud Storage URIs to register. Example: `gs://bucket/object`. */
|
|
5927
|
+
uris: string[];
|
|
5928
|
+
/** Used to override the default configuration. */
|
|
5929
|
+
config?: RegisterFilesConfig;
|
|
5930
|
+
}
|
|
5931
|
+
|
|
5849
5932
|
declare class InternalServerError extends APIError<number, Headers> {
|
|
5850
5933
|
}
|
|
5851
5934
|
|
|
@@ -8304,6 +8387,41 @@ declare interface ReferenceImageAPIInternal {
|
|
|
8304
8387
|
subjectImageConfig?: types.SubjectReferenceConfig;
|
|
8305
8388
|
}
|
|
8306
8389
|
|
|
8390
|
+
/** Used to override the default configuration. */
|
|
8391
|
+
export declare interface RegisterFilesConfig {
|
|
8392
|
+
/** Used to override HTTP request options. */
|
|
8393
|
+
httpOptions?: HttpOptions;
|
|
8394
|
+
/** Abort signal which can be used to cancel the request.
|
|
8395
|
+
|
|
8396
|
+
NOTE: AbortSignal is a client-only operation. Using it to cancel an
|
|
8397
|
+
operation will not cancel the request in the service. You will still
|
|
8398
|
+
be charged usage for any applicable operations.
|
|
8399
|
+
*/
|
|
8400
|
+
abortSignal?: AbortSignal;
|
|
8401
|
+
}
|
|
8402
|
+
|
|
8403
|
+
/** Generates the parameters for the private registerFiles method. */
|
|
8404
|
+
export declare interface RegisterFilesParameters {
|
|
8405
|
+
/**
|
|
8406
|
+
* The authentication object.
|
|
8407
|
+
*/
|
|
8408
|
+
auth?: any;
|
|
8409
|
+
/**
|
|
8410
|
+
* The Google Cloud Storage URIs to register. Example: `gs://bucket/object`.
|
|
8411
|
+
*/
|
|
8412
|
+
uris: string[];
|
|
8413
|
+
/** Used to override the default configuration. */
|
|
8414
|
+
config?: RegisterFilesConfig;
|
|
8415
|
+
}
|
|
8416
|
+
|
|
8417
|
+
/** Response for the _register file method. */
|
|
8418
|
+
export declare class RegisterFilesResponse {
|
|
8419
|
+
/** Used to retain the full HTTP response. */
|
|
8420
|
+
sdkHttpResponse?: HttpResponse;
|
|
8421
|
+
/** The registered files. */
|
|
8422
|
+
files?: File_2[];
|
|
8423
|
+
}
|
|
8424
|
+
|
|
8307
8425
|
/** Represents a recorded session. */
|
|
8308
8426
|
export declare interface ReplayFile {
|
|
8309
8427
|
replayId?: string;
|
|
@@ -9611,6 +9729,8 @@ export declare interface TuningJob {
|
|
|
9611
9729
|
supervisedTuningSpec?: SupervisedTuningSpec;
|
|
9612
9730
|
/** Tuning Spec for Preference Optimization. */
|
|
9613
9731
|
preferenceOptimizationSpec?: PreferenceOptimizationSpec;
|
|
9732
|
+
/** Tuning Spec for Distillation. */
|
|
9733
|
+
distillationSpec?: DistillationSpec;
|
|
9614
9734
|
/** Output only. The tuning data statistics associated with this TuningJob. */
|
|
9615
9735
|
tuningDataStats?: TuningDataStats;
|
|
9616
9736
|
/** Customer-managed encryption key options for a TuningJob. If this is set, then all resources created by the TuningJob will be encrypted with the provided encryption key. */
|
|
@@ -9644,7 +9764,11 @@ export declare enum TuningMethod {
|
|
|
9644
9764
|
/**
|
|
9645
9765
|
* Preference optimization tuning.
|
|
9646
9766
|
*/
|
|
9647
|
-
PREFERENCE_TUNING = "PREFERENCE_TUNING"
|
|
9767
|
+
PREFERENCE_TUNING = "PREFERENCE_TUNING",
|
|
9768
|
+
/**
|
|
9769
|
+
* Distillation tuning.
|
|
9770
|
+
*/
|
|
9771
|
+
DISTILLATION = "DISTILLATION"
|
|
9648
9772
|
}
|
|
9649
9773
|
|
|
9650
9774
|
/** Tuning mode. This enum is not supported in Gemini API. */
|
|
@@ -10089,6 +10213,8 @@ declare namespace types {
|
|
|
10089
10213
|
SupervisedTuningSpec,
|
|
10090
10214
|
PreferenceOptimizationHyperParameters,
|
|
10091
10215
|
PreferenceOptimizationSpec,
|
|
10216
|
+
DistillationHyperParameters,
|
|
10217
|
+
DistillationSpec,
|
|
10092
10218
|
GoogleRpcStatus,
|
|
10093
10219
|
PreTunedModel,
|
|
10094
10220
|
DatasetDistributionDistributionBucket,
|
|
@@ -10175,6 +10301,9 @@ declare namespace types {
|
|
|
10175
10301
|
DeleteFileConfig,
|
|
10176
10302
|
DeleteFileParameters,
|
|
10177
10303
|
DeleteFileResponse,
|
|
10304
|
+
RegisterFilesConfig,
|
|
10305
|
+
InternalRegisterFilesParameters,
|
|
10306
|
+
RegisterFilesResponse,
|
|
10178
10307
|
InlinedRequest,
|
|
10179
10308
|
BatchJobSource,
|
|
10180
10309
|
JobError,
|
|
@@ -10234,6 +10363,7 @@ declare namespace types {
|
|
|
10234
10363
|
LiveServerMessage,
|
|
10235
10364
|
OperationFromAPIResponseParameters,
|
|
10236
10365
|
GenerationConfigThinkingConfig,
|
|
10366
|
+
RegisterFilesParameters,
|
|
10237
10367
|
AutomaticActivityDetection,
|
|
10238
10368
|
RealtimeInputConfig,
|
|
10239
10369
|
SessionResumptionConfig,
|