diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.AuthTokensCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.AuthTokensCreate.g.cs index 1526656e..c679e91f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.AuthTokensCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.AuthTokensCreate.g.cs @@ -425,6 +425,15 @@ partial void ProcessAuthTokensCreateResponseContent( /// /// Creates a token that can be used to constrain the behavior of a BidiGenerateContent session. /// + /// + /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. + /// + /// + /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// + /// + /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. + /// /// /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. /// @@ -434,36 +443,27 @@ partial void ProcessAuthTokensCreateResponseContent( /// /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. /// - /// - /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. - /// - /// - /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. - /// - /// - /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task AuthTokensCreateAsync( + string? newSessionExpireTime = default, + string? fieldMask = default, + int? uses = default, global::Google.Gemini.BidiGenerateContentSetup? bidiGenerateContentSetup = default, string? expireTime = default, string? interactionId = default, - string? newSessionExpireTime = default, - int? uses = default, - string? fieldMask = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.AuthToken { + NewSessionExpireTime = newSessionExpireTime, + FieldMask = fieldMask, + Uses = uses, BidiGenerateContentSetup = bidiGenerateContentSetup, ExpireTime = expireTime, InteractionId = interactionId, - NewSessionExpireTime = newSessionExpireTime, - Uses = uses, - FieldMask = fieldMask, }; return await AuthTokensCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateEmbedContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateEmbedContentBatch.g.cs index 63c6b9ee..41648cda 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateEmbedContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateEmbedContentBatch.g.cs @@ -448,47 +448,47 @@ partial void ProcessBatchesUpdateEmbedContentBatchResponseContent( /// /// /// - /// - /// Configures the input to the batch request. - /// /// /// Required. The user-defined name of this batch. /// - /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + /// + /// Configures the input to the batch request. /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Stats about the batch. + /// + /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. /// /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// + /// + /// Stats about the batch. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task BatchesUpdateEmbedContentBatchAsync( string batchesId, string? updateMask = default, - global::Google.Gemini.InputEmbedContentConfig? inputConfig = default, string? displayName = default, - string? priority = default, + global::Google.Gemini.InputEmbedContentConfig? inputConfig = default, string? model = default, - global::Google.Gemini.EmbedContentBatchStats? batchStats = default, + string? priority = default, global::Google.Gemini.EmbedContentBatchOutput? output = default, + global::Google.Gemini.EmbedContentBatchStats? batchStats = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.EmbedContentBatch { - InputConfig = inputConfig, DisplayName = displayName, - Priority = priority, + InputConfig = inputConfig, Model = model, - BatchStats = batchStats, + Priority = priority, Output = output, + BatchStats = batchStats, }; return await BatchesUpdateEmbedContentBatchAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateGenerateContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateGenerateContentBatch.g.cs index d3012ef7..698156a8 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateGenerateContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.BatchesUpdateGenerateContentBatch.g.cs @@ -448,6 +448,9 @@ partial void ProcessBatchesUpdateGenerateContentBatchResponseContent( /// /// /// + /// + /// Stats about the batch. + /// /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// @@ -457,9 +460,6 @@ partial void ProcessBatchesUpdateGenerateContentBatchResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Stats about the batch. - /// /// /// Configures the input to the batch request. /// @@ -472,10 +472,10 @@ partial void ProcessBatchesUpdateGenerateContentBatchResponseContent( public async global::System.Threading.Tasks.Task BatchesUpdateGenerateContentBatchAsync( string batchesId, string? updateMask = default, + global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.GenerateContentBatchOutput? output = default, string? priority = default, string? model = default, - global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.InputConfig? inputConfig = default, string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, @@ -483,10 +483,10 @@ partial void ProcessBatchesUpdateGenerateContentBatchResponseContent( { var __request = new global::Google.Gemini.GenerateContentBatch { + BatchStats = batchStats, Output = output, Priority = priority, Model = model, - BatchStats = batchStats, InputConfig = inputConfig, DisplayName = displayName, }; diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsCreate.g.cs index e2b0b5ff..3a33f5ce 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsCreate.g.cs @@ -425,60 +425,60 @@ partial void ProcessCachedContentsCreateResponseContent( /// /// Creates CachedContent resource. /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. - /// - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// - /// - /// Metadata on the usage of the cached content. + /// + /// Input only. New TTL for this resource, input only. /// /// /// Optional. Input only. Immutable. The content to cache. /// - /// - /// Input only. New TTL for this resource, input only. + /// + /// Metadata on the usage of the cached content. /// /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CachedContentsCreateAsync( - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, - global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, - global::System.Collections.Generic.IList? contents = default, string? ttl = default, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, string? expireTime = default, + global::Google.Gemini.Content? systemInstruction = default, + string? displayName = default, + string? model = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.CachedContent { - SystemInstruction = systemInstruction, - Model = model, - UsageMetadata = usageMetadata, - Contents = contents, Ttl = ttl, + Contents = contents, + UsageMetadata = usageMetadata, ExpireTime = expireTime, + SystemInstruction = systemInstruction, + DisplayName = displayName, + Model = model, Tools = tools, ToolConfig = toolConfig, - DisplayName = displayName, }; return await CachedContentsCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsPatch.g.cs index 504c2fb9..06a41402 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CachedContentsPatch.g.cs @@ -448,62 +448,62 @@ partial void ProcessCachedContentsPatchResponseContent( /// /// /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. - /// - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// - /// - /// Metadata on the usage of the cached content. + /// + /// Input only. New TTL for this resource, input only. /// /// /// Optional. Input only. Immutable. The content to cache. /// - /// - /// Input only. New TTL for this resource, input only. + /// + /// Metadata on the usage of the cached content. /// /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CachedContentsPatchAsync( string cachedContentsId, string? updateMask = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, - global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, - global::System.Collections.Generic.IList? contents = default, string? ttl = default, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, string? expireTime = default, + global::Google.Gemini.Content? systemInstruction = default, + string? displayName = default, + string? model = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.CachedContent { - SystemInstruction = systemInstruction, - Model = model, - UsageMetadata = usageMetadata, - Contents = contents, Ttl = ttl, + Contents = contents, + UsageMetadata = usageMetadata, ExpireTime = expireTime, + SystemInstruction = systemInstruction, + DisplayName = displayName, + Model = model, Tools = tools, ToolConfig = toolConfig, - DisplayName = displayName, }; return await CachedContentsPatchAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsCreate.g.cs index 6961b234..0167d56a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsCreate.g.cs @@ -435,31 +435,31 @@ partial void ProcessCorporaPermissionsCreateResponseContent( /// Create a permission to a specific resource. /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task CorporaPermissionsCreateAsync( string corporaId, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { + EmailAddress = emailAddress, Role = role, GranteeType = granteeType, - EmailAddress = emailAddress, }; return await CorporaPermissionsCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsPatch.g.cs index a64bbbc9..5b7d23da 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.CorporaPermissionsPatch.g.cs @@ -458,15 +458,15 @@ partial void ProcessCorporaPermissionsPatchResponseContent( /// /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -474,17 +474,17 @@ partial void ProcessCorporaPermissionsPatchResponseContent( string permissionsId, string corporaId, string? updateMask = default, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { + EmailAddress = emailAddress, Role = role, GranteeType = granteeType, - EmailAddress = emailAddress, }; return await CorporaPermissionsPatchAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicGenerateContent.g.cs index 19b221fc..907c00d0 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessDynamicGenerateContentResponseContent( /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task DynamicGenerateContentAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await DynamicGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs index d49c6b6b..ac8fecd7 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessDynamicStreamGenerateContentResponseContent( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task DynamicStreamGenerateContentAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await DynamicStreamGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContentAsStream.g.cs index 99bcb9a2..5c27d83a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.DynamicStreamGenerateContentAsStream.g.cs @@ -376,66 +376,66 @@ partial void ProcessDynamicStreamGenerateContentAsStreamResponse( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Collections.Generic.IAsyncEnumerable DynamicStreamGenerateContentAsStreamAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, [global::System.Runtime.CompilerServices.EnumeratorCancellation] global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; var __enumerable = DynamicStreamGenerateContentAsStreamAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.EnvironmentsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.EnvironmentsCreate.g.cs index ae08d78e..6bc39ba1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.EnvironmentsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.EnvironmentsCreate.g.cs @@ -425,30 +425,30 @@ partial void ProcessEnvironmentsCreateResponseContent( /// /// Creates an environment. /// + /// + /// Network egress configuration for the environment. + /// /// /// Sources to be mounted into the environment. /// /// /// Network egress mode. /// - /// - /// Network egress configuration for the environment. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task EnvironmentsCreateAsync( + global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist = default, global::System.Collections.Generic.IList? sources = default, global::Google.Gemini.CreateEnvironmentRequestNetworkMode? networkMode = default, - global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.CreateEnvironmentRequest { + NetworkAllowlist = networkAllowlist, Sources = sources, NetworkMode = networkMode, - NetworkAllowlist = networkAllowlist, }; return await EnvironmentsCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.FileSearchStoresImportFile.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.FileSearchStoresImportFile.g.cs index 6eebaf77..ecbb3a1f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.FileSearchStoresImportFile.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.FileSearchStoresImportFile.g.cs @@ -435,12 +435,12 @@ partial void ProcessFileSearchStoresImportFileResponseContent( /// Imports a `File` from File Service to a `FileSearchStore`. /// /// - /// - /// Required. The name of the `File` to import. Example: `files/abc-123` - /// /// /// Custom metadata to be associated with the file. /// + /// + /// Required. The name of the `File` to import. Example: `files/abc-123` + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -449,16 +449,16 @@ partial void ProcessFileSearchStoresImportFileResponseContent( /// public async global::System.Threading.Tasks.Task FileSearchStoresImportFileAsync( string fileSearchStoresId, - string? fileName = default, global::System.Collections.Generic.IList? customMetadata = default, + string? fileName = default, global::Google.Gemini.ChunkingConfig? chunkingConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.ImportFileRequest { - FileName = fileName, CustomMetadata = customMetadata, + FileName = fileName, ChunkingConfig = chunkingConfig, }; diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.MediaUploadToFileSearchStore.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.MediaUploadToFileSearchStore.g.cs index dbe30ef1..6f4340d9 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.MediaUploadToFileSearchStore.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.MediaUploadToFileSearchStore.g.cs @@ -438,12 +438,12 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( /// /// Optional. Display name of the created document. /// - /// - /// Custom metadata to be associated with the data. - /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// + /// + /// Custom metadata to be associated with the data. + /// /// /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. /// @@ -453,8 +453,8 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( public async global::System.Threading.Tasks.Task MediaUploadToFileSearchStoreAsync( string fileSearchStoresId, string? displayName = default, - global::System.Collections.Generic.IList? customMetadata = default, global::Google.Gemini.ChunkingConfig? chunkingConfig = default, + global::System.Collections.Generic.IList? customMetadata = default, string? mimeType = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -462,8 +462,8 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( var __request = new global::Google.Gemini.UploadToFileSearchStoreRequest { DisplayName = displayName, - CustomMetadata = customMetadata, ChunkingConfig = chunkingConfig, + CustomMetadata = customMetadata, MimeType = mimeType, }; diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsEmbedContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsEmbedContent.g.cs index c4e0cb91..0c05e1f5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsEmbedContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsEmbedContent.g.cs @@ -437,31 +437,31 @@ partial void ProcessModelsEmbedContentResponseContent( /// Generates a text embedding vector from the input `Content` using the specified [Gemini Embedding model](https://ai.google.dev/gemini-api/docs/models/gemini#text-embedding). /// /// + /// + /// Configurations for the EmbedContent request. + /// /// /// Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}` /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - /// - /// Configurations for the EmbedContent request. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task ModelsEmbedContentAsync( string modelsId, + global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, string? model = default, global::Google.Gemini.Content? content = default, - global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.EmbedContentRequest { + EmbedContentConfig = embedContentConfig, Model = model, Content = content, - EmbedContentConfig = embedContentConfig, }; return await ModelsEmbedContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsGenerateContent.g.cs index fea47b2d..90a003d4 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessModelsGenerateContentResponseContent( /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task ModelsGenerateContentAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await ModelsGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContent.g.cs index 3a83519d..6aff0b90 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessModelsStreamGenerateContentResponseContent( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task ModelsStreamGenerateContentAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await ModelsStreamGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContentAsStream.g.cs index 25d98f79..f3326be4 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.ModelsStreamGenerateContentAsStream.g.cs @@ -376,66 +376,66 @@ partial void ProcessModelsStreamGenerateContentAsStreamResponse( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Collections.Generic.IAsyncEnumerable ModelsStreamGenerateContentAsStreamAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, [global::System.Runtime.CompilerServices.EnumeratorCancellation] global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; var __enumerable = ModelsStreamGenerateContentAsStreamAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsCreate.g.cs index 15fae04c..a2572326 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsCreate.g.cs @@ -444,27 +444,27 @@ partial void ProcessTunedModelsCreateResponseContent( /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Optional. List of project numbers that have read access to the tuned model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Optional. A short description of this model. - /// /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + /// + /// Optional. A short description of this model. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -472,13 +472,13 @@ partial void ProcessTunedModelsCreateResponseContent( string? tunedModelId = default, string? baseModel = default, int? topK = default, - global::System.Collections.Generic.IList? readerProjectNumbers = default, - float? topP = default, global::Google.Gemini.TuningTask? tuningTask = default, + float? topP = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - string? description = default, float? temperature = default, string? displayName = default, + global::System.Collections.Generic.IList? readerProjectNumbers = default, + string? description = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { @@ -486,13 +486,13 @@ partial void ProcessTunedModelsCreateResponseContent( { BaseModel = baseModel, TopK = topK, - ReaderProjectNumbers = readerProjectNumbers, - TopP = topP, TuningTask = tuningTask, + TopP = topP, TunedModelSource = tunedModelSource, - Description = description, Temperature = temperature, DisplayName = displayName, + ReaderProjectNumbers = readerProjectNumbers, + Description = description, }; return await TunedModelsCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsGenerateContent.g.cs index 3a62fd76..36c1ef89 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessTunedModelsGenerateContentResponseContent( /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task TunedModelsGenerateContentAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await TunedModelsGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPatch.g.cs index 427d9f20..853519a1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPatch.g.cs @@ -454,27 +454,27 @@ partial void ProcessTunedModelsPatchResponseContent( /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Optional. List of project numbers that have read access to the tuned model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Optional. A short description of this model. - /// /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + /// + /// Optional. A short description of this model. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -483,13 +483,13 @@ partial void ProcessTunedModelsPatchResponseContent( string? updateMask = default, string? baseModel = default, int? topK = default, - global::System.Collections.Generic.IList? readerProjectNumbers = default, - float? topP = default, global::Google.Gemini.TuningTask? tuningTask = default, + float? topP = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - string? description = default, float? temperature = default, string? displayName = default, + global::System.Collections.Generic.IList? readerProjectNumbers = default, + string? description = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { @@ -497,13 +497,13 @@ partial void ProcessTunedModelsPatchResponseContent( { BaseModel = baseModel, TopK = topK, - ReaderProjectNumbers = readerProjectNumbers, - TopP = topP, TuningTask = tuningTask, + TopP = topP, TunedModelSource = tunedModelSource, - Description = description, Temperature = temperature, DisplayName = displayName, + ReaderProjectNumbers = readerProjectNumbers, + Description = description, }; return await TunedModelsPatchAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsCreate.g.cs index 2f74e3cc..58eaf040 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsCreate.g.cs @@ -435,31 +435,31 @@ partial void ProcessTunedModelsPermissionsCreateResponseContent( /// Create a permission to a specific resource. /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task TunedModelsPermissionsCreateAsync( string tunedModelsId, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { + EmailAddress = emailAddress, Role = role, GranteeType = granteeType, - EmailAddress = emailAddress, }; return await TunedModelsPermissionsCreateAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsPatch.g.cs index d4207544..36931011 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsPermissionsPatch.g.cs @@ -458,15 +458,15 @@ partial void ProcessTunedModelsPermissionsPatchResponseContent( /// /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -474,17 +474,17 @@ partial void ProcessTunedModelsPermissionsPatchResponseContent( string tunedModelsId, string permissionsId, string? updateMask = default, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { + EmailAddress = emailAddress, Role = role, GranteeType = granteeType, - EmailAddress = emailAddress, }; return await TunedModelsPermissionsPatchAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContent.g.cs index b40d79d8..ab3270fa 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContent.g.cs @@ -435,66 +435,66 @@ partial void ProcessTunedModelsStreamGenerateContentResponseContent( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task TunedModelsStreamGenerateContentAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; return await TunedModelsStreamGenerateContentAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs index 2e723e22..187cf035 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.GeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs @@ -376,66 +376,66 @@ partial void ProcessTunedModelsStreamGenerateContentAsStreamResponse( /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Collections.Generic.IAsyncEnumerable TunedModelsStreamGenerateContentAsStreamAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, [global::System.Runtime.CompilerServices.EnumeratorCancellation] global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + Contents = contents, + GenerationConfig = generationConfig, + CachedContent = cachedContent, + Store = store, SystemInstruction = systemInstruction, ServiceTier = serviceTier, - SafetySettings = safetySettings, Model = model, - CachedContent = cachedContent, - Contents = contents, - GenerationConfig = generationConfig, Tools = tools, ToolConfig = toolConfig, - Store = store, + SafetySettings = safetySettings, }; var __enumerable = TunedModelsStreamGenerateContentAsStreamAsync( diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.AuthTokensCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.AuthTokensCreate.g.cs index 94222daa..72d9fb01 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.AuthTokensCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.AuthTokensCreate.g.cs @@ -31,6 +31,15 @@ public partial interface IGeminiClient /// /// Creates a token that can be used to constrain the behavior of a BidiGenerateContent session. /// + /// + /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. + /// + /// + /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// + /// + /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. + /// /// /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. /// @@ -40,25 +49,16 @@ public partial interface IGeminiClient /// /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. /// - /// - /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. - /// - /// - /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. - /// - /// - /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task AuthTokensCreateAsync( + string? newSessionExpireTime = default, + string? fieldMask = default, + int? uses = default, global::Google.Gemini.BidiGenerateContentSetup? bidiGenerateContentSetup = default, string? expireTime = default, string? interactionId = default, - string? newSessionExpireTime = default, - int? uses = default, - string? fieldMask = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateEmbedContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateEmbedContentBatch.g.cs index 31762d0d..506cbd0b 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateEmbedContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateEmbedContentBatch.g.cs @@ -41,36 +41,36 @@ public partial interface IGeminiClient /// /// /// - /// - /// Configures the input to the batch request. - /// /// /// Required. The user-defined name of this batch. /// - /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + /// + /// Configures the input to the batch request. /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Stats about the batch. + /// + /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. /// /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// + /// + /// Stats about the batch. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task BatchesUpdateEmbedContentBatchAsync( string batchesId, string? updateMask = default, - global::Google.Gemini.InputEmbedContentConfig? inputConfig = default, string? displayName = default, - string? priority = default, + global::Google.Gemini.InputEmbedContentConfig? inputConfig = default, string? model = default, - global::Google.Gemini.EmbedContentBatchStats? batchStats = default, + string? priority = default, global::Google.Gemini.EmbedContentBatchOutput? output = default, + global::Google.Gemini.EmbedContentBatchStats? batchStats = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateGenerateContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateGenerateContentBatch.g.cs index 62c54acf..b8d5ebd3 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateGenerateContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.BatchesUpdateGenerateContentBatch.g.cs @@ -41,6 +41,9 @@ public partial interface IGeminiClient /// /// /// + /// + /// Stats about the batch. + /// /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// @@ -50,9 +53,6 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Stats about the batch. - /// /// /// Configures the input to the batch request. /// @@ -65,10 +65,10 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task BatchesUpdateGenerateContentBatchAsync( string batchesId, string? updateMask = default, + global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.GenerateContentBatchOutput? output = default, string? priority = default, string? model = default, - global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.InputConfig? inputConfig = default, string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsCreate.g.cs index e7f90bac..f7d2ede8 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsCreate.g.cs @@ -31,46 +31,46 @@ public partial interface IGeminiClient /// /// Creates CachedContent resource. /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. - /// - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// - /// - /// Metadata on the usage of the cached content. + /// + /// Input only. New TTL for this resource, input only. /// /// /// Optional. Input only. Immutable. The content to cache. /// - /// - /// Input only. New TTL for this resource, input only. + /// + /// Metadata on the usage of the cached content. /// /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CachedContentsCreateAsync( - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, - global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, - global::System.Collections.Generic.IList? contents = default, string? ttl = default, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, string? expireTime = default, + global::Google.Gemini.Content? systemInstruction = default, + string? displayName = default, + string? model = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsPatch.g.cs index ea0900f3..7e5cadc1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsPatch.g.cs @@ -41,48 +41,48 @@ public partial interface IGeminiClient /// /// /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. - /// - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// - /// - /// Metadata on the usage of the cached content. + /// + /// Input only. New TTL for this resource, input only. /// /// /// Optional. Input only. Immutable. The content to cache. /// - /// - /// Input only. New TTL for this resource, input only. + /// + /// Metadata on the usage of the cached content. /// /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CachedContentsPatchAsync( string cachedContentsId, string? updateMask = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, - global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, - global::System.Collections.Generic.IList? contents = default, string? ttl = default, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, string? expireTime = default, + global::Google.Gemini.Content? systemInstruction = default, + string? displayName = default, + string? model = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsCreate.g.cs index d00a997c..6862024b 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsCreate.g.cs @@ -36,23 +36,23 @@ public partial interface IGeminiClient /// Create a permission to a specific resource. /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task CorporaPermissionsCreateAsync( string corporaId, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsPatch.g.cs index 61d0e8e4..23ae22ac 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CorporaPermissionsPatch.g.cs @@ -46,15 +46,15 @@ public partial interface IGeminiClient /// /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -62,9 +62,9 @@ public partial interface IGeminiClient string permissionsId, string corporaId, string? updateMask = default, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicGenerateContent.g.cs index 01c65c55..d67a3111 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task DynamicGenerateContentAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContent.g.cs index cb292465..a095fbb8 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task DynamicStreamGenerateContentAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContentAsStream.g.cs index 7c778550..eab5cb60 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.DynamicStreamGenerateContentAsStream.g.cs @@ -22,51 +22,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Collections.Generic.IAsyncEnumerable DynamicStreamGenerateContentAsStreamAsync( string dynamicId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.EnvironmentsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.EnvironmentsCreate.g.cs index aa58bc3d..f326c335 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.EnvironmentsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.EnvironmentsCreate.g.cs @@ -31,22 +31,22 @@ public partial interface IGeminiClient /// /// Creates an environment. /// + /// + /// Network egress configuration for the environment. + /// /// /// Sources to be mounted into the environment. /// /// /// Network egress mode. /// - /// - /// Network egress configuration for the environment. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task EnvironmentsCreateAsync( + global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist = default, global::System.Collections.Generic.IList? sources = default, global::Google.Gemini.CreateEnvironmentRequestNetworkMode? networkMode = default, - global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.FileSearchStoresImportFile.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.FileSearchStoresImportFile.g.cs index f429f259..e31c28d5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.FileSearchStoresImportFile.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.FileSearchStoresImportFile.g.cs @@ -36,12 +36,12 @@ public partial interface IGeminiClient /// Imports a `File` from File Service to a `FileSearchStore`. /// /// - /// - /// Required. The name of the `File` to import. Example: `files/abc-123` - /// /// /// Custom metadata to be associated with the file. /// + /// + /// Required. The name of the `File` to import. Example: `files/abc-123` + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -50,8 +50,8 @@ public partial interface IGeminiClient /// global::System.Threading.Tasks.Task FileSearchStoresImportFileAsync( string fileSearchStoresId, - string? fileName = default, global::System.Collections.Generic.IList? customMetadata = default, + string? fileName = default, global::Google.Gemini.ChunkingConfig? chunkingConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.MediaUploadToFileSearchStore.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.MediaUploadToFileSearchStore.g.cs index 490b5361..34a96add 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.MediaUploadToFileSearchStore.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.MediaUploadToFileSearchStore.g.cs @@ -39,12 +39,12 @@ public partial interface IGeminiClient /// /// Optional. Display name of the created document. /// - /// - /// Custom metadata to be associated with the data. - /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// + /// + /// Custom metadata to be associated with the data. + /// /// /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. /// @@ -54,8 +54,8 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task MediaUploadToFileSearchStoreAsync( string fileSearchStoresId, string? displayName = default, - global::System.Collections.Generic.IList? customMetadata = default, global::Google.Gemini.ChunkingConfig? chunkingConfig = default, + global::System.Collections.Generic.IList? customMetadata = default, string? mimeType = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsEmbedContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsEmbedContent.g.cs index 2f5b194e..39678846 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsEmbedContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsEmbedContent.g.cs @@ -38,23 +38,23 @@ public partial interface IGeminiClient /// Generates a text embedding vector from the input `Content` using the specified [Gemini Embedding model](https://ai.google.dev/gemini-api/docs/models/gemini#text-embedding). /// /// + /// + /// Configurations for the EmbedContent request. + /// /// /// Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}` /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - /// - /// Configurations for the EmbedContent request. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task ModelsEmbedContentAsync( string modelsId, + global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, string? model = default, global::Google.Gemini.Content? content = default, - global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsGenerateContent.g.cs index 01e58c5b..3437552d 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task ModelsGenerateContentAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContent.g.cs index 6256173b..03984321 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task ModelsStreamGenerateContentAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContentAsStream.g.cs index 8d85799c..7d25f4f8 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsStreamGenerateContentAsStream.g.cs @@ -22,51 +22,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Collections.Generic.IAsyncEnumerable ModelsStreamGenerateContentAsStreamAsync( string modelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsCreate.g.cs index d561ee23..18cea8d9 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsCreate.g.cs @@ -42,27 +42,27 @@ public partial interface IGeminiClient /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Optional. List of project numbers that have read access to the tuned model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Optional. A short description of this model. - /// /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + /// + /// Optional. A short description of this model. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -70,13 +70,13 @@ public partial interface IGeminiClient string? tunedModelId = default, string? baseModel = default, int? topK = default, - global::System.Collections.Generic.IList? readerProjectNumbers = default, - float? topP = default, global::Google.Gemini.TuningTask? tuningTask = default, + float? topP = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - string? description = default, float? temperature = default, string? displayName = default, + global::System.Collections.Generic.IList? readerProjectNumbers = default, + string? description = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsGenerateContent.g.cs index d703a25f..c5e53a24 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task TunedModelsGenerateContentAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPatch.g.cs index 01ffa6d6..0c3385c7 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPatch.g.cs @@ -47,27 +47,27 @@ public partial interface IGeminiClient /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Optional. List of project numbers that have read access to the tuned model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Optional. A short description of this model. - /// /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + /// + /// Optional. A short description of this model. + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -76,13 +76,13 @@ public partial interface IGeminiClient string? updateMask = default, string? baseModel = default, int? topK = default, - global::System.Collections.Generic.IList? readerProjectNumbers = default, - float? topP = default, global::Google.Gemini.TuningTask? tuningTask = default, + float? topP = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - string? description = default, float? temperature = default, string? displayName = default, + global::System.Collections.Generic.IList? readerProjectNumbers = default, + string? description = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsCreate.g.cs index 201791e7..2eced6f5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsCreate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsCreate.g.cs @@ -36,23 +36,23 @@ public partial interface IGeminiClient /// Create a permission to a specific resource. /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task TunedModelsPermissionsCreateAsync( string tunedModelsId, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsPatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsPatch.g.cs index e32f3684..b9a1f31c 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsPatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsPermissionsPatch.g.cs @@ -46,15 +46,15 @@ public partial interface IGeminiClient /// /// /// + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// /// /// Required. The role granted by this permission. /// /// /// Optional. Immutable. The type of the grantee. /// - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// @@ -62,9 +62,9 @@ public partial interface IGeminiClient string tunedModelsId, string permissionsId, string? updateMask = default, + string? emailAddress = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.PermissionGranteeType? granteeType = default, - string? emailAddress = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContent.g.cs index b48a420a..9f2bca22 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContent.g.cs @@ -36,51 +36,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task TunedModelsStreamGenerateContentAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs index 0c88a50b..8fd2ff24 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.TunedModelsStreamGenerateContentAsStream.g.cs @@ -22,51 +22,51 @@ public partial interface IGeminiClient /// Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`. /// /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Collections.Generic.IAsyncEnumerable TunedModelsStreamGenerateContentAsStreamAsync( string tunedModelsId, + global::System.Collections.Generic.IList? contents = default, + global::Google.Gemini.GenerationConfig? generationConfig = default, + string? cachedContent = default, + bool? store = default, global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, - global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? contents = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, - bool? store = default, + global::System.Collections.Generic.IList? safetySettings = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs index ab4c69ff..2b32ce67 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs @@ -13,113 +13,121 @@ namespace Google.Gemini DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull, Converters = new global::System.Type[] { - typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageJsonConverter), - typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelJsonConverter), + typeof(global::Google.Gemini.JsonConverters.V1mainMediaResolutionLevelJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.V1mainMediaResolutionLevelNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerationConfigResponseModalitieJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerationConfigResponseModalitieNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigTurnCoverageJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityJsonConverter), - typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigTurnCoverageNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigActivityHandlingJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigActivityHandlingNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SchemaTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionStartOfSpeechSensitivityJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TextResponseFormatMimeTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionStartOfSpeechSensitivityNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TextResponseFormatMimeTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionEndOfSpeechSensitivityJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionEndOfSpeechSensitivityNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter), + typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.V1mainMediaResolutionLevelJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusJsonConverter), - typeof(global::Google.Gemini.JsonConverters.V1mainMediaResolutionLevelNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TunedModelStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TunedModelStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SourceTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SourceTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.DocumentStateJsonConverter), typeof(global::Google.Gemini.JsonConverters.DocumentStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TunedModelStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TunedModelStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatDeliveryJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CreateEnvironmentRequestNetworkModeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatDeliveryNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CreateEnvironmentRequestNetworkModeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ComputerUseDisabledSafetyPolicieJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ComputerUseDisabledSafetyPolicieNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SourceTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SourceTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionStartOfSpeechSensitivityJsonConverter), - typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionStartOfSpeechSensitivityNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionEndOfSpeechSensitivityJsonConverter), - typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionEndOfSpeechSensitivityNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.FileStateJsonConverter), @@ -129,26 +137,18 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.FileSourceNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ComputerUseDisabledSafetyPolicieJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ComputerUseDisabledSafetyPolicieNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatAspectRatioJsonConverter), typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatAspectRatioNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatImageSizeJsonConverter), typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatImageSizeNullableJsonConverter), @@ -157,37 +157,37 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatDeliveryNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityJsonConverter), + typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigTurnCoverageJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigTurnCoverageNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigActivityHandlingJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.RealtimeInputConfigActivityHandlingNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerationConfigResponseModalitieJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SchemaTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerationConfigResponseModalitieNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TextResponseFormatMimeTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TextResponseFormatMimeTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CreateEnvironmentRequestNetworkModeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CreateEnvironmentRequestNetworkModeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.PermissionRoleJsonConverter), @@ -197,25 +197,25 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.PermissionGranteeTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageJsonConverter), - typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatDeliveryJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatDeliveryNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter), @@ -224,335 +224,335 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.UnixTimestampJsonConverter), })] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.JsonSerializerContextTypes))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlMetadataUrlRetrievalStatus), TypeInfoPropertyName = "UrlMetadataUrlRetrievalStatus2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AuthToken))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(string))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSearch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(int))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageSearch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Corpus))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ResponseFormatConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormat))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormat))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TextResponseFormat))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListModelsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Model))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ThinkingConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BidiGenerateContentSetup))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatus))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatusModelStage), TypeInfoPropertyName = "ModelStatusModelStage2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.V1mainMediaResolution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.V1mainMediaResolutionLevel), TypeInfoPropertyName = "V1mainMediaResolutionLevel2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListCachedContentsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContent))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Candidate))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingAttribution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlContextMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LogprobsResult))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CandidateFinishReason), TypeInfoPropertyName = "CandidateFinishReason2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRating))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CitationMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Content))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(double))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingCategory), TypeInfoPropertyName = "SafetyRatingCategory2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ThinkingConfigThinkingLevel), TypeInfoPropertyName = "ThinkingConfigThinkingLevel2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CitationSource))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LanguageHints))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentResponses))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(float))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioTranscriptionConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfigResponseModalitie), TypeInfoPropertyName = "GenerationConfigResponseModalitie2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TranslationConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingProbability), TypeInfoPropertyName = "SafetyRatingProbability2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Schema))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SpeechConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SchemaType), TypeInfoPropertyName = "SchemaType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(object))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfigMediaResolution), TypeInfoPropertyName = "GenerationConfigMediaResolution2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningExample))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LogprobsResultCandidate))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievalMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.StringList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioTranscriptionConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ContextWindowCompressionConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Tool))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.HistoryConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SessionResumptionConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfig))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RealtimeInputConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RealtimeInputConfigTurnCoverage), TypeInfoPropertyName = "RealtimeInputConfigTurnCoverage2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RealtimeInputConfigActivityHandling), TypeInfoPropertyName = "RealtimeInputConfigActivityHandling2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetection))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRating))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingCategory), TypeInfoPropertyName = "SafetyRatingCategory2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingProbability), TypeInfoPropertyName = "SafetyRatingProbability2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetectionStartOfSpeechSensitivity), TypeInfoPropertyName = "AutomaticActivityDetectionStartOfSpeechSensitivity2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity), TypeInfoPropertyName = "AutomaticActivityDetectionEndOfSpeechSensitivity2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Content))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequestServiceTier), TypeInfoPropertyName = "GenerateContentRequestServiceTier2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySetting))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Tool))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SlidingWindow))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponseToolType), TypeInfoPropertyName = "ToolResponseToolType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCall))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCallToolType), TypeInfoPropertyName = "ToolCallToolType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(double))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCall))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SpeakerVoiceConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VoiceConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListCorporaResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Corpus))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListEnvironmentsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Environment))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ThinkingConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ThinkingConfigThinkingLevel), TypeInfoPropertyName = "ThinkingConfigThinkingLevel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchEmbedContentsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbeddingUsageMetadata))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ContentEmbedding))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbeddingUsageMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WhiteSpaceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequests))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContent))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContentUsageMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Hyperparameters))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListCorporaResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.V1mainMediaResolution))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.V1mainMediaResolutionLevel), TypeInfoPropertyName = "V1mainMediaResolutionLevel2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecution))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatchOutput))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedResponses))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AttributionSourceId))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingPassageId))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SemanticRetrieverChunk))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunk))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Image))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Web))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievedContext))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Maps))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.MultiSpeakerVoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PlaceAnswerSources))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkCustomMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListFilesResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.File))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UsageMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PromptFeedback))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseScheduling), TypeInfoPropertyName = "FunctionResponseScheduling2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponsePart))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListTunedModelsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModel))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModelState), TypeInfoPropertyName = "TunedModelState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningTask))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModelSource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Status))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkStringList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Empty))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageSearch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TextResponseFormat))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TextResponseFormatMimeType), TypeInfoPropertyName = "TextResponseFormatMimeType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievalConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LatLng))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentRequestTaskType), TypeInfoPropertyName = "EmbedContentRequestTaskType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PrebuiltVoiceConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DynamicRetrievalConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(float))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DynamicRetrievalConfigMode), TypeInfoPropertyName = "DynamicRetrievalConfigMode2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchOutput))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentResponses))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateFileRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.File))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SearchTypes))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Interval))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SlidingWindow))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSearch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchGenerateContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SpeechConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.MultiSpeakerVoiceConfig))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningExamples))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Source))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SourceType), TypeInfoPropertyName = "SourceType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Document))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CustomMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DocumentState), TypeInfoPropertyName = "DocumentState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningExample))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningTask))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Hyperparameters))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningSnapshot))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Dataset))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListGeneratedFilesResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFile))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SpeakerVoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlContextMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateFileRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Blob))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(byte[]))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListDocumentsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EgressRule))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Candidate))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LogprobsResult))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CitationMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingAttribution))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CandidateFinishReason), TypeInfoPropertyName = "CandidateFinishReason2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormatMimeType), TypeInfoPropertyName = "AudioResponseFormatMimeType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormatDelivery), TypeInfoPropertyName = "AudioResponseFormatDelivery2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Dataset))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TuningSnapshot))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionDeclaration))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionDeclarationBehavior), TypeInfoPropertyName = "FunctionDeclarationBehavior2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievalConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoFileMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSearchStore))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PrebuiltVoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UploadToFileSearchStoreRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ChunkingConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WhiteSpaceConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievalMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SearchEntryPoint))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunk))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySetting))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingCategory), TypeInfoPropertyName = "SafetySettingCategory2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingThreshold), TypeInfoPropertyName = "SafetySettingThreshold2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentStatus), TypeInfoPropertyName = "EnvironmentStatus2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentNetworkMode), TypeInfoPropertyName = "EnvironmentNetworkMode2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Source))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentNetworkEgressAllowlist))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCall))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCallToolType), TypeInfoPropertyName = "ToolCallToolType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.McpServer))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.StreamableHttpTransport))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CitationSource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequests))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfigTaskType), TypeInfoPropertyName = "EmbedContentConfigTaskType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentRequestTaskType), TypeInfoPropertyName = "EmbedContentRequestTaskType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCode))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCodeLanguage), TypeInfoPropertyName = "ExecutableCodeLanguage2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseScheduling), TypeInfoPropertyName = "FunctionResponseScheduling2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponsePart))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModalityTokenCount))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModalityTokenCountModality), TypeInfoPropertyName = "ModalityTokenCountModality2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RegisterFilesResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImportFileRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CustomMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Operation))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListFileSearchStoresResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PromptFeedback))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PromptFeedbackBlockReason), TypeInfoPropertyName = "PromptFeedbackBlockReason2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DynamicRetrievalConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DynamicRetrievalConfigMode), TypeInfoPropertyName = "DynamicRetrievalConfigMode2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileState), TypeInfoPropertyName = "FileState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSource), TypeInfoPropertyName = "FileSource2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListPermissionsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Permission))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SearchEntryPoint))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchEmbedContentsRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ReviewSnippet))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfigMode), TypeInfoPropertyName = "FunctionCallingConfigMode2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.HistoryConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Interval))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SearchTypes))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Operation))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputEmbedContentConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchStats))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchOutput))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchState), TypeInfoPropertyName = "EmbedContentBatchState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSearchStore))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Document))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.DocumentState), TypeInfoPropertyName = "DocumentState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Part))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResult))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(byte[]))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Blob))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCall))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileData))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCode))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModelState), TypeInfoPropertyName = "TunedModelState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModelSource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Model))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateFileResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingPassageId))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LanguageAuto))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LanguageHints))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearchRetrieval))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleMaps))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.McpServer))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkStringList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseBlob))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SemanticRetrieverChunk))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFileState), TypeInfoPropertyName = "GeneratedFileState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateEnvironmentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateEnvironmentRequestNetworkMode), TypeInfoPropertyName = "CreateEnvironmentRequestNetworkMode2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ComputerUse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlContext))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ComputerUseEnvironment), TypeInfoPropertyName = "ComputerUseEnvironment2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ComputerUseDisabledSafetyPolicie), TypeInfoPropertyName = "ComputerUseDisabledSafetyPolicie2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateFileResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AttributionSourceId))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievedContext))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkCustomMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SourceType), TypeInfoPropertyName = "SourceType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputEmbedContentConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentRequests))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfigMode), TypeInfoPropertyName = "FunctionCallingConfigMode2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionDeclaration))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionDeclarationBehavior), TypeInfoPropertyName = "FunctionDeclarationBehavior2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EgressRule))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TranslationConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Maps))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PlaceAnswerSources))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ReviewSnippet))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContentUsageMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.StringList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Image))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetection))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetectionStartOfSpeechSensitivity), TypeInfoPropertyName = "AutomaticActivityDetectionStartOfSpeechSensitivity2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity), TypeInfoPropertyName = "AutomaticActivityDetectionEndOfSpeechSensitivity2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoFileMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatchOutput))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedResponses))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileState), TypeInfoPropertyName = "FileState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSource), TypeInfoPropertyName = "FileSource2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TopCandidates))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LogprobsResultCandidate))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListFilesResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListDocumentsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponseToolType), TypeInfoPropertyName = "ToolResponseToolType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RegisterFilesRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlContext))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Web))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ResponseFormatConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormat))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormat))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormatAspectRatio), TypeInfoPropertyName = "ImageResponseFormatAspectRatio2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormatMimeType), TypeInfoPropertyName = "ImageResponseFormatMimeType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormatImageSize), TypeInfoPropertyName = "ImageResponseFormatImageSize2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormatDelivery), TypeInfoPropertyName = "ImageResponseFormatDelivery2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageResponseFormatMimeType), TypeInfoPropertyName = "ImageResponseFormatMimeType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleMaps))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchEmbedContentsRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchStats))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UsageMetadataServiceTier), TypeInfoPropertyName = "UsageMetadataServiceTier2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModalityTokenCount))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModalityTokenCountModality), TypeInfoPropertyName = "ModalityTokenCountModality2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseBlob))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Environment))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentNetworkMode), TypeInfoPropertyName = "EnvironmentNetworkMode2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentNetworkEgressAllowlist))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EnvironmentStatus), TypeInfoPropertyName = "EnvironmentStatus2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedEmbedContentRequests))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SchemaType), TypeInfoPropertyName = "SchemaType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RegisterFilesRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LanguageAuto))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SessionResumptionConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ContextWindowCompressionConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImportFileRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListEnvironmentsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.StreamableHttpTransport))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UsageMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatus))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BidiGenerateContentSetup))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TextResponseFormatMimeType), TypeInfoPropertyName = "TextResponseFormatMimeType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TopCandidates))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Part))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResult))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileData))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RegisterFilesResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFileState), TypeInfoPropertyName = "GeneratedFileState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateEnvironmentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateEnvironmentRequestNetworkMode), TypeInfoPropertyName = "CreateEnvironmentRequestNetworkMode2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListTunedModelsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListCachedContentsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RealtimeInputConfigTurnCoverage), TypeInfoPropertyName = "RealtimeInputConfigTurnCoverage2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RealtimeInputConfigActivityHandling), TypeInfoPropertyName = "RealtimeInputConfigActivityHandling2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfigMediaResolution), TypeInfoPropertyName = "GenerationConfigMediaResolution2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfigResponseModalitie), TypeInfoPropertyName = "GenerationConfigResponseModalitie2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchState), TypeInfoPropertyName = "EmbedContentBatchState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResultOutcome), TypeInfoPropertyName = "CodeExecutionResultOutcome2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PromptFeedbackBlockReason), TypeInfoPropertyName = "PromptFeedbackBlockReason2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WebSearch))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Permission))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PermissionRole), TypeInfoPropertyName = "PermissionRole2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PermissionGranteeType), TypeInfoPropertyName = "PermissionGranteeType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchStats))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LatLng))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AsyncBatchEmbedContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AuthToken))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearchRetrieval))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlMetadataUrlRetrievalStatus), TypeInfoPropertyName = "UrlMetadataUrlRetrievalStatus2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListOperationsResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CustomLongRunningOperation))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingCategory), TypeInfoPropertyName = "SafetySettingCategory2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingThreshold), TypeInfoPropertyName = "SafetySettingThreshold2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UsageMetadataServiceTier), TypeInfoPropertyName = "UsageMetadataServiceTier2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Empty))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResultOutcome), TypeInfoPropertyName = "CodeExecutionResultOutcome2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchGenerateContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatch))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatusModelStage), TypeInfoPropertyName = "ModelStatusModelStage2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CustomLongRunningOperation))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequestServiceTier), TypeInfoPropertyName = "GenerateContentRequestServiceTier2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchStats))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListPermissionsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCodeLanguage), TypeInfoPropertyName = "ExecutableCodeLanguage2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AsyncBatchEmbedContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormatDelivery), TypeInfoPropertyName = "AudioResponseFormatDelivery2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AudioResponseFormatMimeType), TypeInfoPropertyName = "AudioResponseFormatMimeType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListModelsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UploadToFileSearchStoreRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatchState), TypeInfoPropertyName = "GenerateContentBatchState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] public sealed partial class SourceGenerationContext : global::System.Text.Json.Serialization.JsonSerializerContext { } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs index 055f33b1..1e506db5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs @@ -28,403 +28,403 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Google.Gemini.UrlMetadata? Type0 { get; set; } + public global::Google.Gemini.AuthToken? Type0 { get; set; } /// /// /// - public global::Google.Gemini.UrlMetadataUrlRetrievalStatus? Type1 { get; set; } + public string? Type1 { get; set; } /// /// /// - public string? Type2 { get; set; } + public int? Type2 { get; set; } /// /// /// - public global::Google.Gemini.FileSearch? Type3 { get; set; } + public global::Google.Gemini.BidiGenerateContentSetup? Type3 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type4 { get; set; } + public global::Google.Gemini.ModelStatus? Type4 { get; set; } /// /// /// - public int? Type5 { get; set; } + public global::Google.Gemini.ModelStatusModelStage? Type5 { get; set; } /// /// /// - public global::Google.Gemini.ImageSearch? Type6 { get; set; } + public global::Google.Gemini.V1mainMediaResolution? Type6 { get; set; } /// /// /// - public global::Google.Gemini.Corpus? Type7 { get; set; } + public global::Google.Gemini.V1mainMediaResolutionLevel? Type7 { get; set; } /// /// /// - public global::Google.Gemini.ResponseFormatConfig? Type8 { get; set; } + public global::Google.Gemini.ListCachedContentsResponse? Type8 { get; set; } /// /// /// - public global::Google.Gemini.AudioResponseFormat? Type9 { get; set; } + public global::System.Collections.Generic.IList? Type9 { get; set; } /// /// /// - public global::Google.Gemini.ImageResponseFormat? Type10 { get; set; } + public global::Google.Gemini.CachedContent? Type10 { get; set; } /// /// /// - public global::Google.Gemini.TextResponseFormat? Type11 { get; set; } + public global::Google.Gemini.Candidate? Type11 { get; set; } /// /// /// - public global::Google.Gemini.ListModelsResponse? Type12 { get; set; } + public global::System.Collections.Generic.IList? Type12 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type13 { get; set; } + public global::Google.Gemini.GroundingAttribution? Type13 { get; set; } /// /// /// - public global::Google.Gemini.Model? Type14 { get; set; } + public global::Google.Gemini.GroundingMetadata? Type14 { get; set; } /// /// /// - public global::Google.Gemini.ThinkingConfig? Type15 { get; set; } + public global::Google.Gemini.UrlContextMetadata? Type15 { get; set; } /// /// /// - public bool? Type16 { get; set; } + public global::Google.Gemini.LogprobsResult? Type16 { get; set; } /// /// /// - public global::Google.Gemini.ThinkingConfigThinkingLevel? Type17 { get; set; } + public global::Google.Gemini.CandidateFinishReason? Type17 { get; set; } /// /// /// - public global::Google.Gemini.CitationSource? Type18 { get; set; } + public global::System.Collections.Generic.IList? Type18 { get; set; } /// /// /// - public global::Google.Gemini.LanguageHints? Type19 { get; set; } + public global::Google.Gemini.SafetyRating? Type19 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentResponses? Type20 { get; set; } + public global::Google.Gemini.CitationMetadata? Type20 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type21 { get; set; } + public global::Google.Gemini.Content? Type21 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentResponse? Type22 { get; set; } + public double? Type22 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfig? Type23 { get; set; } + public global::Google.Gemini.SafetyRatingCategory? Type23 { get; set; } /// /// /// - public float? Type24 { get; set; } + public bool? Type24 { get; set; } /// /// /// - public global::Google.Gemini.AudioTranscriptionConfig? Type25 { get; set; } + public global::Google.Gemini.SafetyRatingProbability? Type25 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type26 { get; set; } + public global::Google.Gemini.Schema? Type26 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfigResponseModalitie? Type27 { get; set; } + public global::Google.Gemini.SchemaType? Type27 { get; set; } /// /// /// - public global::Google.Gemini.TranslationConfig? Type28 { get; set; } + public global::System.Collections.Generic.IList? Type28 { get; set; } /// /// /// - public global::Google.Gemini.Schema? Type29 { get; set; } + public global::System.Collections.Generic.Dictionary? Type29 { get; set; } /// /// /// - public global::Google.Gemini.SpeechConfig? Type30 { get; set; } + public object? Type30 { get; set; } /// /// /// - public object? Type31 { get; set; } + public global::System.Collections.Generic.IList? Type31 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfigMediaResolution? Type32 { get; set; } + public global::Google.Gemini.AudioTranscriptionConfig? Type32 { get; set; } /// /// /// - public global::Google.Gemini.ImageConfig? Type33 { get; set; } + public global::Google.Gemini.ContextWindowCompressionConfig? Type33 { get; set; } /// /// /// - public global::Google.Gemini.TuningExample? Type34 { get; set; } + public global::System.Collections.Generic.IList? Type34 { get; set; } /// /// /// - public global::Google.Gemini.LogprobsResultCandidate? Type35 { get; set; } + public global::Google.Gemini.Tool? Type35 { get; set; } /// /// /// - public global::Google.Gemini.RetrievalMetadata? Type36 { get; set; } + public global::Google.Gemini.HistoryConfig? Type36 { get; set; } /// /// /// - public global::Google.Gemini.StringList? Type37 { get; set; } + public global::Google.Gemini.SessionResumptionConfig? Type37 { get; set; } /// /// /// - public global::Google.Gemini.RealtimeInputConfig? Type38 { get; set; } + public global::Google.Gemini.GenerationConfig? Type38 { get; set; } /// /// /// - public global::Google.Gemini.RealtimeInputConfigTurnCoverage? Type39 { get; set; } + public global::Google.Gemini.RealtimeInputConfig? Type39 { get; set; } /// /// /// - public global::Google.Gemini.RealtimeInputConfigActivityHandling? Type40 { get; set; } + public global::Google.Gemini.SpeakerVoiceConfig? Type40 { get; set; } /// /// /// - public global::Google.Gemini.AutomaticActivityDetection? Type41 { get; set; } + public global::Google.Gemini.VoiceConfig? Type41 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRating? Type42 { get; set; } + public global::Google.Gemini.CodeExecution? Type42 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRatingCategory? Type43 { get; set; } + public global::Google.Gemini.ListCorporaResponse? Type43 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRatingProbability? Type44 { get; set; } + public global::System.Collections.Generic.IList? Type44 { get; set; } /// /// /// - public global::Google.Gemini.AutomaticActivityDetectionStartOfSpeechSensitivity? Type45 { get; set; } + public global::Google.Gemini.Corpus? Type45 { get; set; } /// /// /// - public global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity? Type46 { get; set; } + public global::Google.Gemini.ListEnvironmentsResponse? Type46 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentRequest? Type47 { get; set; } + public global::System.Collections.Generic.IList? Type47 { get; set; } /// /// /// - public global::Google.Gemini.Content? Type48 { get; set; } + public global::Google.Gemini.Environment? Type48 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentRequestServiceTier? Type49 { get; set; } + public global::Google.Gemini.ThinkingConfig? Type49 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type50 { get; set; } + public global::Google.Gemini.ThinkingConfigThinkingLevel? Type50 { get; set; } /// /// /// - public global::Google.Gemini.SafetySetting? Type51 { get; set; } + public global::Google.Gemini.BatchEmbedContentsResponse? Type51 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type52 { get; set; } + public global::Google.Gemini.EmbeddingUsageMetadata? Type52 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type53 { get; set; } + public global::System.Collections.Generic.IList? Type53 { get; set; } /// /// /// - public global::Google.Gemini.Tool? Type54 { get; set; } + public global::Google.Gemini.ContentEmbedding? Type54 { get; set; } /// /// /// - public global::Google.Gemini.ToolConfig? Type55 { get; set; } + public global::Google.Gemini.GenerateContentResponse? Type55 { get; set; } /// /// /// - public global::Google.Gemini.SlidingWindow? Type56 { get; set; } + public global::System.Collections.Generic.IList? Type56 { get; set; } /// /// /// - public global::Google.Gemini.ToolResponse? Type57 { get; set; } + public global::Google.Gemini.UsageMetadata? Type57 { get; set; } /// /// /// - public global::Google.Gemini.ToolResponseToolType? Type58 { get; set; } + public global::Google.Gemini.PromptFeedback? Type58 { get; set; } /// /// /// - public global::Google.Gemini.ToolCall? Type59 { get; set; } + public global::Google.Gemini.FunctionResponse? Type59 { get; set; } /// /// /// - public global::Google.Gemini.ToolCallToolType? Type60 { get; set; } + public global::Google.Gemini.FunctionResponseScheduling? Type60 { get; set; } /// /// /// - public global::Google.Gemini.VideoMetadata? Type61 { get; set; } + public global::System.Collections.Generic.IList? Type61 { get; set; } /// /// /// - public double? Type62 { get; set; } + public global::Google.Gemini.FunctionResponsePart? Type62 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCall? Type63 { get; set; } + public global::Google.Gemini.ListTunedModelsResponse? Type63 { get; set; } /// /// /// - public global::Google.Gemini.BatchEmbedContentsResponse? Type64 { get; set; } + public global::System.Collections.Generic.IList? Type64 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type65 { get; set; } + public global::Google.Gemini.TunedModel? Type65 { get; set; } /// /// /// - public global::Google.Gemini.ContentEmbedding? Type66 { get; set; } + public global::Google.Gemini.InlinedEmbedContentResponse? Type66 { get; set; } /// /// /// - public global::Google.Gemini.EmbeddingUsageMetadata? Type67 { get; set; } + public global::Google.Gemini.EmbedContentResponse? Type67 { get; set; } /// /// /// - public global::Google.Gemini.WhiteSpaceConfig? Type68 { get; set; } + public global::Google.Gemini.Status? Type68 { get; set; } /// /// /// - public global::Google.Gemini.InlinedRequests? Type69 { get; set; } + public global::Google.Gemini.Empty? Type69 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type70 { get; set; } + public global::Google.Gemini.ImageSearch? Type70 { get; set; } /// /// /// - public global::Google.Gemini.InlinedRequest? Type71 { get; set; } + public global::Google.Gemini.TextResponseFormat? Type71 { get; set; } /// /// /// - public global::Google.Gemini.CachedContent? Type72 { get; set; } + public global::Google.Gemini.TextResponseFormatMimeType? Type72 { get; set; } /// /// /// - public global::Google.Gemini.CachedContentUsageMetadata? Type73 { get; set; } + public global::Google.Gemini.RetrievalConfig? Type73 { get; set; } /// /// /// - public global::Google.Gemini.Hyperparameters? Type74 { get; set; } + public global::Google.Gemini.LatLng? Type74 { get; set; } /// /// /// - public global::Google.Gemini.ListCorporaResponse? Type75 { get; set; } + public global::System.Collections.Generic.IList? Type75 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type76 { get; set; } + public global::Google.Gemini.UrlMetadata? Type76 { get; set; } /// /// /// - public global::Google.Gemini.V1mainMediaResolution? Type77 { get; set; } + public global::Google.Gemini.EmbedContentRequest? Type77 { get; set; } /// /// /// - public global::Google.Gemini.V1mainMediaResolutionLevel? Type78 { get; set; } + public global::Google.Gemini.EmbedContentConfig? Type78 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecution? Type79 { get; set; } + public global::Google.Gemini.EmbedContentRequestTaskType? Type79 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatchOutput? Type80 { get; set; } + public global::Google.Gemini.PrebuiltVoiceConfig? Type80 { get; set; } /// /// /// - public global::Google.Gemini.InlinedResponses? Type81 { get; set; } + public global::Google.Gemini.DynamicRetrievalConfig? Type81 { get; set; } /// /// /// - public global::Google.Gemini.AttributionSourceId? Type82 { get; set; } + public float? Type82 { get; set; } /// /// /// - public global::Google.Gemini.GroundingPassageId? Type83 { get; set; } + public global::Google.Gemini.DynamicRetrievalConfigMode? Type83 { get; set; } /// /// /// - public global::Google.Gemini.SemanticRetrieverChunk? Type84 { get; set; } + public global::Google.Gemini.EmbedContentBatchOutput? Type84 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunk? Type85 { get; set; } + public global::Google.Gemini.InlinedEmbedContentResponses? Type85 { get; set; } /// /// /// - public global::Google.Gemini.Image? Type86 { get; set; } + public global::Google.Gemini.CreateFileRequest? Type86 { get; set; } /// /// /// - public global::Google.Gemini.Web? Type87 { get; set; } + public global::Google.Gemini.File? Type87 { get; set; } /// /// /// - public global::Google.Gemini.RetrievedContext? Type88 { get; set; } + public global::Google.Gemini.GoogleSearch? Type88 { get; set; } /// /// /// - public global::Google.Gemini.Maps? Type89 { get; set; } + public global::Google.Gemini.SearchTypes? Type89 { get; set; } /// /// /// - public global::Google.Gemini.VoiceConfig? Type90 { get; set; } + public global::Google.Gemini.Interval? Type90 { get; set; } /// /// /// - public global::Google.Gemini.MultiSpeakerVoiceConfig? Type91 { get; set; } + public global::Google.Gemini.SlidingWindow? Type91 { get; set; } /// /// /// - public global::Google.Gemini.PlaceAnswerSources? Type92 { get; set; } + public global::Google.Gemini.FileSearch? Type92 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type93 { get; set; } + public global::Google.Gemini.BatchGenerateContentRequest? Type93 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunkCustomMetadata? Type94 { get; set; } + public global::Google.Gemini.GenerateContentBatch? Type94 { get; set; } /// /// /// - public global::Google.Gemini.ListFilesResponse? Type95 { get; set; } + public global::Google.Gemini.SpeechConfig? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public global::Google.Gemini.MultiSpeakerVoiceConfig? Type96 { get; set; } /// /// /// - public global::Google.Gemini.File? Type97 { get; set; } + public global::Google.Gemini.TuningExamples? Type97 { get; set; } /// /// /// - public global::Google.Gemini.TunedModel? Type98 { get; set; } + public global::System.Collections.Generic.IList? Type98 { get; set; } /// /// /// - public global::Google.Gemini.TunedModelState? Type99 { get; set; } + public global::Google.Gemini.TuningExample? Type99 { get; set; } /// /// /// @@ -432,772 +432,772 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Google.Gemini.TunedModelSource? Type101 { get; set; } + public global::Google.Gemini.Hyperparameters? Type101 { get; set; } /// /// /// - public global::Google.Gemini.Status? Type102 { get; set; } + public global::System.Collections.Generic.IList? Type102 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type103 { get; set; } + public global::Google.Gemini.TuningSnapshot? Type103 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunkStringList? Type104 { get; set; } + public global::Google.Gemini.Dataset? Type104 { get; set; } /// /// /// - public global::Google.Gemini.CountTokensRequest? Type105 { get; set; } + public global::Google.Gemini.ListGeneratedFilesResponse? Type105 { get; set; } /// /// /// - public global::Google.Gemini.TuningExamples? Type106 { get; set; } + public global::System.Collections.Generic.IList? Type106 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type107 { get; set; } + public global::Google.Gemini.GeneratedFile? Type107 { get; set; } /// /// /// - public global::Google.Gemini.Source? Type108 { get; set; } + public global::Google.Gemini.ChunkingConfig? Type108 { get; set; } /// /// /// - public global::Google.Gemini.SourceType? Type109 { get; set; } + public global::Google.Gemini.WhiteSpaceConfig? Type109 { get; set; } /// /// /// - public global::Google.Gemini.Document? Type110 { get; set; } + public global::System.Collections.Generic.IList? Type110 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type111 { get; set; } + public global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport? Type111 { get; set; } /// /// /// - public global::Google.Gemini.CustomMetadata? Type112 { get; set; } + public global::Google.Gemini.RetrievalMetadata? Type112 { get; set; } /// /// /// - public global::Google.Gemini.DocumentState? Type113 { get; set; } + public global::Google.Gemini.SearchEntryPoint? Type113 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentRequest? Type114 { get; set; } + public global::System.Collections.Generic.IList? Type114 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentRequest? Type115 { get; set; } + public global::Google.Gemini.GroundingChunk? Type115 { get; set; } /// /// /// - public global::Google.Gemini.ListGeneratedFilesResponse? Type116 { get; set; } + public global::Google.Gemini.SafetySetting? Type116 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type117 { get; set; } + public global::Google.Gemini.SafetySettingCategory? Type117 { get; set; } /// /// /// - public global::Google.Gemini.GeneratedFile? Type118 { get; set; } + public global::Google.Gemini.SafetySettingThreshold? Type118 { get; set; } /// /// /// - public global::Google.Gemini.SpeakerVoiceConfig? Type119 { get; set; } + public global::Google.Gemini.TransferOwnershipRequest? Type119 { get; set; } /// /// /// - public global::Google.Gemini.UrlContextMetadata? Type120 { get; set; } + public global::Google.Gemini.EnvironmentStatus? Type120 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type121 { get; set; } + public global::Google.Gemini.EnvironmentNetworkMode? Type121 { get; set; } /// /// /// - public global::Google.Gemini.CreateFileRequest? Type122 { get; set; } + public global::System.Collections.Generic.IList? Type122 { get; set; } /// /// /// - public global::Google.Gemini.Blob? Type123 { get; set; } + public global::Google.Gemini.Source? Type123 { get; set; } /// /// /// - public byte[]? Type124 { get; set; } + public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? Type124 { get; set; } /// /// /// - public global::Google.Gemini.ListDocumentsResponse? Type125 { get; set; } + public global::Google.Gemini.ToolCall? Type125 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type126 { get; set; } + public global::Google.Gemini.ToolCallToolType? Type126 { get; set; } /// /// /// - public global::Google.Gemini.EgressRule? Type127 { get; set; } + public global::Google.Gemini.McpServer? Type127 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type128 { get; set; } + public global::Google.Gemini.StreamableHttpTransport? Type128 { get; set; } /// /// /// - public global::Google.Gemini.Candidate? Type129 { get; set; } + public global::System.Collections.Generic.IList? Type129 { get; set; } /// /// /// - public global::Google.Gemini.LogprobsResult? Type130 { get; set; } + public global::Google.Gemini.CitationSource? Type130 { get; set; } /// /// /// - public global::Google.Gemini.GroundingMetadata? Type131 { get; set; } + public global::Google.Gemini.CountTokensRequest? Type131 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type132 { get; set; } + public global::System.Collections.Generic.IList? Type132 { get; set; } /// /// /// - public global::Google.Gemini.CitationMetadata? Type133 { get; set; } + public global::Google.Gemini.GenerateContentRequest? Type133 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type134 { get; set; } + public global::Google.Gemini.InlinedRequests? Type134 { get; set; } /// /// /// - public global::Google.Gemini.GroundingAttribution? Type135 { get; set; } + public global::System.Collections.Generic.IList? Type135 { get; set; } /// /// /// - public global::Google.Gemini.CandidateFinishReason? Type136 { get; set; } + public global::Google.Gemini.InlinedRequest? Type136 { get; set; } /// /// /// - public global::Google.Gemini.AudioResponseFormatMimeType? Type137 { get; set; } + public global::Google.Gemini.EmbedContentConfigTaskType? Type137 { get; set; } /// /// /// - public global::Google.Gemini.AudioResponseFormatDelivery? Type138 { get; set; } + public global::Google.Gemini.ModalityTokenCount? Type138 { get; set; } /// /// /// - public global::Google.Gemini.Dataset? Type139 { get; set; } + public global::Google.Gemini.ModalityTokenCountModality? Type139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type140 { get; set; } + public global::Google.Gemini.RegisterFilesResponse? Type140 { get; set; } /// /// /// - public global::Google.Gemini.TuningSnapshot? Type141 { get; set; } + public global::System.Collections.Generic.IList? Type141 { get; set; } /// /// /// - public global::Google.Gemini.FunctionDeclaration? Type142 { get; set; } + public global::Google.Gemini.ImportFileRequest? Type142 { get; set; } /// /// /// - public global::Google.Gemini.FunctionDeclarationBehavior? Type143 { get; set; } + public global::System.Collections.Generic.IList? Type143 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCallingConfig? Type144 { get; set; } + public global::Google.Gemini.CustomMetadata? Type144 { get; set; } /// /// /// - public global::Google.Gemini.RetrievalConfig? Type145 { get; set; } + public global::Google.Gemini.Operation? Type145 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentResponse? Type146 { get; set; } + public global::Google.Gemini.ListFileSearchStoresResponse? Type146 { get; set; } /// /// /// - public global::Google.Gemini.VideoFileMetadata? Type147 { get; set; } + public global::System.Collections.Generic.IList? Type147 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type148 { get; set; } + public global::Google.Gemini.FileSearchStore? Type148 { get; set; } /// /// /// - public global::Google.Gemini.FileSearchStore? Type149 { get; set; } + public global::Google.Gemini.Document? Type149 { get; set; } /// /// /// - public global::Google.Gemini.PrebuiltVoiceConfig? Type150 { get; set; } + public global::Google.Gemini.DocumentState? Type150 { get; set; } /// /// /// - public global::Google.Gemini.UploadToFileSearchStoreRequest? Type151 { get; set; } + public global::System.Collections.Generic.IList? Type151 { get; set; } /// /// /// - public global::Google.Gemini.ChunkingConfig? Type152 { get; set; } + public global::Google.Gemini.Part? Type152 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentConfig? Type153 { get; set; } + public global::Google.Gemini.CodeExecutionResult? Type153 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentConfigTaskType? Type154 { get; set; } + public byte[]? Type154 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentRequestTaskType? Type155 { get; set; } + public global::Google.Gemini.Blob? Type155 { get; set; } /// /// /// - public global::Google.Gemini.ExecutableCode? Type156 { get; set; } + public global::Google.Gemini.FunctionCall? Type156 { get; set; } /// /// /// - public global::Google.Gemini.ExecutableCodeLanguage? Type157 { get; set; } + public global::Google.Gemini.FileData? Type157 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponse? Type158 { get; set; } + public global::Google.Gemini.VideoMetadata? Type158 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponseScheduling? Type159 { get; set; } + public global::Google.Gemini.ToolResponse? Type159 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type160 { get; set; } + public global::Google.Gemini.ExecutableCode? Type160 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponsePart? Type161 { get; set; } + public global::Google.Gemini.TunedModelState? Type161 { get; set; } /// /// /// - public global::Google.Gemini.ListFileSearchStoresResponse? Type162 { get; set; } + public global::Google.Gemini.TunedModelSource? Type162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type163 { get; set; } + public global::Google.Gemini.Model? Type163 { get; set; } /// /// /// - public global::Google.Gemini.PromptFeedback? Type164 { get; set; } + public global::Google.Gemini.CreateFileResponse? Type164 { get; set; } /// /// /// - public global::Google.Gemini.PromptFeedbackBlockReason? Type165 { get; set; } + public global::Google.Gemini.GroundingPassageId? Type165 { get; set; } /// /// /// - public global::Google.Gemini.DynamicRetrievalConfig? Type166 { get; set; } + public global::Google.Gemini.InputConfig? Type166 { get; set; } /// /// /// - public global::Google.Gemini.DynamicRetrievalConfigMode? Type167 { get; set; } + public global::Google.Gemini.LanguageAuto? Type167 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type168 { get; set; } + public global::Google.Gemini.LanguageHints? Type168 { get; set; } /// /// /// - public global::Google.Gemini.FileState? Type169 { get; set; } + public global::System.Collections.Generic.IList? Type169 { get; set; } /// /// /// - public global::Google.Gemini.FileSource? Type170 { get; set; } + public global::System.Collections.Generic.IList? Type170 { get; set; } /// /// /// - public global::Google.Gemini.ListPermissionsResponse? Type171 { get; set; } + public global::Google.Gemini.GroundingChunkStringList? Type171 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type172 { get; set; } + public global::Google.Gemini.FunctionResponseBlob? Type172 { get; set; } /// /// /// - public global::Google.Gemini.Permission? Type173 { get; set; } + public global::System.Collections.Generic.IList? Type173 { get; set; } /// /// /// - public global::Google.Gemini.TransferOwnershipResponse? Type174 { get; set; } + public global::Google.Gemini.SemanticRetrieverChunk? Type174 { get; set; } /// /// /// - public global::Google.Gemini.SearchEntryPoint? Type175 { get; set; } + public global::Google.Gemini.GeneratedFileState? Type175 { get; set; } /// /// /// - public global::Google.Gemini.BatchEmbedContentsRequest? Type176 { get; set; } + public global::Google.Gemini.CreateEnvironmentRequest? Type176 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type177 { get; set; } + public global::Google.Gemini.CreateEnvironmentRequestNetworkMode? Type177 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type178 { get; set; } + public global::Google.Gemini.ComputerUse? Type178 { get; set; } /// /// /// - public global::Google.Gemini.ReviewSnippet? Type179 { get; set; } + public global::Google.Gemini.ComputerUseEnvironment? Type179 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCallingConfigMode? Type180 { get; set; } + public global::System.Collections.Generic.IList? Type180 { get; set; } /// /// /// - public global::Google.Gemini.HistoryConfig? Type181 { get; set; } + public global::Google.Gemini.ComputerUseDisabledSafetyPolicie? Type181 { get; set; } /// /// /// - public global::Google.Gemini.GoogleSearch? Type182 { get; set; } + public global::Google.Gemini.AttributionSourceId? Type182 { get; set; } /// /// /// - public global::Google.Gemini.Interval? Type183 { get; set; } + public global::Google.Gemini.RetrievedContext? Type183 { get; set; } /// /// /// - public global::Google.Gemini.SearchTypes? Type184 { get; set; } + public global::System.Collections.Generic.IList? Type184 { get; set; } /// /// /// - public global::Google.Gemini.Operation? Type185 { get; set; } + public global::Google.Gemini.GroundingChunkCustomMetadata? Type185 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatch? Type186 { get; set; } + public global::Google.Gemini.SourceType? Type186 { get; set; } /// /// /// - public global::Google.Gemini.InputEmbedContentConfig? Type187 { get; set; } + public global::System.Collections.Generic.Dictionary? Type187 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchStats? Type188 { get; set; } + public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Type188 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchOutput? Type189 { get; set; } + public global::Google.Gemini.InputEmbedContentConfig? Type189 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchState? Type190 { get; set; } + public global::Google.Gemini.InlinedEmbedContentRequests? Type190 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type191 { get; set; } + public global::System.Collections.Generic.IList? Type191 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type192 { get; set; } + public global::Google.Gemini.InlinedEmbedContentRequest? Type192 { get; set; } /// /// /// - public global::Google.Gemini.GoogleSearchRetrieval? Type193 { get; set; } + public global::Google.Gemini.FunctionCallingConfig? Type193 { get; set; } /// /// /// - public global::Google.Gemini.GoogleMaps? Type194 { get; set; } + public global::Google.Gemini.FunctionCallingConfigMode? Type194 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type195 { get; set; } + public global::Google.Gemini.FunctionDeclaration? Type195 { get; set; } /// /// /// - public global::Google.Gemini.McpServer? Type196 { get; set; } + public global::Google.Gemini.FunctionDeclarationBehavior? Type196 { get; set; } /// /// /// - public global::Google.Gemini.ComputerUse? Type197 { get; set; } + public global::Google.Gemini.EgressRule? Type197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type198 { get; set; } + public global::Google.Gemini.TranslationConfig? Type198 { get; set; } /// /// /// - public global::Google.Gemini.UrlContext? Type199 { get; set; } + public global::Google.Gemini.Maps? Type199 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type200 { get; set; } + public global::Google.Gemini.PlaceAnswerSources? Type200 { get; set; } /// /// /// - public global::Google.Gemini.InlinedResponse? Type201 { get; set; } + public global::System.Collections.Generic.IList? Type201 { get; set; } /// /// /// - public global::Google.Gemini.ComputerUseEnvironment? Type202 { get; set; } + public global::Google.Gemini.ReviewSnippet? Type202 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type203 { get; set; } + public global::Google.Gemini.CachedContentUsageMetadata? Type203 { get; set; } /// /// /// - public global::Google.Gemini.ComputerUseDisabledSafetyPolicie? Type204 { get; set; } + public global::Google.Gemini.StringList? Type204 { get; set; } /// /// /// - public global::Google.Gemini.CreateFileResponse? Type205 { get; set; } + public global::Google.Gemini.Image? Type205 { get; set; } /// /// /// - public global::Google.Gemini.ImageResponseFormatAspectRatio? Type206 { get; set; } + public global::Google.Gemini.AutomaticActivityDetection? Type206 { get; set; } /// /// /// - public global::Google.Gemini.ImageResponseFormatImageSize? Type207 { get; set; } + public global::Google.Gemini.AutomaticActivityDetectionStartOfSpeechSensitivity? Type207 { get; set; } /// /// /// - public global::Google.Gemini.ImageResponseFormatDelivery? Type208 { get; set; } + public global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity? Type208 { get; set; } /// /// /// - public global::Google.Gemini.ImageResponseFormatMimeType? Type209 { get; set; } + public global::Google.Gemini.VideoFileMetadata? Type209 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type210 { get; set; } + public global::Google.Gemini.GenerateContentBatchOutput? Type210 { get; set; } /// /// /// - public global::Google.Gemini.ModalityTokenCount? Type211 { get; set; } + public global::Google.Gemini.InlinedResponses? Type211 { get; set; } /// /// /// - public global::Google.Gemini.ModalityTokenCountModality? Type212 { get; set; } + public global::Google.Gemini.FileState? Type212 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponseBlob? Type213 { get; set; } + public global::Google.Gemini.FileSource? Type213 { get; set; } /// /// /// - public global::Google.Gemini.Environment? Type214 { get; set; } + public global::System.Collections.Generic.IList? Type214 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type215 { get; set; } + public global::Google.Gemini.TopCandidates? Type215 { get; set; } /// /// /// - public global::Google.Gemini.EnvironmentNetworkMode? Type216 { get; set; } + public global::System.Collections.Generic.IList? Type216 { get; set; } /// /// /// - public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? Type217 { get; set; } + public global::Google.Gemini.LogprobsResultCandidate? Type217 { get; set; } /// /// /// - public global::Google.Gemini.EnvironmentStatus? Type218 { get; set; } + public global::Google.Gemini.ListFilesResponse? Type218 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentRequests? Type219 { get; set; } + public global::System.Collections.Generic.IList? Type219 { get; set; } /// /// /// - public global::Google.Gemini.SchemaType? Type220 { get; set; } + public global::Google.Gemini.ListDocumentsResponse? Type220 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type221 { get; set; } + public global::System.Collections.Generic.IList? Type221 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type222 { get; set; } + public global::Google.Gemini.ToolResponseToolType? Type222 { get; set; } /// /// /// - public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Type223 { get; set; } + public global::Google.Gemini.RegisterFilesRequest? Type223 { get; set; } /// /// /// - public global::Google.Gemini.TransferOwnershipRequest? Type224 { get; set; } + public global::Google.Gemini.UrlContext? Type224 { get; set; } /// /// /// - public global::Google.Gemini.RegisterFilesRequest? Type225 { get; set; } + public global::Google.Gemini.Web? Type225 { get; set; } /// /// /// - public global::Google.Gemini.LanguageAuto? Type226 { get; set; } + public global::Google.Gemini.ResponseFormatConfig? Type226 { get; set; } /// /// /// - public global::Google.Gemini.SessionResumptionConfig? Type227 { get; set; } + public global::Google.Gemini.ImageResponseFormat? Type227 { get; set; } /// /// /// - public global::Google.Gemini.ContextWindowCompressionConfig? Type228 { get; set; } + public global::Google.Gemini.AudioResponseFormat? Type228 { get; set; } /// /// /// - public global::Google.Gemini.ImportFileRequest? Type229 { get; set; } + public global::Google.Gemini.ImageResponseFormatAspectRatio? Type229 { get; set; } /// /// /// - public global::Google.Gemini.ListEnvironmentsResponse? Type230 { get; set; } + public global::Google.Gemini.ImageResponseFormatMimeType? Type230 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type231 { get; set; } + public global::Google.Gemini.ImageResponseFormatImageSize? Type231 { get; set; } /// /// /// - public global::Google.Gemini.StreamableHttpTransport? Type232 { get; set; } + public global::Google.Gemini.ImageResponseFormatDelivery? Type232 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentResponse? Type233 { get; set; } + public global::Google.Gemini.GoogleMaps? Type233 { get; set; } /// /// /// - public global::Google.Gemini.UsageMetadata? Type234 { get; set; } + public global::Google.Gemini.BatchEmbedContentsRequest? Type234 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type235 { get; set; } + public global::System.Collections.Generic.IList? Type235 { get; set; } /// /// /// - public global::Google.Gemini.ModelStatus? Type236 { get; set; } + public global::Google.Gemini.EmbedContentBatchStats? Type236 { get; set; } /// /// /// - public global::Google.Gemini.BidiGenerateContentSetup? Type237 { get; set; } + public global::Google.Gemini.UsageMetadataServiceTier? Type237 { get; set; } /// /// /// - public global::Google.Gemini.TextResponseFormatMimeType? Type238 { get; set; } + public global::System.Collections.Generic.IList? Type238 { get; set; } /// /// /// - public global::Google.Gemini.TopCandidates? Type239 { get; set; } + public global::Google.Gemini.RealtimeInputConfigTurnCoverage? Type239 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type240 { get; set; } + public global::Google.Gemini.RealtimeInputConfigActivityHandling? Type240 { get; set; } /// /// /// - public global::Google.Gemini.Part? Type241 { get; set; } + public global::Google.Gemini.GenerationConfigMediaResolution? Type241 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecutionResult? Type242 { get; set; } + public global::Google.Gemini.ImageConfig? Type242 { get; set; } /// /// /// - public global::Google.Gemini.FileData? Type243 { get; set; } + public global::System.Collections.Generic.IList? Type243 { get; set; } /// /// /// - public global::Google.Gemini.RegisterFilesResponse? Type244 { get; set; } + public global::Google.Gemini.GenerationConfigResponseModalitie? Type244 { get; set; } /// /// /// - public global::Google.Gemini.GeneratedFileState? Type245 { get; set; } + public global::Google.Gemini.TransferOwnershipResponse? Type245 { get; set; } /// /// /// - public global::Google.Gemini.CreateEnvironmentRequest? Type246 { get; set; } + public global::Google.Gemini.EmbedContentBatch? Type246 { get; set; } /// /// /// - public global::Google.Gemini.CreateEnvironmentRequestNetworkMode? Type247 { get; set; } + public global::Google.Gemini.EmbedContentBatchState? Type247 { get; set; } /// /// /// - public global::Google.Gemini.ListTunedModelsResponse? Type248 { get; set; } + public global::Google.Gemini.CodeExecutionResultOutcome? Type248 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type249 { get; set; } + public global::Google.Gemini.PromptFeedbackBlockReason? Type249 { get; set; } /// /// /// - public global::Google.Gemini.ListCachedContentsResponse? Type250 { get; set; } + public global::Google.Gemini.WebSearch? Type250 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type251 { get; set; } + public global::Google.Gemini.Permission? Type251 { get; set; } /// /// /// - public global::Google.Gemini.WebSearch? Type252 { get; set; } + public global::Google.Gemini.PermissionRole? Type252 { get; set; } /// /// /// - public global::Google.Gemini.PermissionRole? Type253 { get; set; } + public global::Google.Gemini.PermissionGranteeType? Type253 { get; set; } /// /// /// - public global::Google.Gemini.PermissionGranteeType? Type254 { get; set; } + public global::System.Collections.Generic.IList? Type254 { get; set; } /// /// /// - public global::Google.Gemini.BatchStats? Type255 { get; set; } + public global::Google.Gemini.InlinedResponse? Type255 { get; set; } /// /// /// - public global::Google.Gemini.LatLng? Type256 { get; set; } + public global::Google.Gemini.CountTokensResponse? Type256 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type257 { get; set; } + public global::System.Collections.Generic.IList? Type257 { get; set; } /// /// /// - public global::Google.Gemini.AsyncBatchEmbedContentRequest? Type258 { get; set; } + public global::System.Collections.Generic.IList? Type258 { get; set; } /// /// /// - public global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport? Type259 { get; set; } + public global::Google.Gemini.GoogleSearchRetrieval? Type259 { get; set; } /// /// /// - public global::Google.Gemini.AuthToken? Type260 { get; set; } + public global::Google.Gemini.UrlMetadataUrlRetrievalStatus? Type260 { get; set; } /// /// /// - public global::Google.Gemini.ListOperationsResponse? Type261 { get; set; } + public global::System.Collections.Generic.IList? Type261 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type262 { get; set; } + public global::Google.Gemini.ListOperationsResponse? Type262 { get; set; } /// /// /// - public global::Google.Gemini.CustomLongRunningOperation? Type263 { get; set; } + public global::System.Collections.Generic.IList? Type263 { get; set; } /// /// /// - public global::Google.Gemini.SafetySettingCategory? Type264 { get; set; } + public global::System.Collections.Generic.IList? Type264 { get; set; } /// /// /// - public global::Google.Gemini.SafetySettingThreshold? Type265 { get; set; } + public global::Google.Gemini.CustomLongRunningOperation? Type265 { get; set; } /// /// /// - public global::Google.Gemini.UsageMetadataServiceTier? Type266 { get; set; } + public global::Google.Gemini.GenerateContentRequestServiceTier? Type266 { get; set; } /// /// /// - public global::Google.Gemini.Empty? Type267 { get; set; } + public global::Google.Gemini.ToolConfig? Type267 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecutionResultOutcome? Type268 { get; set; } + public global::System.Collections.Generic.IList? Type268 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type269 { get; set; } + public global::Google.Gemini.BatchStats? Type269 { get; set; } /// /// /// - public global::Google.Gemini.InputConfig? Type270 { get; set; } + public global::Google.Gemini.ListPermissionsResponse? Type270 { get; set; } /// /// /// - public global::Google.Gemini.BatchGenerateContentRequest? Type271 { get; set; } + public global::System.Collections.Generic.IList? Type271 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatch? Type272 { get; set; } + public global::Google.Gemini.ExecutableCodeLanguage? Type272 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type273 { get; set; } + public global::Google.Gemini.AsyncBatchEmbedContentRequest? Type273 { get; set; } /// /// /// - public global::Google.Gemini.ModelStatusModelStage? Type274 { get; set; } + public global::Google.Gemini.AudioResponseFormatDelivery? Type274 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatchState? Type275 { get; set; } + public global::Google.Gemini.AudioResponseFormatMimeType? Type275 { get; set; } /// /// /// - public global::Google.Gemini.CountTokensResponse? Type276 { get; set; } + public global::Google.Gemini.ListModelsResponse? Type276 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type277 { get; set; } + public global::System.Collections.Generic.IList? Type277 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type278 { get; set; } + public global::Google.Gemini.UploadToFileSearchStoreRequest? Type278 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type279 { get; set; } + public global::Google.Gemini.GenerateContentBatchState? Type279 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType0 { get; set; } + public global::System.Collections.Generic.List? ListType0 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType1 { get; set; } + public global::System.Collections.Generic.List? ListType1 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType2 { get; set; } + public global::System.Collections.Generic.List? ListType2 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType3 { get; set; } + public global::System.Collections.Generic.List? ListType3 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType4 { get; set; } + public global::System.Collections.Generic.List? ListType4 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType5 { get; set; } + public global::System.Collections.Generic.List? ListType5 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType6 { get; set; } + public global::System.Collections.Generic.List? ListType6 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType7 { get; set; } + public global::System.Collections.Generic.List? ListType7 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType8 { get; set; } + public global::System.Collections.Generic.List? ListType8 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType9 { get; set; } + public global::System.Collections.Generic.List? ListType9 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType10 { get; set; } + public global::System.Collections.Generic.List? ListType10 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType11 { get; set; } + public global::System.Collections.Generic.List? ListType11 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType12 { get; set; } + public global::System.Collections.Generic.List? ListType12 { get; set; } /// /// /// @@ -1205,7 +1205,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType14 { get; set; } + public global::System.Collections.Generic.List? ListType14 { get; set; } /// /// /// @@ -1213,119 +1213,119 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType16 { get; set; } + public global::System.Collections.Generic.List? ListType16 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType17 { get; set; } + public global::System.Collections.Generic.List? ListType17 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType18 { get; set; } + public global::System.Collections.Generic.List? ListType18 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType19 { get; set; } + public global::System.Collections.Generic.List? ListType19 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType20 { get; set; } + public global::System.Collections.Generic.List? ListType20 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType21 { get; set; } + public global::System.Collections.Generic.List? ListType21 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType22 { get; set; } + public global::System.Collections.Generic.List? ListType22 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType23 { get; set; } + public global::System.Collections.Generic.List? ListType23 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType24 { get; set; } + public global::System.Collections.Generic.List? ListType24 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType25 { get; set; } + public global::System.Collections.Generic.List? ListType25 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType26 { get; set; } + public global::System.Collections.Generic.List? ListType26 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType27 { get; set; } + public global::System.Collections.Generic.List? ListType27 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType28 { get; set; } + public global::System.Collections.Generic.List? ListType28 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType29 { get; set; } + public global::System.Collections.Generic.List? ListType29 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType30 { get; set; } + public global::System.Collections.Generic.List? ListType30 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType31 { get; set; } + public global::System.Collections.Generic.List? ListType31 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType32 { get; set; } + public global::System.Collections.Generic.List? ListType32 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType33 { get; set; } + public global::System.Collections.Generic.List? ListType33 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType34 { get; set; } + public global::System.Collections.Generic.List? ListType34 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType35 { get; set; } + public global::System.Collections.Generic.List? ListType35 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType36 { get; set; } + public global::System.Collections.Generic.List? ListType36 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType37 { get; set; } + public global::System.Collections.Generic.List? ListType37 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType38 { get; set; } + public global::System.Collections.Generic.List? ListType38 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType39 { get; set; } + public global::System.Collections.Generic.List? ListType39 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType40 { get; set; } + public global::System.Collections.Generic.List? ListType40 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType41 { get; set; } + public global::System.Collections.Generic.List? ListType41 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType42 { get; set; } + public global::System.Collections.Generic.List? ListType42 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType43 { get; set; } + public global::System.Collections.Generic.List? ListType43 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType44 { get; set; } + public global::System.Collections.Generic.List? ListType44 { get; set; } /// /// /// @@ -1333,14 +1333,14 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType46 { get; set; } + public global::System.Collections.Generic.List? ListType46 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType47 { get; set; } + public global::System.Collections.Generic.List? ListType47 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType48 { get; set; } + public global::System.Collections.Generic.List? ListType48 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioResponseFormat.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioResponseFormat.g.cs index 4a7c9257..ec74f8c3 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioResponseFormat.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioResponseFormat.g.cs @@ -8,13 +8,6 @@ namespace Google.Gemini /// public sealed partial class AudioResponseFormat { - /// - /// Optional. The MIME type of the audio output. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeJsonConverter))] - public global::Google.Gemini.AudioResponseFormatMimeType? MimeType { get; set; } - /// /// Optional. Sample rate in Hz. /// @@ -28,6 +21,13 @@ public sealed partial class AudioResponseFormat [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatDeliveryJsonConverter))] public global::Google.Gemini.AudioResponseFormatDelivery? Delivery { get; set; } + /// + /// Optional. The MIME type of the audio output. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.AudioResponseFormatMimeTypeJsonConverter))] + public global::Google.Gemini.AudioResponseFormatMimeType? MimeType { get; set; } + /// /// Optional. Bit rate in bits per second (bps). Only applicable for compressed formats (MP3, Opus). /// @@ -43,15 +43,15 @@ public sealed partial class AudioResponseFormat /// /// Initializes a new instance of the class. /// - /// - /// Optional. The MIME type of the audio output. - /// /// /// Optional. Sample rate in Hz. /// /// /// Optional. The delivery mode for the audio output. /// + /// + /// Optional. The MIME type of the audio output. + /// /// /// Optional. Bit rate in bits per second (bps). Only applicable for compressed formats (MP3, Opus). /// @@ -59,14 +59,14 @@ public sealed partial class AudioResponseFormat [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public AudioResponseFormat( - global::Google.Gemini.AudioResponseFormatMimeType? mimeType, int? sampleRate, global::Google.Gemini.AudioResponseFormatDelivery? delivery, + global::Google.Gemini.AudioResponseFormatMimeType? mimeType, int? bitRate) { - this.MimeType = mimeType; this.SampleRate = sampleRate; this.Delivery = delivery; + this.MimeType = mimeType; this.BitRate = bitRate; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioTranscriptionConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioTranscriptionConfig.g.cs index 2414e91d..ffecf4b2 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioTranscriptionConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AudioTranscriptionConfig.g.cs @@ -11,23 +11,11 @@ namespace Google.Gemini public sealed partial class AudioTranscriptionConfig { /// - /// Indicates the language of the audio should be automatically detected. + /// Optional. A list of phrases used for speech adaptation, which biases the ASR model to improve recognition of these specific terms. /// - [global::System.Text.Json.Serialization.JsonPropertyName("languageAuto")] + [global::System.Text.Json.Serialization.JsonPropertyName("adaptationPhrases")] [global::System.Obsolete("This property marked as deprecated.")] - public global::Google.Gemini.LanguageAuto? LanguageAuto { get; set; } - - /// - /// Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon). - /// - [global::System.Text.Json.Serialization.JsonPropertyName("customVocabulary")] - public global::System.Collections.Generic.IList? CustomVocabulary { get; set; } - - /// - /// Optional. Configures word-level timestamp generation. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("wordTimestamp")] - public bool? WordTimestamp { get; set; } + public global::System.Collections.Generic.IList? AdaptationPhrases { get; set; } /// /// Optional. Configures speaker diarization. @@ -36,11 +24,11 @@ public sealed partial class AudioTranscriptionConfig public bool? Diarization { get; set; } /// - /// Optional. A list of phrases used for speech adaptation, which biases the ASR model to improve recognition of these specific terms. + /// Indicates the language of the audio should be automatically detected. /// - [global::System.Text.Json.Serialization.JsonPropertyName("adaptationPhrases")] + [global::System.Text.Json.Serialization.JsonPropertyName("languageAuto")] [global::System.Obsolete("This property marked as deprecated.")] - public global::System.Collections.Generic.IList? AdaptationPhrases { get; set; } + public global::Google.Gemini.LanguageAuto? LanguageAuto { get; set; } /// /// Provides hints to the model about possible languages present in the audio. @@ -55,6 +43,18 @@ public sealed partial class AudioTranscriptionConfig [global::System.Text.Json.Serialization.JsonPropertyName("languageCodes")] public global::System.Collections.Generic.IList? LanguageCodes { get; set; } + /// + /// Optional. Configures word-level timestamp generation. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("wordTimestamp")] + public bool? WordTimestamp { get; set; } + + /// + /// Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon). + /// + [global::System.Text.Json.Serialization.JsonPropertyName("customVocabulary")] + public global::System.Collections.Generic.IList? CustomVocabulary { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -64,31 +64,31 @@ public sealed partial class AudioTranscriptionConfig /// /// Initializes a new instance of the class. /// - /// - /// Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon). - /// - /// - /// Optional. Configures word-level timestamp generation. - /// /// /// Optional. Configures speaker diarization. /// /// /// Optional. BCP-47 language codes providing hints about the languages present in the audio. If omitted or empty, defaults to automatic language detection. /// + /// + /// Optional. Configures word-level timestamp generation. + /// + /// + /// Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon). + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public AudioTranscriptionConfig( - global::System.Collections.Generic.IList? customVocabulary, - bool? wordTimestamp, bool? diarization, - global::System.Collections.Generic.IList? languageCodes) + global::System.Collections.Generic.IList? languageCodes, + bool? wordTimestamp, + global::System.Collections.Generic.IList? customVocabulary) { - this.CustomVocabulary = customVocabulary; - this.WordTimestamp = wordTimestamp; this.Diarization = diarization; this.LanguageCodes = languageCodes; + this.WordTimestamp = wordTimestamp; + this.CustomVocabulary = customVocabulary; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AuthToken.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AuthToken.g.cs index 8f13ac40..644f2e91 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AuthToken.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AuthToken.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class AuthToken { - /// - /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("bidiGenerateContentSetup")] - public global::Google.Gemini.BidiGenerateContentSetup? BidiGenerateContentSetup { get; set; } - /// /// Output only. Identifier. The token itself.
/// Included only in responses @@ -21,24 +15,18 @@ public sealed partial class AuthToken [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } - /// - /// Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("expireTime")] - public string? ExpireTime { get; set; } - - /// - /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("interactionId")] - public string? InteractionId { get; set; } - /// /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. /// [global::System.Text.Json.Serialization.JsonPropertyName("newSessionExpireTime")] public string? NewSessionExpireTime { get; set; } + /// + /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("fieldMask")] + public string? FieldMask { get; set; } + /// /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. /// @@ -46,10 +34,22 @@ public sealed partial class AuthToken public int? Uses { get; set; } /// - /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fieldMask")] - public string? FieldMask { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("bidiGenerateContentSetup")] + public global::Google.Gemini.BidiGenerateContentSetup? BidiGenerateContentSetup { get; set; } + + /// + /// Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("expireTime")] + public string? ExpireTime { get; set; } + + /// + /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("interactionId")] + public string? InteractionId { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -60,47 +60,47 @@ public sealed partial class AuthToken /// /// Initializes a new instance of the class. /// - /// - /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. - /// /// /// Output only. Identifier. The token itself.
/// Included only in responses /// - /// - /// Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future. - /// - /// - /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. - /// /// /// Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future. /// + /// + /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// /// /// Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1. /// - /// - /// Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection. + /// + /// Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages. + /// + /// + /// Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future. + /// + /// + /// Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public AuthToken( - global::Google.Gemini.BidiGenerateContentSetup? bidiGenerateContentSetup, string? name, - string? expireTime, - string? interactionId, string? newSessionExpireTime, + string? fieldMask, int? uses, - string? fieldMask) + global::Google.Gemini.BidiGenerateContentSetup? bidiGenerateContentSetup, + string? expireTime, + string? interactionId) { - this.BidiGenerateContentSetup = bidiGenerateContentSetup; this.Name = name; - this.ExpireTime = expireTime; - this.InteractionId = interactionId; this.NewSessionExpireTime = newSessionExpireTime; - this.Uses = uses; this.FieldMask = fieldMask; + this.Uses = uses; + this.BidiGenerateContentSetup = bidiGenerateContentSetup; + this.ExpireTime = expireTime; + this.InteractionId = interactionId; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AutomaticActivityDetection.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AutomaticActivityDetection.g.cs index 085d481d..368900ad 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AutomaticActivityDetection.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AutomaticActivityDetection.g.cs @@ -21,6 +21,12 @@ public sealed partial class AutomaticActivityDetection [global::System.Text.Json.Serialization.JsonPropertyName("silenceDurationMs")] public int? SilenceDurationMs { get; set; } + /// + /// Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("prefixPaddingMs")] + public int? PrefixPaddingMs { get; set; } + /// /// Optional. If enabled (the default), detected voice and text input count as activity. If disabled, the client must send activity signals. /// @@ -34,12 +40,6 @@ public sealed partial class AutomaticActivityDetection [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.AutomaticActivityDetectionEndOfSpeechSensitivityJsonConverter))] public global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity? EndOfSpeechSensitivity { get; set; } - /// - /// Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("prefixPaddingMs")] - public int? PrefixPaddingMs { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -55,30 +55,30 @@ public sealed partial class AutomaticActivityDetection /// /// Optional. The required duration of detected non-speech (e.g. silence) before end-of-speech is committed. The larger this value, the longer speech gaps can be without interrupting the user's activity but this will increase the model's latency. /// + /// + /// Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives. + /// /// /// Optional. If enabled (the default), detected voice and text input count as activity. If disabled, the client must send activity signals. /// /// /// Optional. Determines how likely detected speech is ended. /// - /// - /// Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public AutomaticActivityDetection( global::Google.Gemini.AutomaticActivityDetectionStartOfSpeechSensitivity? startOfSpeechSensitivity, int? silenceDurationMs, + int? prefixPaddingMs, bool? disabled, - global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity? endOfSpeechSensitivity, - int? prefixPaddingMs) + global::Google.Gemini.AutomaticActivityDetectionEndOfSpeechSensitivity? endOfSpeechSensitivity) { this.StartOfSpeechSensitivity = startOfSpeechSensitivity; this.SilenceDurationMs = silenceDurationMs; + this.PrefixPaddingMs = prefixPaddingMs; this.Disabled = disabled; this.EndOfSpeechSensitivity = endOfSpeechSensitivity; - this.PrefixPaddingMs = prefixPaddingMs; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchEmbedContentsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchEmbedContentsResponse.g.cs index 1bd6145a..7db4b5ba 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchEmbedContentsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchEmbedContentsResponse.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class BatchEmbedContentsResponse { + /// + /// Metadata on the usage of the embedding request. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] + public global::Google.Gemini.EmbeddingUsageMetadata? UsageMetadata { get; set; } + /// /// Output only. The embeddings for each request, in the same order as provided in the batch request.
/// Included only in responses @@ -15,12 +21,6 @@ public sealed partial class BatchEmbedContentsResponse [global::System.Text.Json.Serialization.JsonPropertyName("embeddings")] public global::System.Collections.Generic.IList? Embeddings { get; set; } - /// - /// Metadata on the usage of the embedding request. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] - public global::Google.Gemini.EmbeddingUsageMetadata? UsageMetadata { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -30,22 +30,22 @@ public sealed partial class BatchEmbedContentsResponse /// /// Initializes a new instance of the class. /// + /// + /// Metadata on the usage of the embedding request. + /// /// /// Output only. The embeddings for each request, in the same order as provided in the batch request.
/// Included only in responses /// - /// - /// Metadata on the usage of the embedding request. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BatchEmbedContentsResponse( - global::System.Collections.Generic.IList? embeddings, - global::Google.Gemini.EmbeddingUsageMetadata? usageMetadata) + global::Google.Gemini.EmbeddingUsageMetadata? usageMetadata, + global::System.Collections.Generic.IList? embeddings) { - this.Embeddings = embeddings; this.UsageMetadata = usageMetadata; + this.Embeddings = embeddings; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchStats.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchStats.g.cs index c5a0cdf3..20ecf84b 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchStats.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BatchStats.g.cs @@ -9,32 +9,32 @@ namespace Google.Gemini public sealed partial class BatchStats { /// - /// Output only. The number of requests that were successfully processed.
+ /// Output only. The number of requests that failed to be processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("successfulRequestCount")] - public string? SuccessfulRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] + public string? FailedRequestCount { get; set; } /// - /// Output only. The number of requests that are still pending processing.
+ /// Output only. The number of requests in the batch.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("pendingRequestCount")] - public string? PendingRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] + public string? RequestCount { get; set; } /// - /// Output only. The number of requests in the batch.
+ /// Output only. The number of requests that are still pending processing.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] - public string? RequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("pendingRequestCount")] + public string? PendingRequestCount { get; set; } /// - /// Output only. The number of requests that failed to be processed.
+ /// Output only. The number of requests that were successfully processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] - public string? FailedRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("successfulRequestCount")] + public string? SuccessfulRequestCount { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -45,35 +45,35 @@ public sealed partial class BatchStats /// /// Initializes a new instance of the class. /// - /// - /// Output only. The number of requests that were successfully processed.
- /// Included only in responses - /// - /// - /// Output only. The number of requests that are still pending processing.
+ /// + /// Output only. The number of requests that failed to be processed.
/// Included only in responses /// /// /// Output only. The number of requests in the batch.
/// Included only in responses /// - /// - /// Output only. The number of requests that failed to be processed.
+ /// + /// Output only. The number of requests that are still pending processing.
+ /// Included only in responses + /// + /// + /// Output only. The number of requests that were successfully processed.
/// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BatchStats( - string? successfulRequestCount, - string? pendingRequestCount, + string? failedRequestCount, string? requestCount, - string? failedRequestCount) + string? pendingRequestCount, + string? successfulRequestCount) { - this.SuccessfulRequestCount = successfulRequestCount; - this.PendingRequestCount = pendingRequestCount; - this.RequestCount = requestCount; this.FailedRequestCount = failedRequestCount; + this.RequestCount = requestCount; + this.PendingRequestCount = pendingRequestCount; + this.SuccessfulRequestCount = successfulRequestCount; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BidiGenerateContentSetup.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BidiGenerateContentSetup.g.cs index 74a8377c..3b73f173 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BidiGenerateContentSetup.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.BidiGenerateContentSetup.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class BidiGenerateContentSetup { /// - /// Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList? Tools { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] + public global::Google.Gemini.Content? SystemInstruction { get; set; } /// /// The audio transcription configuration. @@ -21,16 +21,10 @@ public sealed partial class BidiGenerateContentSetup public global::Google.Gemini.AudioTranscriptionConfig? OutputAudioTranscription { get; set; } /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("generationConfig")] - public global::Google.Gemini.GenerationConfig? GenerationConfig { get; set; } - - /// - /// Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages. + /// Enables context window compression — a mechanism for managing the model's context window so that it does not exceed a given length. /// - [global::System.Text.Json.Serialization.JsonPropertyName("sessionResumption")] - public global::Google.Gemini.SessionResumptionConfig? SessionResumption { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("contextWindowCompression")] + public global::Google.Gemini.ContextWindowCompressionConfig? ContextWindowCompression { get; set; } /// /// Required. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}` @@ -38,6 +32,12 @@ public sealed partial class BidiGenerateContentSetup [global::System.Text.Json.Serialization.JsonPropertyName("model")] public string? Model { get; set; } + /// + /// Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tools")] + public global::System.Collections.Generic.IList? Tools { get; set; } + /// /// History configuration. This message is included in the session configuration as `BidiGenerateContentSetup.history_config`. Configures the exchange of history messages. /// @@ -45,28 +45,28 @@ public sealed partial class BidiGenerateContentSetup public global::Google.Gemini.HistoryConfig? HistoryConfig { get; set; } /// - /// Configures the realtime input behavior in `BidiGenerateContent`. + /// Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages. /// - [global::System.Text.Json.Serialization.JsonPropertyName("realtimeInputConfig")] - public global::Google.Gemini.RealtimeInputConfig? RealtimeInputConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sessionResumption")] + public global::Google.Gemini.SessionResumptionConfig? SessionResumption { get; set; } /// - /// Enables context window compression — a mechanism for managing the model's context window so that it does not exceed a given length. + /// The audio transcription configuration. /// - [global::System.Text.Json.Serialization.JsonPropertyName("contextWindowCompression")] - public global::Google.Gemini.ContextWindowCompressionConfig? ContextWindowCompression { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("inputAudioTranscription")] + public global::Google.Gemini.AudioTranscriptionConfig? InputAudioTranscription { get; set; } /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] - public global::Google.Gemini.Content? SystemInstruction { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("generationConfig")] + public global::Google.Gemini.GenerationConfig? GenerationConfig { get; set; } /// - /// The audio transcription configuration. + /// Configures the realtime input behavior in `BidiGenerateContent`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("inputAudioTranscription")] - public global::Google.Gemini.AudioTranscriptionConfig? InputAudioTranscription { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("realtimeInputConfig")] + public global::Google.Gemini.RealtimeInputConfig? RealtimeInputConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -77,61 +77,61 @@ public sealed partial class BidiGenerateContentSetup /// /// Initializes a new instance of the class. /// - /// - /// Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// The audio transcription configuration. /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// - /// - /// Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages. + /// + /// Enables context window compression — a mechanism for managing the model's context window so that it does not exceed a given length. /// /// /// Required. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}` /// + /// + /// Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. + /// /// /// History configuration. This message is included in the session configuration as `BidiGenerateContentSetup.history_config`. Configures the exchange of history messages. /// - /// - /// Configures the realtime input behavior in `BidiGenerateContent`. - /// - /// - /// Enables context window compression — a mechanism for managing the model's context window so that it does not exceed a given length. - /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages. /// /// /// The audio transcription configuration. /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Configures the realtime input behavior in `BidiGenerateContent`. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BidiGenerateContentSetup( - global::System.Collections.Generic.IList? tools, + global::Google.Gemini.Content? systemInstruction, global::Google.Gemini.AudioTranscriptionConfig? outputAudioTranscription, - global::Google.Gemini.GenerationConfig? generationConfig, - global::Google.Gemini.SessionResumptionConfig? sessionResumption, + global::Google.Gemini.ContextWindowCompressionConfig? contextWindowCompression, string? model, + global::System.Collections.Generic.IList? tools, global::Google.Gemini.HistoryConfig? historyConfig, - global::Google.Gemini.RealtimeInputConfig? realtimeInputConfig, - global::Google.Gemini.ContextWindowCompressionConfig? contextWindowCompression, - global::Google.Gemini.Content? systemInstruction, - global::Google.Gemini.AudioTranscriptionConfig? inputAudioTranscription) + global::Google.Gemini.SessionResumptionConfig? sessionResumption, + global::Google.Gemini.AudioTranscriptionConfig? inputAudioTranscription, + global::Google.Gemini.GenerationConfig? generationConfig, + global::Google.Gemini.RealtimeInputConfig? realtimeInputConfig) { - this.Tools = tools; + this.SystemInstruction = systemInstruction; this.OutputAudioTranscription = outputAudioTranscription; - this.GenerationConfig = generationConfig; - this.SessionResumption = sessionResumption; + this.ContextWindowCompression = contextWindowCompression; this.Model = model; + this.Tools = tools; this.HistoryConfig = historyConfig; - this.RealtimeInputConfig = realtimeInputConfig; - this.ContextWindowCompression = contextWindowCompression; - this.SystemInstruction = systemInstruction; + this.SessionResumption = sessionResumption; this.InputAudioTranscription = inputAudioTranscription; + this.GenerationConfig = generationConfig; + this.RealtimeInputConfig = realtimeInputConfig; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Blob.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Blob.g.cs index 2f59c767..17a76eb9 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Blob.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Blob.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class Blob { - /// - /// Raw bytes for media formats. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("data")] - public byte[]? Data { get; set; } - /// /// The IANA standard MIME type of the source data. Examples of supported types: - Images: image/png, image/jpeg, image/jpg, image/webp, image/heic, image/heif, image/gif, image/avif - Audio: audio/*, video/audio/s16le, video/audio/wav - Video: video/* - Text: text/plain, text/html, text/css, text/javascript, text/x-typescript, text/csv, text/markdown, text/x-python, text/xml, text/rtf, video/text/timestamp - Applications: application/x-javascript, application/x-typescript, application/x-python-code, application/json, application/x-ipynb+json, application/rtf, application/pdf For additional context, see [Supported file formats](https://ai.google.dev/gemini-api/docs/file-input-methods#supported-content-types). // /// [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] public string? MimeType { get; set; } + /// + /// Raw bytes for media formats. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("data")] + public byte[]? Data { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class Blob /// /// Initializes a new instance of the class. /// - /// - /// Raw bytes for media formats. - /// /// /// The IANA standard MIME type of the source data. Examples of supported types: - Images: image/png, image/jpeg, image/jpg, image/webp, image/heic, image/heif, image/gif, image/avif - Audio: audio/*, video/audio/s16le, video/audio/wav - Video: video/* - Text: text/plain, text/html, text/css, text/javascript, text/x-typescript, text/csv, text/markdown, text/x-python, text/xml, text/rtf, video/text/timestamp - Applications: application/x-javascript, application/x-typescript, application/x-python-code, application/json, application/x-ipynb+json, application/rtf, application/pdf For additional context, see [Supported file formats](https://ai.google.dev/gemini-api/docs/file-input-methods#supported-content-types). // /// + /// + /// Raw bytes for media formats. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Blob( - byte[]? data, - string? mimeType) + string? mimeType, + byte[]? data) { - this.Data = data; this.MimeType = mimeType; + this.Data = data; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CachedContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CachedContent.g.cs index 00e54950..e694f791 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CachedContent.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CachedContent.g.cs @@ -9,30 +9,23 @@ namespace Google.Gemini public sealed partial class CachedContent { /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// Input only. New TTL for this resource, input only. /// - [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] - public global::Google.Gemini.Content? SystemInstruction { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("ttl")] + public string? Ttl { get; set; } /// - /// Output only. Creation time of the cache entry.
- /// Included only in responses + /// Optional. Input only. Immutable. The content to cache. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("contents")] + public global::System.Collections.Generic.IList? Contents { get; set; } /// - /// Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`
+ /// Output only. When the cache entry was last updated in UTC time.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } - - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// - [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// /// Metadata on the usage of the cached content. @@ -41,16 +34,11 @@ public sealed partial class CachedContent public global::Google.Gemini.CachedContentUsageMetadata? UsageMetadata { get; set; } /// - /// Optional. Input only. Immutable. The content to cache. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("contents")] - public global::System.Collections.Generic.IList? Contents { get; set; } - - /// - /// Input only. New TTL for this resource, input only. + /// Output only. Creation time of the cache entry.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("ttl")] - public string? Ttl { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. @@ -59,11 +47,29 @@ public sealed partial class CachedContent public string? ExpireTime { get; set; } /// - /// Output only. When the cache entry was last updated in UTC time.
+ /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] + public global::Google.Gemini.Content? SystemInstruction { get; set; } + + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } + + /// + /// Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response @@ -77,12 +83,6 @@ public sealed partial class CachedContent [global::System.Text.Json.Serialization.JsonPropertyName("toolConfig")] public global::Google.Gemini.ToolConfig? ToolConfig { get; set; } - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -92,74 +92,74 @@ public sealed partial class CachedContent /// /// Initializes a new instance of the class. /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// Input only. New TTL for this resource, input only. /// - /// - /// Output only. Creation time of the cache entry.
- /// Included only in responses + /// + /// Optional. Input only. Immutable. The content to cache. /// - /// - /// Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`
+ /// + /// Output only. When the cache entry was last updated in UTC time.
/// Included only in responses /// - /// - /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` - /// /// /// Metadata on the usage of the cached content. /// - /// - /// Optional. Input only. Immutable. The content to cache. - /// - /// - /// Input only. New TTL for this resource, input only. + /// + /// Output only. Creation time of the cache entry.
+ /// Included only in responses /// /// /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// - /// - /// Output only. When the cache entry was last updated in UTC time.
+ /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// + /// + /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. + /// + /// + /// Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`
/// Included only in responses /// + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` + /// /// /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CachedContent( - global::Google.Gemini.Content? systemInstruction, + string? ttl, + global::System.Collections.Generic.IList? contents, + string? updateTime, + global::Google.Gemini.CachedContentUsageMetadata? usageMetadata, string? createTime, + string? expireTime, + global::Google.Gemini.Content? systemInstruction, + string? displayName, string? name, string? model, - global::Google.Gemini.CachedContentUsageMetadata? usageMetadata, - global::System.Collections.Generic.IList? contents, - string? ttl, - string? expireTime, - string? updateTime, global::System.Collections.Generic.IList? tools, - global::Google.Gemini.ToolConfig? toolConfig, - string? displayName) + global::Google.Gemini.ToolConfig? toolConfig) { - this.SystemInstruction = systemInstruction; + this.Ttl = ttl; + this.Contents = contents; + this.UpdateTime = updateTime; + this.UsageMetadata = usageMetadata; this.CreateTime = createTime; + this.ExpireTime = expireTime; + this.SystemInstruction = systemInstruction; + this.DisplayName = displayName; this.Name = name; this.Model = model; - this.UsageMetadata = usageMetadata; - this.Contents = contents; - this.Ttl = ttl; - this.ExpireTime = expireTime; - this.UpdateTime = updateTime; this.Tools = tools; this.ToolConfig = toolConfig; - this.DisplayName = displayName; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Candidate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Candidate.g.cs index 8ce9228e..26465c17 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Candidate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Candidate.g.cs @@ -9,43 +9,51 @@ namespace Google.Gemini public sealed partial class Candidate { /// - /// Output only. Index of the candidate in the list of response candidates.
+ /// Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("index")] - public int? Index { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("finishMessage")] + public string? FinishMessage { get; set; } /// - /// Output only. Token count for this candidate.
+ /// Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("tokenCount")] - public int? TokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("groundingAttributions")] + public global::System.Collections.Generic.IList? GroundingAttributions { get; set; } /// - /// Logprobs Result + /// Output only. Index of the candidate in the list of response candidates.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("logprobsResult")] - public global::Google.Gemini.LogprobsResult? LogprobsResult { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("index")] + public int? Index { get; set; } /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// Metadata returned to client when grounding is enabled. /// - [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::Google.Gemini.Content? Content { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("groundingMetadata")] + public global::Google.Gemini.GroundingMetadata? GroundingMetadata { get; set; } /// - /// Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.
- /// Included only in responses + /// Metadata related to url context retrieval tool. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("finishMessage")] - public string? FinishMessage { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("urlContextMetadata")] + public global::Google.Gemini.UrlContextMetadata? UrlContextMetadata { get; set; } /// - /// Metadata returned to client when grounding is enabled. + /// Logprobs Result /// - [global::System.Text.Json.Serialization.JsonPropertyName("groundingMetadata")] - public global::Google.Gemini.GroundingMetadata? GroundingMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("logprobsResult")] + public global::Google.Gemini.LogprobsResult? LogprobsResult { get; set; } + + /// + /// Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("finishReason")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter))] + public global::Google.Gemini.CandidateFinishReason? FinishReason { get; set; } /// /// List of ratings for the safety of a response candidate. There is at most one rating per category. @@ -60,32 +68,24 @@ public sealed partial class Candidate public global::Google.Gemini.CitationMetadata? CitationMetadata { get; set; } /// - /// Output only. Average log probability score of the candidate.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("avgLogprobs")] - public double? AvgLogprobs { get; set; } - - /// - /// Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
+ /// Output only. Token count for this candidate.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("groundingAttributions")] - public global::System.Collections.Generic.IList? GroundingAttributions { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tokenCount")] + public int? TokenCount { get; set; } /// - /// Metadata related to url context retrieval tool. + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - [global::System.Text.Json.Serialization.JsonPropertyName("urlContextMetadata")] - public global::Google.Gemini.UrlContextMetadata? UrlContextMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("content")] + public global::Google.Gemini.Content? Content { get; set; } /// - /// Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.
+ /// Output only. Average log probability score of the candidate.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("finishReason")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter))] - public global::Google.Gemini.CandidateFinishReason? FinishReason { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("avgLogprobs")] + public double? AvgLogprobs { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -96,77 +96,77 @@ public sealed partial class Candidate /// /// Initializes a new instance of the class. /// + /// + /// Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.
+ /// Included only in responses + /// + /// + /// Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
+ /// Included only in responses + /// /// /// Output only. Index of the candidate in the list of response candidates.
/// Included only in responses /// - /// - /// Output only. Token count for this candidate.
- /// Included only in responses + /// + /// Metadata returned to client when grounding is enabled. + /// + /// + /// Metadata related to url context retrieval tool. /// /// /// Logprobs Result /// - /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. - /// - /// - /// Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.
+ /// + /// Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.
/// Included only in responses /// - /// - /// Metadata returned to client when grounding is enabled. - /// /// /// List of ratings for the safety of a response candidate. There is at most one rating per category. /// /// /// A collection of source attributions for a piece of content. /// - /// - /// Output only. Average log probability score of the candidate.
- /// Included only in responses - /// - /// - /// Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
+ /// + /// Output only. Token count for this candidate.
/// Included only in responses /// - /// - /// Metadata related to url context retrieval tool. + /// + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - /// - /// Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.
+ /// + /// Output only. Average log probability score of the candidate.
/// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Candidate( - int? index, - int? tokenCount, - global::Google.Gemini.LogprobsResult? logprobsResult, - global::Google.Gemini.Content? content, string? finishMessage, + global::System.Collections.Generic.IList? groundingAttributions, + int? index, global::Google.Gemini.GroundingMetadata? groundingMetadata, + global::Google.Gemini.UrlContextMetadata? urlContextMetadata, + global::Google.Gemini.LogprobsResult? logprobsResult, + global::Google.Gemini.CandidateFinishReason? finishReason, global::System.Collections.Generic.IList? safetyRatings, global::Google.Gemini.CitationMetadata? citationMetadata, - double? avgLogprobs, - global::System.Collections.Generic.IList? groundingAttributions, - global::Google.Gemini.UrlContextMetadata? urlContextMetadata, - global::Google.Gemini.CandidateFinishReason? finishReason) + int? tokenCount, + global::Google.Gemini.Content? content, + double? avgLogprobs) { - this.Index = index; - this.TokenCount = tokenCount; - this.LogprobsResult = logprobsResult; - this.Content = content; this.FinishMessage = finishMessage; + this.GroundingAttributions = groundingAttributions; + this.Index = index; this.GroundingMetadata = groundingMetadata; + this.UrlContextMetadata = urlContextMetadata; + this.LogprobsResult = logprobsResult; + this.FinishReason = finishReason; this.SafetyRatings = safetyRatings; this.CitationMetadata = citationMetadata; + this.TokenCount = tokenCount; + this.Content = content; this.AvgLogprobs = avgLogprobs; - this.GroundingAttributions = groundingAttributions; - this.UrlContextMetadata = urlContextMetadata; - this.FinishReason = finishReason; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CitationSource.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CitationSource.g.cs index ae8f5c6f..7147c286 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CitationSource.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CitationSource.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class CitationSource { /// - /// Optional. End of the attributed segment, exclusive. + /// Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. /// - [global::System.Text.Json.Serialization.JsonPropertyName("endIndex")] - public int? EndIndex { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("startIndex")] + public int? StartIndex { get; set; } /// /// Optional. URI that is attributed as a source for a portion of the text. @@ -20,18 +20,18 @@ public sealed partial class CitationSource [global::System.Text.Json.Serialization.JsonPropertyName("uri")] public string? Uri { get; set; } - /// - /// Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("startIndex")] - public int? StartIndex { get; set; } - /// /// Optional. License for the GitHub project that is attributed as a source for segment. License info is required for code citations. /// [global::System.Text.Json.Serialization.JsonPropertyName("license")] public string? License { get; set; } + /// + /// Optional. End of the attributed segment, exclusive. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("endIndex")] + public int? EndIndex { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -41,31 +41,31 @@ public sealed partial class CitationSource /// /// Initializes a new instance of the class. /// - /// - /// Optional. End of the attributed segment, exclusive. + /// + /// Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. /// /// /// Optional. URI that is attributed as a source for a portion of the text. /// - /// - /// Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. - /// /// /// Optional. License for the GitHub project that is attributed as a source for segment. License info is required for code citations. /// + /// + /// Optional. End of the attributed segment, exclusive. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CitationSource( - int? endIndex, - string? uri, int? startIndex, - string? license) + string? uri, + string? license, + int? endIndex) { - this.EndIndex = endIndex; - this.Uri = uri; this.StartIndex = startIndex; + this.Uri = uri; this.License = license; + this.EndIndex = endIndex; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CodeExecutionResult.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CodeExecutionResult.g.cs index a1771d2d..857028fb 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CodeExecutionResult.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CodeExecutionResult.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class CodeExecutionResult { - /// - /// Optional. Contains stdout when code execution is successful, stderr or other description otherwise. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("output")] - public string? Output { get; set; } - /// /// Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id. /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] public string? Id { get; set; } + /// + /// Optional. Contains stdout when code execution is successful, stderr or other description otherwise. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("output")] + public string? Output { get; set; } + /// /// Required. Outcome of the code execution. /// @@ -36,12 +36,12 @@ public sealed partial class CodeExecutionResult /// /// Initializes a new instance of the class. /// - /// - /// Optional. Contains stdout when code execution is successful, stderr or other description otherwise. - /// /// /// Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id. /// + /// + /// Optional. Contains stdout when code execution is successful, stderr or other description otherwise. + /// /// /// Required. Outcome of the code execution. /// @@ -49,12 +49,12 @@ public sealed partial class CodeExecutionResult [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CodeExecutionResult( - string? output, string? id, + string? output, global::Google.Gemini.CodeExecutionResultOutcome? outcome) { - this.Output = output; this.Id = id; + this.Output = output; this.Outcome = outcome; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ComputerUse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ComputerUse.g.cs index 7caa3fd8..50391f96 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ComputerUse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ComputerUse.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class ComputerUse { - /// - /// Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("excludedPredefinedFunctions")] - public global::System.Collections.Generic.IList? ExcludedPredefinedFunctions { get; set; } - /// /// Required. The environment being operated. /// @@ -22,10 +16,10 @@ public sealed partial class ComputerUse public global::Google.Gemini.ComputerUseEnvironment? Environment { get; set; } /// - /// Optional. Disabled safety policies for computer use. + /// Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. /// - [global::System.Text.Json.Serialization.JsonPropertyName("disabledSafetyPolicies")] - public global::System.Collections.Generic.IList? DisabledSafetyPolicies { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("excludedPredefinedFunctions")] + public global::System.Collections.Generic.IList? ExcludedPredefinedFunctions { get; set; } /// /// Optional. Whether enable the prompt injection detection check on computer-use request. @@ -33,6 +27,12 @@ public sealed partial class ComputerUse [global::System.Text.Json.Serialization.JsonPropertyName("enablePromptInjectionDetection")] public bool? EnablePromptInjectionDetection { get; set; } + /// + /// Optional. Disabled safety policies for computer use. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("disabledSafetyPolicies")] + public global::System.Collections.Generic.IList? DisabledSafetyPolicies { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -42,31 +42,31 @@ public sealed partial class ComputerUse /// /// Initializes a new instance of the class. /// - /// - /// Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. - /// /// /// Required. The environment being operated. /// - /// - /// Optional. Disabled safety policies for computer use. + /// + /// Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. /// /// /// Optional. Whether enable the prompt injection detection check on computer-use request. /// + /// + /// Optional. Disabled safety policies for computer use. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ComputerUse( - global::System.Collections.Generic.IList? excludedPredefinedFunctions, global::Google.Gemini.ComputerUseEnvironment? environment, - global::System.Collections.Generic.IList? disabledSafetyPolicies, - bool? enablePromptInjectionDetection) + global::System.Collections.Generic.IList? excludedPredefinedFunctions, + bool? enablePromptInjectionDetection, + global::System.Collections.Generic.IList? disabledSafetyPolicies) { - this.ExcludedPredefinedFunctions = excludedPredefinedFunctions; this.Environment = environment; - this.DisabledSafetyPolicies = disabledSafetyPolicies; + this.ExcludedPredefinedFunctions = excludedPredefinedFunctions; this.EnablePromptInjectionDetection = enablePromptInjectionDetection; + this.DisabledSafetyPolicies = disabledSafetyPolicies; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ContextWindowCompressionConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ContextWindowCompressionConfig.g.cs index a2085593..fc2e5225 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ContextWindowCompressionConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ContextWindowCompressionConfig.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ContextWindowCompressionConfig { - /// - /// The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("triggerTokens")] - public string? TriggerTokens { get; set; } - /// /// The SlidingWindow method operates by discarding content at the beginning of the context window. The resulting context will always begin at the start of a USER role turn. System instructions and any `BidiGenerateContentSetup.prefix_turns` will always remain at the beginning of the result. /// [global::System.Text.Json.Serialization.JsonPropertyName("slidingWindow")] public global::Google.Gemini.SlidingWindow? SlidingWindow { get; set; } + /// + /// The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("triggerTokens")] + public string? TriggerTokens { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ContextWindowCompressionConfig /// /// Initializes a new instance of the class. /// - /// - /// The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response. - /// /// /// The SlidingWindow method operates by discarding content at the beginning of the context window. The resulting context will always begin at the start of a USER role turn. System instructions and any `BidiGenerateContentSetup.prefix_turns` will always remain at the beginning of the result. /// + /// + /// The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ContextWindowCompressionConfig( - string? triggerTokens, - global::Google.Gemini.SlidingWindow? slidingWindow) + global::Google.Gemini.SlidingWindow? slidingWindow, + string? triggerTokens) { - this.TriggerTokens = triggerTokens; this.SlidingWindow = slidingWindow; + this.TriggerTokens = triggerTokens; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Corpus.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Corpus.g.cs index 015de5c2..cd6f9195 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Corpus.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Corpus.g.cs @@ -9,11 +9,17 @@ namespace Google.Gemini public sealed partial class Corpus { /// - /// Output only. The Timestamp of when the `Corpus` was created.
+ /// Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } + + /// + /// Output only. The Timestamp of when the `Corpus` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// /// Output only. Immutable. Identifier. The `Corpus` resource name. The ID (name excluding the "corpora/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `corpora/my-awesome-corpora-123a456b789c`
@@ -23,17 +29,11 @@ public sealed partial class Corpus public string? Name { get; set; } /// - /// Output only. The Timestamp of when the `Corpus` was last updated.
+ /// Output only. The Timestamp of when the `Corpus` was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } - - /// - /// Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -44,34 +44,34 @@ public sealed partial class Corpus /// /// Initializes a new instance of the class. /// - /// - /// Output only. The Timestamp of when the `Corpus` was created.
+ /// + /// Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" + /// + /// + /// Output only. The Timestamp of when the `Corpus` was last updated.
/// Included only in responses /// /// /// Output only. Immutable. Identifier. The `Corpus` resource name. The ID (name excluding the "corpora/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `corpora/my-awesome-corpora-123a456b789c`
/// Included only in responses /// - /// - /// Output only. The Timestamp of when the `Corpus` was last updated.
+ /// + /// Output only. The Timestamp of when the `Corpus` was created.
/// Included only in responses /// - /// - /// Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Corpus( - string? createTime, - string? name, + string? displayName, string? updateTime, - string? displayName) + string? name, + string? createTime) { - this.CreateTime = createTime; - this.Name = name; - this.UpdateTime = updateTime; this.DisplayName = displayName; + this.UpdateTime = updateTime; + this.Name = name; + this.CreateTime = createTime; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CountTokensResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CountTokensResponse.g.cs index e3a55d17..b4caf241 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CountTokensResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CountTokensResponse.g.cs @@ -8,13 +8,6 @@ namespace Google.Gemini /// public sealed partial class CountTokensResponse { - /// - /// Output only. List of modalities that were processed in the cached content.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("cacheTokensDetails")] - public global::System.Collections.Generic.IList? CacheTokensDetails { get; set; } - /// /// The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative. /// @@ -34,6 +27,13 @@ public sealed partial class CountTokensResponse [global::System.Text.Json.Serialization.JsonPropertyName("promptTokensDetails")] public global::System.Collections.Generic.IList? PromptTokensDetails { get; set; } + /// + /// Output only. List of modalities that were processed in the cached content.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("cacheTokensDetails")] + public global::System.Collections.Generic.IList? CacheTokensDetails { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -43,10 +43,6 @@ public sealed partial class CountTokensResponse /// /// Initializes a new instance of the class. /// - /// - /// Output only. List of modalities that were processed in the cached content.
- /// Included only in responses - /// /// /// The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative. /// @@ -57,19 +53,23 @@ public sealed partial class CountTokensResponse /// Output only. List of modalities that were processed in the request input.
/// Included only in responses /// + /// + /// Output only. List of modalities that were processed in the cached content.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CountTokensResponse( - global::System.Collections.Generic.IList? cacheTokensDetails, int? totalTokens, int? cachedContentTokenCount, - global::System.Collections.Generic.IList? promptTokensDetails) + global::System.Collections.Generic.IList? promptTokensDetails, + global::System.Collections.Generic.IList? cacheTokensDetails) { - this.CacheTokensDetails = cacheTokensDetails; this.TotalTokens = totalTokens; this.CachedContentTokenCount = cachedContentTokenCount; this.PromptTokensDetails = promptTokensDetails; + this.CacheTokensDetails = cacheTokensDetails; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CreateEnvironmentRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CreateEnvironmentRequest.g.cs index 1a88e7f8..75907f85 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CreateEnvironmentRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CreateEnvironmentRequest.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class CreateEnvironmentRequest { + /// + /// Network egress configuration for the environment. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("networkAllowlist")] + public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? NetworkAllowlist { get; set; } + /// /// Sources to be mounted into the environment. /// @@ -21,12 +27,6 @@ public sealed partial class CreateEnvironmentRequest [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.CreateEnvironmentRequestNetworkModeJsonConverter))] public global::Google.Gemini.CreateEnvironmentRequestNetworkMode? NetworkMode { get; set; } - /// - /// Network egress configuration for the environment. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("networkAllowlist")] - public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? NetworkAllowlist { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -36,26 +36,26 @@ public sealed partial class CreateEnvironmentRequest /// /// Initializes a new instance of the class. /// + /// + /// Network egress configuration for the environment. + /// /// /// Sources to be mounted into the environment. /// /// /// Network egress mode. /// - /// - /// Network egress configuration for the environment. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CreateEnvironmentRequest( + global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist, global::System.Collections.Generic.IList? sources, - global::Google.Gemini.CreateEnvironmentRequestNetworkMode? networkMode, - global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist) + global::Google.Gemini.CreateEnvironmentRequestNetworkMode? networkMode) { + this.NetworkAllowlist = networkAllowlist; this.Sources = sources; this.NetworkMode = networkMode; - this.NetworkAllowlist = networkAllowlist; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomLongRunningOperation.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomLongRunningOperation.g.cs index d00d4ae9..0e2388f0 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomLongRunningOperation.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomLongRunningOperation.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class CustomLongRunningOperation { + /// + /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public object? Response { get; set; } + /// /// The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. /// @@ -15,10 +21,10 @@ public sealed partial class CustomLongRunningOperation public string? Name { get; set; } /// - /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. /// - [global::System.Text.Json.Serialization.JsonPropertyName("done")] - public bool? Done { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] + public object? Metadata { get; set; } /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). @@ -27,16 +33,10 @@ public sealed partial class CustomLongRunningOperation public global::Google.Gemini.Status? Error { get; set; } /// - /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - public object? Metadata { get; set; } - - /// - /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. + /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public object? Response { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("done")] + public bool? Done { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -47,36 +47,36 @@ public sealed partial class CustomLongRunningOperation /// /// Initializes a new instance of the class. /// + /// + /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. + /// /// /// The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. /// - /// - /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// + /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. /// /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// - /// - /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. - /// - /// - /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. + /// + /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CustomLongRunningOperation( + object? response, string? name, - bool? done, - global::Google.Gemini.Status? error, object? metadata, - object? response) + global::Google.Gemini.Status? error, + bool? done) { + this.Response = response; this.Name = name; - this.Done = done; - this.Error = error; this.Metadata = metadata; - this.Response = response; + this.Error = error; + this.Done = done; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomMetadata.g.cs index 996fb034..86f89125 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.CustomMetadata.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class CustomMetadata { + /// + /// The numeric value of the metadata to store. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("numericValue")] + public float? NumericValue { get; set; } + /// /// The string value of the metadata to store. /// @@ -26,12 +32,6 @@ public sealed partial class CustomMetadata [global::System.Text.Json.Serialization.JsonPropertyName("stringListValue")] public global::Google.Gemini.StringList? StringListValue { get; set; } - /// - /// The numeric value of the metadata to store. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("numericValue")] - public float? NumericValue { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -41,6 +41,9 @@ public sealed partial class CustomMetadata /// /// Initializes a new instance of the class. /// + /// + /// The numeric value of the metadata to store. + /// /// /// The string value of the metadata to store. /// @@ -50,22 +53,19 @@ public sealed partial class CustomMetadata /// /// User provided string values assigned to a single metadata key. /// - /// - /// The numeric value of the metadata to store. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CustomMetadata( + float? numericValue, string? stringValue, string? key, - global::Google.Gemini.StringList? stringListValue, - float? numericValue) + global::Google.Gemini.StringList? stringListValue) { + this.NumericValue = numericValue; this.StringValue = stringValue; this.Key = key; this.StringListValue = stringListValue; - this.NumericValue = numericValue; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Document.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Document.g.cs index bc29d2be..bae52259 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Document.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Document.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class Document { + /// + /// Immutable. Identifier. The `Document` resource name. The ID (name excluding the "fileSearchStores/*/documents/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } + /// /// Output only. The Timestamp of when the `Document` was created.
/// Included only in responses @@ -23,31 +29,31 @@ public sealed partial class Document public string? SizeBytes { get; set; } /// - /// Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`. + /// Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: "Semantic Retriever Documentation" /// - [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] - public global::System.Collections.Generic.IList? CustomMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } /// - /// Output only. Current state of the `Document`.
+ /// Output only. The Timestamp of when the `Document` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.DocumentStateJsonConverter))] - public global::Google.Gemini.DocumentState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Immutable. Identifier. The `Document` resource name. The ID (name excluding the "fileSearchStores/*/documents/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c` + /// Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] + public global::System.Collections.Generic.IList? CustomMetadata { get; set; } /// - /// Output only. The Timestamp of when the `Document` was last updated.
+ /// Output only. Current state of the `Document`.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.DocumentStateJsonConverter))] + public global::Google.Gemini.DocumentState? State { get; set; } /// /// Output only. The mime type of the Document.
@@ -56,12 +62,6 @@ public sealed partial class Document [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] public string? MimeType { get; set; } - /// - /// Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: "Semantic Retriever Documentation" - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -71,6 +71,9 @@ public sealed partial class Document /// /// Initializes a new instance of the class. /// + /// + /// Immutable. Identifier. The `Document` resource name. The ID (name excluding the "fileSearchStores/*/documents/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c` + /// /// /// Output only. The Timestamp of when the `Document` was created.
/// Included only in responses @@ -79,6 +82,13 @@ public sealed partial class Document /// Output only. The size of raw bytes ingested into the Document.
/// Included only in responses /// + /// + /// Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: "Semantic Retriever Documentation" + /// + /// + /// Output only. The Timestamp of when the `Document` was last updated.
+ /// Included only in responses + /// /// /// Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`. /// @@ -86,41 +96,31 @@ public sealed partial class Document /// Output only. Current state of the `Document`.
/// Included only in responses /// - /// - /// Immutable. Identifier. The `Document` resource name. The ID (name excluding the "fileSearchStores/*/documents/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c` - /// - /// - /// Output only. The Timestamp of when the `Document` was last updated.
- /// Included only in responses - /// /// /// Output only. The mime type of the Document.
/// Included only in responses /// - /// - /// Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: "Semantic Retriever Documentation" - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Document( + string? name, string? createTime, string? sizeBytes, + string? displayName, + string? updateTime, global::System.Collections.Generic.IList? customMetadata, global::Google.Gemini.DocumentState? state, - string? name, - string? updateTime, - string? mimeType, - string? displayName) + string? mimeType) { + this.Name = name; this.CreateTime = createTime; this.SizeBytes = sizeBytes; + this.DisplayName = displayName; + this.UpdateTime = updateTime; this.CustomMetadata = customMetadata; this.State = state; - this.Name = name; - this.UpdateTime = updateTime; this.MimeType = mimeType; - this.DisplayName = displayName; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.DynamicRetrievalConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.DynamicRetrievalConfig.g.cs index c5176056..18d7176e 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.DynamicRetrievalConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.DynamicRetrievalConfig.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class DynamicRetrievalConfig { + /// + /// The threshold to be used in dynamic retrieval. If not set, a system default value is used. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("dynamicThreshold")] + public float? DynamicThreshold { get; set; } + /// /// The mode of the predictor to be used in dynamic retrieval. /// @@ -15,12 +21,6 @@ public sealed partial class DynamicRetrievalConfig [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeJsonConverter))] public global::Google.Gemini.DynamicRetrievalConfigMode? Mode { get; set; } - /// - /// The threshold to be used in dynamic retrieval. If not set, a system default value is used. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("dynamicThreshold")] - public float? DynamicThreshold { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -30,21 +30,21 @@ public sealed partial class DynamicRetrievalConfig /// /// Initializes a new instance of the class. /// - /// - /// The mode of the predictor to be used in dynamic retrieval. - /// /// /// The threshold to be used in dynamic retrieval. If not set, a system default value is used. /// + /// + /// The mode of the predictor to be used in dynamic retrieval. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public DynamicRetrievalConfig( - global::Google.Gemini.DynamicRetrievalConfigMode? mode, - float? dynamicThreshold) + float? dynamicThreshold, + global::Google.Gemini.DynamicRetrievalConfigMode? mode) { - this.Mode = mode; this.DynamicThreshold = dynamicThreshold; + this.Mode = mode; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EgressRule.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EgressRule.g.cs index a81ad4cf..b9d5bebe 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EgressRule.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EgressRule.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class EgressRule { - /// - /// The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("domain")] - public string? Domain { get; set; } - /// /// Headers to inject into requests matching this rule. Key: header name (e.g., "Authorization"). Value: header value (e.g., "Bearer your-token"). /// [global::System.Text.Json.Serialization.JsonPropertyName("transform")] public global::System.Collections.Generic.Dictionary? Transform { get; set; } + /// + /// The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("domain")] + public string? Domain { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class EgressRule /// /// Initializes a new instance of the class. /// - /// - /// The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains. - /// /// /// Headers to inject into requests matching this rule. Key: header name (e.g., "Authorization"). Value: header value (e.g., "Bearer your-token"). /// + /// + /// The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EgressRule( - string? domain, - global::System.Collections.Generic.Dictionary? transform) + global::System.Collections.Generic.Dictionary? transform, + string? domain) { - this.Domain = domain; this.Transform = transform; + this.Domain = domain; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatch.g.cs index b16fc3e5..e1f23fdc 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatch.g.cs @@ -9,11 +9,17 @@ namespace Google.Gemini public sealed partial class EmbedContentBatch { /// - /// Output only. The time at which the batch was last updated.
+ /// Required. The user-defined name of this batch. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } + + /// + /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// Configures the input to the batch request. @@ -21,18 +27,6 @@ public sealed partial class EmbedContentBatch [global::System.Text.Json.Serialization.JsonPropertyName("inputConfig")] public global::Google.Gemini.InputEmbedContentConfig? InputConfig { get; set; } - /// - /// Required. The user-defined name of this batch. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } - - /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("priority")] - public string? Priority { get; set; } - /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// @@ -40,17 +34,25 @@ public sealed partial class EmbedContentBatch public string? Model { get; set; } /// - /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
+ /// Output only. The time at which the batch processing completed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] + public string? EndTime { get; set; } /// - /// Stats about the batch. + /// Output only. The state of the batch.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] - public global::Google.Gemini.EmbedContentBatchStats? BatchStats { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter))] + public global::Google.Gemini.EmbedContentBatchState? State { get; set; } + + /// + /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("priority")] + public string? Priority { get; set; } /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. @@ -59,26 +61,24 @@ public sealed partial class EmbedContentBatch public global::Google.Gemini.EmbedContentBatchOutput? Output { get; set; } /// - /// Output only. The time at which the batch was created.
+ /// Output only. The time at which the batch was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Output only. The time at which the batch processing completed.
+ /// Output only. The time at which the batch was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] - public string? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// - /// Output only. The state of the batch.
- /// Included only in responses + /// Stats about the batch. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter))] - public global::Google.Gemini.EmbedContentBatchState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] + public global::Google.Gemini.EmbedContentBatchStats? BatchStats { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -89,71 +89,71 @@ public sealed partial class EmbedContentBatch /// /// Initializes a new instance of the class. /// - /// - /// Output only. The time at which the batch was last updated.
+ /// + /// Required. The user-defined name of this batch. + /// + /// + /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
/// Included only in responses /// /// /// Configures the input to the batch request. /// - /// - /// Required. The user-defined name of this batch. - /// - /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
+ /// + /// Output only. The time at which the batch processing completed.
/// Included only in responses /// - /// - /// Stats about the batch. + /// + /// Output only. The state of the batch.
+ /// Included only in responses + /// + /// + /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. /// /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// - /// - /// Output only. The time at which the batch was created.
+ /// + /// Output only. The time at which the batch was last updated.
/// Included only in responses /// - /// - /// Output only. The time at which the batch processing completed.
+ /// + /// Output only. The time at which the batch was created.
/// Included only in responses /// - /// - /// Output only. The state of the batch.
- /// Included only in responses + /// + /// Stats about the batch. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbedContentBatch( - string? updateTime, - global::Google.Gemini.InputEmbedContentConfig? inputConfig, string? displayName, - string? priority, - string? model, string? name, - global::Google.Gemini.EmbedContentBatchStats? batchStats, + global::Google.Gemini.InputEmbedContentConfig? inputConfig, + string? model, + string? endTime, + global::Google.Gemini.EmbedContentBatchState? state, + string? priority, global::Google.Gemini.EmbedContentBatchOutput? output, + string? updateTime, string? createTime, - string? endTime, - global::Google.Gemini.EmbedContentBatchState? state) + global::Google.Gemini.EmbedContentBatchStats? batchStats) { - this.UpdateTime = updateTime; - this.InputConfig = inputConfig; this.DisplayName = displayName; - this.Priority = priority; - this.Model = model; this.Name = name; - this.BatchStats = batchStats; - this.Output = output; - this.CreateTime = createTime; + this.InputConfig = inputConfig; + this.Model = model; this.EndTime = endTime; this.State = state; + this.Priority = priority; + this.Output = output; + this.UpdateTime = updateTime; + this.CreateTime = createTime; + this.BatchStats = batchStats; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatchStats.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatchStats.g.cs index 808cd82f..02571098 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatchStats.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentBatchStats.g.cs @@ -9,32 +9,32 @@ namespace Google.Gemini public sealed partial class EmbedContentBatchStats { /// - /// Output only. The number of requests in the batch.
+ /// Output only. The number of requests that were successfully processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] - public string? RequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("successfulRequestCount")] + public string? SuccessfulRequestCount { get; set; } /// - /// Output only. The number of requests that were successfully processed.
+ /// Output only. The number of requests that failed to be processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("successfulRequestCount")] - public string? SuccessfulRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] + public string? FailedRequestCount { get; set; } /// - /// Output only. The number of requests that are still pending processing.
+ /// Output only. The number of requests in the batch.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("pendingRequestCount")] - public string? PendingRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] + public string? RequestCount { get; set; } /// - /// Output only. The number of requests that failed to be processed.
+ /// Output only. The number of requests that are still pending processing.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] - public string? FailedRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("pendingRequestCount")] + public string? PendingRequestCount { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -45,35 +45,35 @@ public sealed partial class EmbedContentBatchStats /// /// Initializes a new instance of the class. /// - /// - /// Output only. The number of requests in the batch.
- /// Included only in responses - /// /// /// Output only. The number of requests that were successfully processed.
/// Included only in responses /// - /// - /// Output only. The number of requests that are still pending processing.
- /// Included only in responses - /// /// /// Output only. The number of requests that failed to be processed.
/// Included only in responses /// + /// + /// Output only. The number of requests in the batch.
+ /// Included only in responses + /// + /// + /// Output only. The number of requests that are still pending processing.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbedContentBatchStats( - string? requestCount, string? successfulRequestCount, - string? pendingRequestCount, - string? failedRequestCount) + string? failedRequestCount, + string? requestCount, + string? pendingRequestCount) { - this.RequestCount = requestCount; this.SuccessfulRequestCount = successfulRequestCount; - this.PendingRequestCount = pendingRequestCount; this.FailedRequestCount = failedRequestCount; + this.RequestCount = requestCount; + this.PendingRequestCount = pendingRequestCount; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentConfig.g.cs index 37eeb3d5..0f0e42a1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentConfig.g.cs @@ -32,12 +32,6 @@ public sealed partial class EmbedContentConfig [global::System.Text.Json.Serialization.JsonPropertyName("audioTrackExtraction")] public bool? AudioTrackExtraction { get; set; } - /// - /// Optional. The title for the text. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } - /// /// Optional. The task type of the embedding. /// @@ -45,6 +39,12 @@ public sealed partial class EmbedContentConfig [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter))] public global::Google.Gemini.EmbedContentConfigTaskType? TaskType { get; set; } + /// + /// Optional. The title for the text. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -66,12 +66,12 @@ public sealed partial class EmbedContentConfig /// /// Optional. Whether to extract audio from video content. /// - /// - /// Optional. The title for the text. - /// /// /// Optional. The task type of the embedding. /// + /// + /// Optional. The title for the text. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif @@ -80,15 +80,15 @@ public EmbedContentConfig( int? outputDimensionality, bool? documentOcr, bool? audioTrackExtraction, - string? title, - global::Google.Gemini.EmbedContentConfigTaskType? taskType) + global::Google.Gemini.EmbedContentConfigTaskType? taskType, + string? title) { this.AutoTruncate = autoTruncate; this.OutputDimensionality = outputDimensionality; this.DocumentOcr = documentOcr; this.AudioTrackExtraction = audioTrackExtraction; - this.Title = title; this.TaskType = taskType; + this.Title = title; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentRequest.g.cs index 941c8b9a..ed505956 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbedContentRequest.g.cs @@ -11,23 +11,17 @@ namespace Google.Gemini public sealed partial class EmbedContentRequest { /// - /// Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}` - /// - [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } - - /// - /// Optional. Deprecated: Please use EmbedContentConfig.output_dimensionality instead. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. Supported by newer models since 2024 only. You cannot set this value if using the earlier model (`models/embedding-001`). + /// Optional. Deprecated: Please use EmbedContentConfig.title instead. An optional title for the text. Only applicable when TaskType is `RETRIEVAL_DOCUMENT`. Note: Specifying a `title` for `RETRIEVAL_DOCUMENT` provides better quality embeddings for retrieval. /// - [global::System.Text.Json.Serialization.JsonPropertyName("outputDimensionality")] + [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Obsolete("This property marked as deprecated.")] - public int? OutputDimensionality { get; set; } + public string? Title { get; set; } /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// Configurations for the EmbedContent request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::Google.Gemini.Content? Content { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("embedContentConfig")] + public global::Google.Gemini.EmbedContentConfig? EmbedContentConfig { get; set; } /// /// Optional. Deprecated: Please use EmbedContentConfig.task_type instead. Optional task type for which the embeddings will be used. Not supported on earlier models (`models/embedding-001`). @@ -38,17 +32,23 @@ public sealed partial class EmbedContentRequest public global::Google.Gemini.EmbedContentRequestTaskType? TaskType { get; set; } /// - /// Optional. Deprecated: Please use EmbedContentConfig.title instead. An optional title for the text. Only applicable when TaskType is `RETRIEVAL_DOCUMENT`. Note: Specifying a `title` for `RETRIEVAL_DOCUMENT` provides better quality embeddings for retrieval. + /// Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}` /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } + + /// + /// Optional. Deprecated: Please use EmbedContentConfig.output_dimensionality instead. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. Supported by newer models since 2024 only. You cannot set this value if using the earlier model (`models/embedding-001`). + /// + [global::System.Text.Json.Serialization.JsonPropertyName("outputDimensionality")] [global::System.Obsolete("This property marked as deprecated.")] - public string? Title { get; set; } + public int? OutputDimensionality { get; set; } /// - /// Configurations for the EmbedContent request. + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - [global::System.Text.Json.Serialization.JsonPropertyName("embedContentConfig")] - public global::Google.Gemini.EmbedContentConfig? EmbedContentConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("content")] + public global::Google.Gemini.Content? Content { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -59,26 +59,26 @@ public sealed partial class EmbedContentRequest /// /// Initializes a new instance of the class. /// + /// + /// Configurations for the EmbedContent request. + /// /// /// Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}` /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - /// - /// Configurations for the EmbedContent request. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbedContentRequest( + global::Google.Gemini.EmbedContentConfig? embedContentConfig, string? model, - global::Google.Gemini.Content? content, - global::Google.Gemini.EmbedContentConfig? embedContentConfig) + global::Google.Gemini.Content? content) { + this.EmbedContentConfig = embedContentConfig; this.Model = model; this.Content = content; - this.EmbedContentConfig = embedContentConfig; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Environment.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Environment.g.cs index 946c2450..0531151e 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Environment.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Environment.g.cs @@ -9,18 +9,12 @@ namespace Google.Gemini public sealed partial class Environment { /// - /// Output only. The total size of the environment files in bytes, output only.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] - public string? SizeBytes { get; set; } - - /// - /// Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
+ /// Output only. The status of the environment container.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updated")] - public string? Updated { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("status")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusJsonConverter))] + public global::Google.Gemini.EnvironmentStatus? Status { get; set; } /// /// Output only. The time at which the environment was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
@@ -30,11 +24,11 @@ public sealed partial class Environment public string? Created { get; set; } /// - /// Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
- /// Included only in responses + /// Network egress mode. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("lastAccessed")] - public string? LastAccessed { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("network_mode")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeJsonConverter))] + public global::Google.Gemini.EnvironmentNetworkMode? NetworkMode { get; set; } /// /// Sources to be mounted into the environment. @@ -43,24 +37,31 @@ public sealed partial class Environment public global::System.Collections.Generic.IList? Sources { get; set; } /// - /// Output only. The number of files in the environment, output only.
+ /// Network egress configuration for the environment. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("network_allowlist")] + public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? NetworkAllowlist { get; set; } + + /// + /// Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("fileCount")] - public string? FileCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("lastAccessed")] + public string? LastAccessed { get; set; } /// - /// Network egress mode. + /// Output only. The number of files in the environment, output only.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("network_mode")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EnvironmentNetworkModeJsonConverter))] - public global::Google.Gemini.EnvironmentNetworkMode? NetworkMode { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("fileCount")] + public string? FileCount { get; set; } /// - /// Network egress configuration for the environment. + /// Output only. The total size of the environment files in bytes, output only.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("network_allowlist")] - public global::Google.Gemini.EnvironmentNetworkEgressAllowlist? NetworkAllowlist { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] + public string? SizeBytes { get; set; } /// /// Required. Output only. The ID of the environment.
@@ -70,12 +71,11 @@ public sealed partial class Environment public string? Id { get; set; } /// - /// Output only. The status of the environment container.
+ /// Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("status")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EnvironmentStatusJsonConverter))] - public global::Google.Gemini.EnvironmentStatus? Status { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updated")] + public string? Updated { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -86,68 +86,68 @@ public sealed partial class Environment /// /// Initializes a new instance of the class. /// - /// - /// Output only. The total size of the environment files in bytes, output only.
- /// Included only in responses - /// - /// - /// Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
+ /// + /// Output only. The status of the environment container.
/// Included only in responses /// /// /// Output only. The time at which the environment was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
/// Included only in responses /// - /// - /// Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
- /// Included only in responses + /// + /// Network egress mode. /// /// /// Sources to be mounted into the environment. /// + /// + /// Network egress configuration for the environment. + /// + /// + /// Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
+ /// Included only in responses + /// /// /// Output only. The number of files in the environment, output only.
/// Included only in responses /// - /// - /// Network egress mode. - /// - /// - /// Network egress configuration for the environment. + /// + /// Output only. The total size of the environment files in bytes, output only.
+ /// Included only in responses /// /// /// Required. Output only. The ID of the environment.
/// Included only in responses /// - /// - /// Output only. The status of the environment container.
+ /// + /// Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).
/// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Environment( - string? sizeBytes, - string? updated, + global::Google.Gemini.EnvironmentStatus? status, string? created, - string? lastAccessed, - global::System.Collections.Generic.IList? sources, - string? fileCount, global::Google.Gemini.EnvironmentNetworkMode? networkMode, + global::System.Collections.Generic.IList? sources, global::Google.Gemini.EnvironmentNetworkEgressAllowlist? networkAllowlist, + string? lastAccessed, + string? fileCount, + string? sizeBytes, string? id, - global::Google.Gemini.EnvironmentStatus? status) + string? updated) { - this.SizeBytes = sizeBytes; - this.Updated = updated; + this.Status = status; this.Created = created; - this.LastAccessed = lastAccessed; - this.Sources = sources; - this.FileCount = fileCount; this.NetworkMode = networkMode; + this.Sources = sources; this.NetworkAllowlist = networkAllowlist; + this.LastAccessed = lastAccessed; + this.FileCount = fileCount; + this.SizeBytes = sizeBytes; this.Id = id; - this.Status = status; + this.Updated = updated; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.File.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.File.g.cs index e2de68de..801fe949 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.File.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.File.g.cs @@ -9,25 +9,17 @@ namespace Google.Gemini public sealed partial class File { /// - /// Metadata for a video `File`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] - public global::Google.Gemini.VideoFileMetadata? VideoMetadata { get; set; } - - /// - /// Output only. SHA-256 hash of the uploaded bytes.
+ /// Output only. The timestamp of when the `File` was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sha256Hash")] - public byte[]? Sha256Hash { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// - /// Output only. Processing state of the File.
- /// Included only in responses + /// Metadata for a video `File`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FileStateJsonConverter))] - public global::Google.Gemini.FileState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] + public global::Google.Gemini.VideoFileMetadata? VideoMetadata { get; set; } /// /// Output only. MIME type of the file.
@@ -37,37 +29,32 @@ public sealed partial class File public string? MimeType { get; set; } /// - /// Output only. The timestamp of when the `File` was last updated.
+ /// Output only. The uri of the `File`.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } /// - /// Output only. The download uri of the `File`.
+ /// Output only. Size of the file in bytes.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("downloadUri")] - public string? DownloadUri { get; set; } - - /// - /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). - /// - [global::System.Text.Json.Serialization.JsonPropertyName("error")] - public global::Google.Gemini.Status? Error { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] + public string? SizeBytes { get; set; } /// - /// Output only. The uri of the `File`.
+ /// Output only. Processing state of the File.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FileStateJsonConverter))] + public global::Google.Gemini.FileState? State { get; set; } /// - /// Immutable. Identifier. The `File` resource name. The ID (name excluding the "files/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456` + /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// - [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("error")] + public global::Google.Gemini.Status? Error { get; set; } /// /// Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.
@@ -77,17 +64,18 @@ public sealed partial class File public string? ExpirationTime { get; set; } /// - /// Output only. The timestamp of when the `File` was created.
+ /// Output only. The timestamp of when the `File` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: "Welcome Image" + /// Output only. The download uri of the `File`.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("downloadUri")] + public string? DownloadUri { get; set; } /// /// Source of the File. @@ -97,11 +85,23 @@ public sealed partial class File public global::Google.Gemini.FileSource? Source { get; set; } /// - /// Output only. Size of the file in bytes.
+ /// Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: "Welcome Image" + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } + + /// + /// Output only. SHA-256 hash of the uploaded bytes.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] - public string? SizeBytes { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sha256Hash")] + public byte[]? Sha256Hash { get; set; } + + /// + /// Immutable. Identifier. The `File` resource name. The ID (name excluding the "files/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -112,90 +112,90 @@ public sealed partial class File /// /// Initializes a new instance of the class. /// - /// - /// Metadata for a video `File`. - /// - /// - /// Output only. SHA-256 hash of the uploaded bytes.
+ /// + /// Output only. The timestamp of when the `File` was created.
/// Included only in responses /// - /// - /// Output only. Processing state of the File.
- /// Included only in responses + /// + /// Metadata for a video `File`. /// /// /// Output only. MIME type of the file.
/// Included only in responses /// - /// - /// Output only. The timestamp of when the `File` was last updated.
+ /// + /// Output only. The uri of the `File`.
/// Included only in responses /// - /// - /// Output only. The download uri of the `File`.
+ /// + /// Output only. Size of the file in bytes.
/// Included only in responses /// - /// - /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). - /// - /// - /// Output only. The uri of the `File`.
+ /// + /// Output only. Processing state of the File.
/// Included only in responses /// - /// - /// Immutable. Identifier. The `File` resource name. The ID (name excluding the "files/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456` + /// + /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// /// /// Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.
/// Included only in responses /// - /// - /// Output only. The timestamp of when the `File` was created.
+ /// + /// Output only. The timestamp of when the `File` was last updated.
/// Included only in responses /// - /// - /// Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: "Welcome Image" + /// + /// Output only. The download uri of the `File`.
+ /// Included only in responses /// /// /// Source of the File. /// - /// - /// Output only. Size of the file in bytes.
+ /// + /// Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: "Welcome Image" + /// + /// + /// Output only. SHA-256 hash of the uploaded bytes.
/// Included only in responses /// + /// + /// Immutable. Identifier. The `File` resource name. The ID (name excluding the "files/" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456` + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public File( + string? createTime, global::Google.Gemini.VideoFileMetadata? videoMetadata, - byte[]? sha256Hash, - global::Google.Gemini.FileState? state, string? mimeType, - string? updateTime, - string? downloadUri, - global::Google.Gemini.Status? error, string? uri, - string? name, + string? sizeBytes, + global::Google.Gemini.FileState? state, + global::Google.Gemini.Status? error, string? expirationTime, - string? createTime, - string? displayName, + string? updateTime, + string? downloadUri, global::Google.Gemini.FileSource? source, - string? sizeBytes) + string? displayName, + byte[]? sha256Hash, + string? name) { + this.CreateTime = createTime; this.VideoMetadata = videoMetadata; - this.Sha256Hash = sha256Hash; - this.State = state; this.MimeType = mimeType; - this.UpdateTime = updateTime; - this.DownloadUri = downloadUri; - this.Error = error; this.Uri = uri; - this.Name = name; + this.SizeBytes = sizeBytes; + this.State = state; + this.Error = error; this.ExpirationTime = expirationTime; - this.CreateTime = createTime; - this.DisplayName = displayName; + this.UpdateTime = updateTime; + this.DownloadUri = downloadUri; this.Source = source; - this.SizeBytes = sizeBytes; + this.DisplayName = displayName; + this.Sha256Hash = sha256Hash; + this.Name = name; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FileSearchStore.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FileSearchStore.g.cs index 6ec68547..acafe6cb 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FileSearchStore.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FileSearchStore.g.cs @@ -8,19 +8,6 @@ namespace Google.Gemini /// public sealed partial class FileSearchStore { - /// - /// Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } - - /// - /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } - /// /// Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`.
/// Included only in responses @@ -29,31 +16,37 @@ public sealed partial class FileSearchStore public string? SizeBytes { get; set; } /// - /// Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.
+ /// Output only. Immutable. Identifier. The `FileSearchStore` resource name. It is an ID (name excluding the "fileSearchStores/" prefix) that can contain up to 40 characters that are lowercase alphanumeric or dashes (-). It is output only. The unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/my-awesome-file-search-store-123a456b789c` If `display_name` is not provided, the name will be randomly generated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("activeDocumentsCount")] - public string? ActiveDocumentsCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// - /// Output only. The number of documents in the `FileSearchStore` that are being processed.
- /// Included only in responses + /// Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" ///
- [global::System.Text.Json.Serialization.JsonPropertyName("pendingDocumentsCount")] - public string? PendingDocumentsCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } /// - /// Output only. Immutable. Identifier. The `FileSearchStore` resource name. It is an ID (name excluding the "fileSearchStores/" prefix) that can contain up to 40 characters that are lowercase alphanumeric or dashes (-). It is output only. The unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/my-awesome-file-search-store-123a456b789c` If `display_name` is not provided, the name will be randomly generated.
+ /// Optional. The embedding model to use for the `FileSearchStore`. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`. If not specified, the default embedding model will be used. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("embeddingModel")] + public string? EmbeddingModel { get; set; } + + /// + /// Output only. The Timestamp of when the `FileSearchStore` was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// - /// Optional. The embedding model to use for the `FileSearchStore`. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`. If not specified, the default embedding model will be used. + /// Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("embeddingModel")] - public string? EmbeddingModel { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("activeDocumentsCount")] + public string? ActiveDocumentsCount { get; set; } /// /// Output only. The number of documents in the `FileSearchStore` that have failed processing.
@@ -63,11 +56,18 @@ public sealed partial class FileSearchStore public string? FailedDocumentsCount { get; set; } /// - /// Output only. The Timestamp of when the `FileSearchStore` was created.
+ /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } + + /// + /// Output only. The number of documents in the `FileSearchStore` that are being processed.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("pendingDocumentsCount")] + public string? PendingDocumentsCount { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -78,63 +78,63 @@ public sealed partial class FileSearchStore /// /// Initializes a new instance of the class. /// - /// - /// Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" - /// - /// - /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
- /// Included only in responses - /// /// /// Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`.
/// Included only in responses /// - /// - /// Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.
- /// Included only in responses - /// - /// - /// Output only. The number of documents in the `FileSearchStore` that are being processed.
- /// Included only in responses - /// /// /// Output only. Immutable. Identifier. The `FileSearchStore` resource name. It is an ID (name excluding the "fileSearchStores/" prefix) that can contain up to 40 characters that are lowercase alphanumeric or dashes (-). It is output only. The unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/my-awesome-file-search-store-123a456b789c` If `display_name` is not provided, the name will be randomly generated.
/// Included only in responses /// + /// + /// Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: "Docs on Semantic Retriever" + /// /// /// Optional. The embedding model to use for the `FileSearchStore`. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`. If not specified, the default embedding model will be used. /// + /// + /// Output only. The Timestamp of when the `FileSearchStore` was created.
+ /// Included only in responses + /// + /// + /// Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.
+ /// Included only in responses + /// /// /// Output only. The number of documents in the `FileSearchStore` that have failed processing.
/// Included only in responses /// - /// - /// Output only. The Timestamp of when the `FileSearchStore` was created.
+ /// + /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
+ /// Included only in responses + /// + /// + /// Output only. The number of documents in the `FileSearchStore` that are being processed.
/// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FileSearchStore( - string? displayName, - string? updateTime, string? sizeBytes, - string? activeDocumentsCount, - string? pendingDocumentsCount, string? name, + string? displayName, string? embeddingModel, + string? createTime, + string? activeDocumentsCount, string? failedDocumentsCount, - string? createTime) + string? updateTime, + string? pendingDocumentsCount) { - this.DisplayName = displayName; - this.UpdateTime = updateTime; this.SizeBytes = sizeBytes; - this.ActiveDocumentsCount = activeDocumentsCount; - this.PendingDocumentsCount = pendingDocumentsCount; this.Name = name; + this.DisplayName = displayName; this.EmbeddingModel = embeddingModel; - this.FailedDocumentsCount = failedDocumentsCount; this.CreateTime = createTime; + this.ActiveDocumentsCount = activeDocumentsCount; + this.FailedDocumentsCount = failedDocumentsCount; + this.UpdateTime = updateTime; + this.PendingDocumentsCount = pendingDocumentsCount; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionDeclaration.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionDeclaration.g.cs index c053c2d4..e32ee7f2 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionDeclaration.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionDeclaration.g.cs @@ -9,16 +9,10 @@ namespace Google.Gemini public sealed partial class FunctionDeclaration { /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). - /// - [global::System.Text.Json.Serialization.JsonPropertyName("parameters")] - public global::Google.Gemini.Schema? Parameters { get; set; } - - /// - /// Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } ``` This field is mutually exclusive with `parameters`. + /// Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("parametersJsonSchema")] - public object? ParametersJsonSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] + public object? ResponseJsonSchema { get; set; } /// /// Required. The name of the function. Must be a-z, A-Z, 0-9, or contain underscores, colons, dots, and dashes, with a maximum length of 128. @@ -38,6 +32,18 @@ public sealed partial class FunctionDeclaration [global::System.Text.Json.Serialization.JsonPropertyName("response")] public global::Google.Gemini.Schema? Response { get; set; } + /// + /// Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } ``` This field is mutually exclusive with `parameters`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("parametersJsonSchema")] + public object? ParametersJsonSchema { get; set; } + + /// + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// + [global::System.Text.Json.Serialization.JsonPropertyName("parameters")] + public global::Google.Gemini.Schema? Parameters { get; set; } + /// /// Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. /// @@ -45,12 +51,6 @@ public sealed partial class FunctionDeclaration [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter))] public global::Google.Gemini.FunctionDeclarationBehavior? Behavior { get; set; } - /// - /// Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] - public object? ResponseJsonSchema { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -60,11 +60,8 @@ public sealed partial class FunctionDeclaration /// /// Initializes a new instance of the class. /// - /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). - /// - /// - /// Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } ``` This field is mutually exclusive with `parameters`. + /// + /// Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`. /// /// /// Required. The name of the function. Must be a-z, A-Z, 0-9, or contain underscores, colons, dots, and dashes, with a maximum length of 128. @@ -75,31 +72,34 @@ public sealed partial class FunctionDeclaration /// /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). /// + /// + /// Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } ``` This field is mutually exclusive with `parameters`. + /// + /// + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// /// /// Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. /// - /// - /// Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionDeclaration( - global::Google.Gemini.Schema? parameters, - object? parametersJsonSchema, + object? responseJsonSchema, string? name, string? description, global::Google.Gemini.Schema? response, - global::Google.Gemini.FunctionDeclarationBehavior? behavior, - object? responseJsonSchema) + object? parametersJsonSchema, + global::Google.Gemini.Schema? parameters, + global::Google.Gemini.FunctionDeclarationBehavior? behavior) { - this.Parameters = parameters; - this.ParametersJsonSchema = parametersJsonSchema; + this.ResponseJsonSchema = responseJsonSchema; this.Name = name; this.Description = description; this.Response = response; + this.ParametersJsonSchema = parametersJsonSchema; + this.Parameters = parameters; this.Behavior = behavior; - this.ResponseJsonSchema = responseJsonSchema; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponse.g.cs index e6c3c59b..fa52f28f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponse.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class FunctionResponse { + /// + /// Optional. Signals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty `response` with `will_continue=False` to signal that the function call is finished. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("willContinue")] + public bool? WillContinue { get; set; } + /// /// Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128. /// @@ -15,23 +21,23 @@ public sealed partial class FunctionResponse public string? Name { get; set; } /// - /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. + /// Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE. /// - [global::System.Text.Json.Serialization.JsonPropertyName("id")] - public string? Id { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("scheduling")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingJsonConverter))] + public global::Google.Gemini.FunctionResponseScheduling? Scheduling { get; set; } /// - /// Optional. Signals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty `response` with `will_continue=False` to signal that the function call is finished. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`. + /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. /// - [global::System.Text.Json.Serialization.JsonPropertyName("willContinue")] - public bool? WillContinue { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("parts")] + public global::System.Collections.Generic.IList? Parts { get; set; } /// - /// Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE. + /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("scheduling")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingJsonConverter))] - public global::Google.Gemini.FunctionResponseScheduling? Scheduling { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + public string? Id { get; set; } /// /// Required. The function response in JSON object format. Callers can use any keys of their choice that fit the function's syntax to return the function output, e.g. "output", "result", etc. In particular, if the function call failed to execute, the response can have an "error" key to return error details to the model. Multimedia can be included by using a subobject containing a single "$ref" key whose value is the `inline_data.display_name` of a `FunctionResponsePart` holding the multimedia. See https://ai.google.dev/gemini-api/docs/function-calling#multimodal. @@ -39,12 +45,6 @@ public sealed partial class FunctionResponse [global::System.Text.Json.Serialization.JsonPropertyName("response")] public object? Response { get; set; } - /// - /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("parts")] - public global::System.Collections.Generic.IList? Parts { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -54,41 +54,41 @@ public sealed partial class FunctionResponse /// /// Initializes a new instance of the class. /// - /// - /// Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128. - /// - /// - /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. - /// /// /// Optional. Signals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty `response` with `will_continue=False` to signal that the function call is finished. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`. /// + /// + /// Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128. + /// /// /// Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE. /// - /// - /// Required. The function response in JSON object format. Callers can use any keys of their choice that fit the function's syntax to return the function output, e.g. "output", "result", etc. In particular, if the function call failed to execute, the response can have an "error" key to return error details to the model. Multimedia can be included by using a subobject containing a single "$ref" key whose value is the `inline_data.display_name` of a `FunctionResponsePart` holding the multimedia. See https://ai.google.dev/gemini-api/docs/function-calling#multimodal. - /// /// /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. /// + /// + /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. + /// + /// + /// Required. The function response in JSON object format. Callers can use any keys of their choice that fit the function's syntax to return the function output, e.g. "output", "result", etc. In particular, if the function call failed to execute, the response can have an "error" key to return error details to the model. Multimedia can be included by using a subobject containing a single "$ref" key whose value is the `inline_data.display_name` of a `FunctionResponsePart` holding the multimedia. See https://ai.google.dev/gemini-api/docs/function-calling#multimodal. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionResponse( - string? name, - string? id, bool? willContinue, + string? name, global::Google.Gemini.FunctionResponseScheduling? scheduling, - object? response, - global::System.Collections.Generic.IList? parts) + global::System.Collections.Generic.IList? parts, + string? id, + object? response) { - this.Name = name; - this.Id = id; this.WillContinue = willContinue; + this.Name = name; this.Scheduling = scheduling; - this.Response = response; this.Parts = parts; + this.Id = id; + this.Response = response; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentBatch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentBatch.g.cs index 50d693ad..32fb2031 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentBatch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentBatch.g.cs @@ -9,12 +9,17 @@ namespace Google.Gemini public sealed partial class GenerateContentBatch { /// - /// Output only. The state of the batch.
+ /// Stats about the batch. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] + public global::Google.Gemini.BatchStats? BatchStats { get; set; } + + /// + /// Output only. The time at which the batch was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter))] - public global::Google.Gemini.GenerateContentBatchState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. @@ -23,24 +28,32 @@ public sealed partial class GenerateContentBatch public global::Google.Gemini.GenerateContentBatchOutput? Output { get; set; } /// - /// Output only. The time at which the batch was created.
+ /// Output only. The time at which the batch was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Output only. The time at which the batch processing completed.
+ /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("priority")] + public string? Priority { get; set; } + + /// + /// Output only. The state of the batch.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] - public string? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter))] + public global::Google.Gemini.GenerateContentBatchState? State { get; set; } /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + /// Output only. The time at which the batch processing completed.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("priority")] - public string? Priority { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] + public string? EndTime { get; set; } /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. @@ -55,12 +68,6 @@ public sealed partial class GenerateContentBatch [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } - /// - /// Stats about the batch. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] - public global::Google.Gemini.BatchStats? BatchStats { get; set; } - /// /// Configures the input to the batch request. /// @@ -73,13 +80,6 @@ public sealed partial class GenerateContentBatch [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] public string? DisplayName { get; set; } - /// - /// Output only. The time at which the batch was last updated.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -89,24 +89,31 @@ public sealed partial class GenerateContentBatch /// /// Initializes a new instance of the class. /// - /// - /// Output only. The state of the batch.
+ /// + /// Stats about the batch. + /// + /// + /// Output only. The time at which the batch was created.
/// Included only in responses /// /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// - /// - /// Output only. The time at which the batch was created.
+ /// + /// Output only. The time at which the batch was last updated.
+ /// Included only in responses + /// + /// + /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. + /// + /// + /// Output only. The state of the batch.
/// Included only in responses /// /// /// Output only. The time at which the batch processing completed.
/// Included only in responses /// - /// - /// Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// @@ -114,46 +121,39 @@ public sealed partial class GenerateContentBatch /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
/// Included only in responses /// - /// - /// Stats about the batch. - /// /// /// Configures the input to the batch request. /// /// /// Required. The user-defined name of this batch. /// - /// - /// Output only. The time at which the batch was last updated.
- /// Included only in responses - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentBatch( - global::Google.Gemini.GenerateContentBatchState? state, - global::Google.Gemini.GenerateContentBatchOutput? output, + global::Google.Gemini.BatchStats? batchStats, string? createTime, - string? endTime, + global::Google.Gemini.GenerateContentBatchOutput? output, + string? updateTime, string? priority, + global::Google.Gemini.GenerateContentBatchState? state, + string? endTime, string? model, string? name, - global::Google.Gemini.BatchStats? batchStats, global::Google.Gemini.InputConfig? inputConfig, - string? displayName, - string? updateTime) + string? displayName) { - this.State = state; - this.Output = output; + this.BatchStats = batchStats; this.CreateTime = createTime; - this.EndTime = endTime; + this.Output = output; + this.UpdateTime = updateTime; this.Priority = priority; + this.State = state; + this.EndTime = endTime; this.Model = model; this.Name = name; - this.BatchStats = batchStats; this.InputConfig = inputConfig; this.DisplayName = displayName; - this.UpdateTime = updateTime; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentRequest.g.cs index 883dbdd6..445643ee 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentRequest.g.cs @@ -9,47 +9,47 @@ namespace Google.Gemini public sealed partial class GenerateContentRequest { /// - /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] - public global::Google.Gemini.Content? SystemInstruction { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("contents")] + public global::System.Collections.Generic.IList? Contents { get; set; } /// - /// Optional. The service tier of the request. + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("serviceTier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter))] - public global::Google.Gemini.GenerateContentRequestServiceTier? ServiceTier { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("generationConfig")] + public global::Google.Gemini.GenerationConfig? GenerationConfig { get; set; } /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` /// - [global::System.Text.Json.Serialization.JsonPropertyName("safetySettings")] - public global::System.Collections.Generic.IList? SafetySettings { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("cachedContent")] + public string? CachedContent { get; set; } /// - /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. /// - [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("store")] + public bool? Store { get; set; } /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// - [global::System.Text.Json.Serialization.JsonPropertyName("cachedContent")] - public string? CachedContent { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] + public global::Google.Gemini.Content? SystemInstruction { get; set; } /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// Optional. The service tier of the request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("contents")] - public global::System.Collections.Generic.IList? Contents { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("serviceTier")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter))] + public global::Google.Gemini.GenerateContentRequestServiceTier? ServiceTier { get; set; } /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("generationConfig")] - public global::Google.Gemini.GenerationConfig? GenerationConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. @@ -64,10 +64,10 @@ public sealed partial class GenerateContentRequest public global::Google.Gemini.ToolConfig? ToolConfig { get; set; } /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// - [global::System.Text.Json.Serialization.JsonPropertyName("store")] - public bool? Store { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("safetySettings")] + public global::System.Collections.Generic.IList? SafetySettings { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -78,61 +78,61 @@ public sealed partial class GenerateContentRequest /// /// Initializes a new instance of the class. /// + /// + /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. + /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. + /// + /// + /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// /// /// Optional. The service tier of the request. /// - /// - /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. - /// /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}` - /// - /// - /// Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request. - /// - /// - /// Configuration options for model generation and outputs. Not all parameters are configurable for every model. - /// /// /// Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more. /// /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - /// - /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// + /// Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentRequest( + global::System.Collections.Generic.IList? contents, + global::Google.Gemini.GenerationConfig? generationConfig, + string? cachedContent, + bool? store, global::Google.Gemini.Content? systemInstruction, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier, - global::System.Collections.Generic.IList? safetySettings, string? model, - string? cachedContent, - global::System.Collections.Generic.IList? contents, - global::Google.Gemini.GenerationConfig? generationConfig, global::System.Collections.Generic.IList? tools, global::Google.Gemini.ToolConfig? toolConfig, - bool? store) + global::System.Collections.Generic.IList? safetySettings) { + this.Contents = contents; + this.GenerationConfig = generationConfig; + this.CachedContent = cachedContent; + this.Store = store; this.SystemInstruction = systemInstruction; this.ServiceTier = serviceTier; - this.SafetySettings = safetySettings; this.Model = model; - this.CachedContent = cachedContent; - this.Contents = contents; - this.GenerationConfig = generationConfig; this.Tools = tools; this.ToolConfig = toolConfig; - this.Store = store; + this.SafetySettings = safetySettings; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentResponse.g.cs index 014a63c4..0f7e1b8f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerateContentResponse.g.cs @@ -9,16 +9,10 @@ namespace Google.Gemini public sealed partial class GenerateContentResponse { /// - /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("promptFeedback")] - public global::Google.Gemini.PromptFeedback? PromptFeedback { get; set; } - - /// - /// Metadata on the generation request's token usage. + /// Candidate responses from the model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] - public global::Google.Gemini.UsageMetadata? UsageMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("candidates")] + public global::System.Collections.Generic.IList? Candidates { get; set; } /// /// Output only. The model version used to generate the response.
@@ -27,6 +21,18 @@ public sealed partial class GenerateContentResponse [global::System.Text.Json.Serialization.JsonPropertyName("modelVersion")] public string? ModelVersion { get; set; } + /// + /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("modelStatus")] + public global::Google.Gemini.ModelStatus? ModelStatus { get; set; } + + /// + /// Metadata on the generation request's token usage. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] + public global::Google.Gemini.UsageMetadata? UsageMetadata { get; set; } + /// /// Output only. response_id is used to identify each response.
/// Included only in responses @@ -35,16 +41,10 @@ public sealed partial class GenerateContentResponse public string? ResponseId { get; set; } /// - /// Candidate responses from the model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("candidates")] - public global::System.Collections.Generic.IList? Candidates { get; set; } - - /// - /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. + /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("modelStatus")] - public global::Google.Gemini.ModelStatus? ModelStatus { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptFeedback")] + public global::Google.Gemini.PromptFeedback? PromptFeedback { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -55,43 +55,43 @@ public sealed partial class GenerateContentResponse /// /// Initializes a new instance of the class. /// - /// - /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. - /// - /// - /// Metadata on the generation request's token usage. + /// + /// Candidate responses from the model. /// /// /// Output only. The model version used to generate the response.
/// Included only in responses /// + /// + /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. + /// + /// + /// Metadata on the generation request's token usage. + /// /// /// Output only. response_id is used to identify each response.
/// Included only in responses /// - /// - /// Candidate responses from the model. - /// - /// - /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. + /// + /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentResponse( - global::Google.Gemini.PromptFeedback? promptFeedback, - global::Google.Gemini.UsageMetadata? usageMetadata, + global::System.Collections.Generic.IList? candidates, string? modelVersion, + global::Google.Gemini.ModelStatus? modelStatus, + global::Google.Gemini.UsageMetadata? usageMetadata, string? responseId, - global::System.Collections.Generic.IList? candidates, - global::Google.Gemini.ModelStatus? modelStatus) + global::Google.Gemini.PromptFeedback? promptFeedback) { - this.PromptFeedback = promptFeedback; - this.UsageMetadata = usageMetadata; - this.ModelVersion = modelVersion; - this.ResponseId = responseId; this.Candidates = candidates; + this.ModelVersion = modelVersion; this.ModelStatus = modelStatus; + this.UsageMetadata = usageMetadata; + this.ResponseId = responseId; + this.PromptFeedback = promptFeedback; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GeneratedFile.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GeneratedFile.g.cs index c0eca73d..5f3e70a4 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GeneratedFile.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GeneratedFile.g.cs @@ -14,12 +14,6 @@ public sealed partial class GeneratedFile [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } - /// - /// MIME type of the generatedFile. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - public string? MimeType { get; set; } - /// /// Output only. The state of the GeneratedFile.
/// Included only in responses @@ -28,6 +22,12 @@ public sealed partial class GeneratedFile [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter))] public global::Google.Gemini.GeneratedFileState? State { get; set; } + /// + /// MIME type of the generatedFile. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + public string? MimeType { get; set; } + /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// @@ -46,13 +46,13 @@ public sealed partial class GeneratedFile /// /// Identifier. The name of the generated file. Example: `generatedFiles/abc-123` /// - /// - /// MIME type of the generatedFile. - /// /// /// Output only. The state of the GeneratedFile.
/// Included only in responses /// + /// + /// MIME type of the generatedFile. + /// /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// @@ -61,13 +61,13 @@ public sealed partial class GeneratedFile #endif public GeneratedFile( string? name, - string? mimeType, global::Google.Gemini.GeneratedFileState? state, + string? mimeType, global::Google.Gemini.Status? error) { this.Name = name; - this.MimeType = mimeType; this.State = state; + this.MimeType = mimeType; this.Error = error; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerationConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerationConfig.g.cs index 2da5957f..483a98e3 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerationConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GenerationConfig.g.cs @@ -9,22 +9,22 @@ namespace Google.Gemini public sealed partial class GenerationConfig { /// - /// Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family) + /// Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. /// - [global::System.Text.Json.Serialization.JsonPropertyName("candidateCount")] - public int? CandidateCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topP")] + public float? TopP { get; set; } /// - /// Optional. Enables enhanced civic answers. It may not be available for all models. + /// Optional. If true, export the logprobs results in response. /// - [global::System.Text.Json.Serialization.JsonPropertyName("enableEnhancedCivicAnswers")] - public bool? EnableEnhancedCivicAnswers { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseLogprobs")] + public bool? ResponseLogprobs { get; set; } /// - /// Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary. + /// Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20]. /// - [global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")] - public float? PresencePenalty { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public int? Logprobs { get; set; } /// /// Optional. The maximum number of tokens to consider when sampling. Gemini models use Top-p (nucleus) sampling or a combination of Top-k and nucleus sampling. Top-k sampling considers the set of `top_k` most probable tokens. Models running with nucleus sampling don't allow top_k setting. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. @@ -33,125 +33,125 @@ public sealed partial class GenerationConfig public int? TopK { get; set; } /// - /// The audio transcription configuration. + /// Optional. Enables enhanced civic answers. It may not be available for all models. /// - [global::System.Text.Json.Serialization.JsonPropertyName("audioTranscriptionConfig")] - public global::Google.Gemini.AudioTranscriptionConfig? AudioTranscriptionConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("enableEnhancedCivicAnswers")] + public bool? EnableEnhancedCivicAnswers { get; set; } /// - /// Optional. If enabled, the model will detect emotions and adapt its responses accordingly. + /// Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function. /// - [global::System.Text.Json.Serialization.JsonPropertyName("enableAffectiveDialog")] - public bool? EnableAffectiveDialog { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxOutputTokens")] + public int? MaxOutputTokens { get; set; } /// - /// Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality. + /// Config for thinking features. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseFormat")] - public global::Google.Gemini.ResponseFormatConfig? ResponseFormat { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thinkingConfig")] + public global::Google.Gemini.ThinkingConfig? ThinkingConfig { get; set; } /// - /// Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text. + /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseModalities")] - public global::System.Collections.Generic.IList? ResponseModalities { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("seed")] + public int? Seed { get; set; } /// - /// Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0]. + /// Optional. If specified, the media resolution specified will be used. /// - [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] - public float? Temperature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mediaResolution")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionJsonConverter))] + public global::Google.Gemini.GenerationConfigMediaResolution? MediaResolution { get; set; } /// - /// Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response. + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). /// - [global::System.Text.Json.Serialization.JsonPropertyName("stopSequences")] - public global::System.Collections.Generic.IList? StopSequences { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseSchema")] + public global::Google.Gemini.Schema? ResponseSchema { get; set; } /// - /// Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20]. + /// Config for image generation features. /// - [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] - public int? Logprobs { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("imageConfig")] + public global::Google.Gemini.ImageConfig? ImageConfig { get; set; } /// - /// Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types. + /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseMimeType")] - public string? ResponseMimeType { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] + public object? ResponseJsonSchema { get; set; } /// - /// Optional. Frequency penalty applied to the next token's logprobs, multiplied by the number of times each token has been seen in the respponse so far. A positive penalty will discourage the use of tokens that have already been used, proportional to the number of times the token has been used: The more a token is used, the more difficult it is for the model to use that token again increasing the vocabulary of responses. Caution: A _negative_ penalty will encourage the model to reuse tokens proportional to the number of times the token has been used. Small negative values will reduce the vocabulary of a response. Larger negative values will cause the model to start repeating a common token until it hits the max_output_tokens limit. + /// Optional. If enabled, the model will detect emotions and adapt its responses accordingly. /// - [global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")] - public float? FrequencyPenalty { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("enableAffectiveDialog")] + public bool? EnableAffectiveDialog { get; set; } /// - /// Config for translation features. + /// Optional. Frequency penalty applied to the next token's logprobs, multiplied by the number of times each token has been seen in the respponse so far. A positive penalty will discourage the use of tokens that have already been used, proportional to the number of times the token has been used: The more a token is used, the more difficult it is for the model to use that token again increasing the vocabulary of responses. Caution: A _negative_ penalty will encourage the model to reuse tokens proportional to the number of times the token has been used. Small negative values will reduce the vocabulary of a response. Larger negative values will cause the model to start repeating a common token until it hits the max_output_tokens limit. /// - [global::System.Text.Json.Serialization.JsonPropertyName("translationConfig")] - public global::Google.Gemini.TranslationConfig? TranslationConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")] + public float? FrequencyPenalty { get; set; } /// - /// Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function. + /// Config for speech generation and transcription. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxOutputTokens")] - public int? MaxOutputTokens { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("speechConfig")] + public global::Google.Gemini.SpeechConfig? SpeechConfig { get; set; } /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// The audio transcription configuration. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseSchema")] - public global::Google.Gemini.Schema? ResponseSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("audioTranscriptionConfig")] + public global::Google.Gemini.AudioTranscriptionConfig? AudioTranscriptionConfig { get; set; } /// - /// Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. + /// Config for translation features. /// - [global::System.Text.Json.Serialization.JsonPropertyName("topP")] - public float? TopP { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("translationConfig")] + public global::Google.Gemini.TranslationConfig? TranslationConfig { get; set; } /// - /// Config for speech generation and transcription. + /// Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family) /// - [global::System.Text.Json.Serialization.JsonPropertyName("speechConfig")] - public global::Google.Gemini.SpeechConfig? SpeechConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("candidateCount")] + public int? CandidateCount { get; set; } /// - /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. + /// Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] - public object? ResponseJsonSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")] + public float? PresencePenalty { get; set; } /// - /// Config for thinking features. + /// Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types. /// - [global::System.Text.Json.Serialization.JsonPropertyName("thinkingConfig")] - public global::Google.Gemini.ThinkingConfig? ThinkingConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseMimeType")] + public string? ResponseMimeType { get; set; } /// - /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. + /// Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response. /// - [global::System.Text.Json.Serialization.JsonPropertyName("seed")] - public int? Seed { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("stopSequences")] + public global::System.Collections.Generic.IList? StopSequences { get; set; } /// - /// Optional. If specified, the media resolution specified will be used. + /// Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality. /// - [global::System.Text.Json.Serialization.JsonPropertyName("mediaResolution")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionJsonConverter))] - public global::Google.Gemini.GenerationConfigMediaResolution? MediaResolution { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseFormat")] + public global::Google.Gemini.ResponseFormatConfig? ResponseFormat { get; set; } /// - /// Optional. If true, export the logprobs results in response. + /// Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseLogprobs")] - public bool? ResponseLogprobs { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseModalities")] + public global::System.Collections.Generic.IList? ResponseModalities { get; set; } /// - /// Config for image generation features. + /// Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0]. /// - [global::System.Text.Json.Serialization.JsonPropertyName("imageConfig")] - public global::Google.Gemini.ImageConfig? ImageConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] + public float? Temperature { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -162,131 +162,131 @@ public sealed partial class GenerationConfig /// /// Initializes a new instance of the class. /// - /// - /// Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family) + /// + /// Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. /// - /// - /// Optional. Enables enhanced civic answers. It may not be available for all models. + /// + /// Optional. If true, export the logprobs results in response. /// - /// - /// Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary. + /// + /// Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20]. /// /// /// Optional. The maximum number of tokens to consider when sampling. Gemini models use Top-p (nucleus) sampling or a combination of Top-k and nucleus sampling. Top-k sampling considers the set of `top_k` most probable tokens. Models running with nucleus sampling don't allow top_k setting. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. /// - /// - /// The audio transcription configuration. + /// + /// Optional. Enables enhanced civic answers. It may not be available for all models. /// - /// - /// Optional. If enabled, the model will detect emotions and adapt its responses accordingly. + /// + /// Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function. /// - /// - /// Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality. + /// + /// Config for thinking features. /// - /// - /// Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text. + /// + /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. /// - /// - /// Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0]. + /// + /// Optional. If specified, the media resolution specified will be used. /// - /// - /// Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response. + /// + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). /// - /// - /// Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20]. + /// + /// Config for image generation features. /// - /// - /// Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types. + /// + /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. + /// + /// + /// Optional. If enabled, the model will detect emotions and adapt its responses accordingly. /// /// /// Optional. Frequency penalty applied to the next token's logprobs, multiplied by the number of times each token has been seen in the respponse so far. A positive penalty will discourage the use of tokens that have already been used, proportional to the number of times the token has been used: The more a token is used, the more difficult it is for the model to use that token again increasing the vocabulary of responses. Caution: A _negative_ penalty will encourage the model to reuse tokens proportional to the number of times the token has been used. Small negative values will reduce the vocabulary of a response. Larger negative values will cause the model to start repeating a common token until it hits the max_output_tokens limit. /// - /// - /// Config for translation features. - /// - /// - /// Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function. + /// + /// Config for speech generation and transcription. /// - /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// + /// The audio transcription configuration. /// - /// - /// Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests. + /// + /// Config for translation features. /// - /// - /// Config for speech generation and transcription. + /// + /// Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family) /// - /// - /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. + /// + /// Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary. /// - /// - /// Config for thinking features. + /// + /// Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types. /// - /// - /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. + /// + /// Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response. /// - /// - /// Optional. If specified, the media resolution specified will be used. + /// + /// Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality. /// - /// - /// Optional. If true, export the logprobs results in response. + /// + /// Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text. /// - /// - /// Config for image generation features. + /// + /// Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0]. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerationConfig( - int? candidateCount, - bool? enableEnhancedCivicAnswers, - float? presencePenalty, - int? topK, - global::Google.Gemini.AudioTranscriptionConfig? audioTranscriptionConfig, - bool? enableAffectiveDialog, - global::Google.Gemini.ResponseFormatConfig? responseFormat, - global::System.Collections.Generic.IList? responseModalities, - float? temperature, - global::System.Collections.Generic.IList? stopSequences, + float? topP, + bool? responseLogprobs, int? logprobs, - string? responseMimeType, - float? frequencyPenalty, - global::Google.Gemini.TranslationConfig? translationConfig, + int? topK, + bool? enableEnhancedCivicAnswers, int? maxOutputTokens, - global::Google.Gemini.Schema? responseSchema, - float? topP, - global::Google.Gemini.SpeechConfig? speechConfig, - object? responseJsonSchema, global::Google.Gemini.ThinkingConfig? thinkingConfig, int? seed, global::Google.Gemini.GenerationConfigMediaResolution? mediaResolution, - bool? responseLogprobs, - global::Google.Gemini.ImageConfig? imageConfig) + global::Google.Gemini.Schema? responseSchema, + global::Google.Gemini.ImageConfig? imageConfig, + object? responseJsonSchema, + bool? enableAffectiveDialog, + float? frequencyPenalty, + global::Google.Gemini.SpeechConfig? speechConfig, + global::Google.Gemini.AudioTranscriptionConfig? audioTranscriptionConfig, + global::Google.Gemini.TranslationConfig? translationConfig, + int? candidateCount, + float? presencePenalty, + string? responseMimeType, + global::System.Collections.Generic.IList? stopSequences, + global::Google.Gemini.ResponseFormatConfig? responseFormat, + global::System.Collections.Generic.IList? responseModalities, + float? temperature) { - this.CandidateCount = candidateCount; - this.EnableEnhancedCivicAnswers = enableEnhancedCivicAnswers; - this.PresencePenalty = presencePenalty; - this.TopK = topK; - this.AudioTranscriptionConfig = audioTranscriptionConfig; - this.EnableAffectiveDialog = enableAffectiveDialog; - this.ResponseFormat = responseFormat; - this.ResponseModalities = responseModalities; - this.Temperature = temperature; - this.StopSequences = stopSequences; + this.TopP = topP; + this.ResponseLogprobs = responseLogprobs; this.Logprobs = logprobs; - this.ResponseMimeType = responseMimeType; - this.FrequencyPenalty = frequencyPenalty; - this.TranslationConfig = translationConfig; + this.TopK = topK; + this.EnableEnhancedCivicAnswers = enableEnhancedCivicAnswers; this.MaxOutputTokens = maxOutputTokens; - this.ResponseSchema = responseSchema; - this.TopP = topP; - this.SpeechConfig = speechConfig; - this.ResponseJsonSchema = responseJsonSchema; this.ThinkingConfig = thinkingConfig; this.Seed = seed; this.MediaResolution = mediaResolution; - this.ResponseLogprobs = responseLogprobs; + this.ResponseSchema = responseSchema; this.ImageConfig = imageConfig; + this.ResponseJsonSchema = responseJsonSchema; + this.EnableAffectiveDialog = enableAffectiveDialog; + this.FrequencyPenalty = frequencyPenalty; + this.SpeechConfig = speechConfig; + this.AudioTranscriptionConfig = audioTranscriptionConfig; + this.TranslationConfig = translationConfig; + this.CandidateCount = candidateCount; + this.PresencePenalty = presencePenalty; + this.ResponseMimeType = responseMimeType; + this.StopSequences = stopSequences; + this.ResponseFormat = responseFormat; + this.ResponseModalities = responseModalities; + this.Temperature = temperature; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaGroundingSupport.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaGroundingSupport.g.cs index 73704ede..27dcef9e 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaGroundingSupport.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaGroundingSupport.g.cs @@ -14,18 +14,18 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport [global::System.Text.Json.Serialization.JsonPropertyName("segment")] public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Segment { get; set; } - /// - /// Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order). - /// - [global::System.Text.Json.Serialization.JsonPropertyName("groundingChunkIndices")] - public global::System.Collections.Generic.IList? GroundingChunkIndices { get; set; } - /// /// Optional. Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices. /// [global::System.Text.Json.Serialization.JsonPropertyName("confidenceScores")] public global::System.Collections.Generic.IList? ConfidenceScores { get; set; } + /// + /// Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order). + /// + [global::System.Text.Json.Serialization.JsonPropertyName("groundingChunkIndices")] + public global::System.Collections.Generic.IList? GroundingChunkIndices { get; set; } + /// /// Output only. Indices into the `parts` field of the candidate's content. These indices specify which rendered parts are associated with this support source.
/// Included only in responses @@ -45,12 +45,12 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport /// /// Segment of the content. /// - /// - /// Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order). - /// /// /// Optional. Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices. /// + /// + /// Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order). + /// /// /// Output only. Indices into the `parts` field of the candidate's content. These indices specify which rendered parts are associated with this support source.
/// Included only in responses @@ -60,13 +60,13 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport #endif public GoogleAiGenerativelanguageV1betaGroundingSupport( global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? segment, - global::System.Collections.Generic.IList? groundingChunkIndices, global::System.Collections.Generic.IList? confidenceScores, + global::System.Collections.Generic.IList? groundingChunkIndices, global::System.Collections.Generic.IList? renderedParts) { this.Segment = segment; - this.GroundingChunkIndices = groundingChunkIndices; this.ConfidenceScores = confidenceScores; + this.GroundingChunkIndices = groundingChunkIndices; this.RenderedParts = renderedParts; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleSearch.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleSearch.g.cs index 72c07004..74828ec0 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleSearch.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleSearch.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini ///
public sealed partial class GoogleSearch { - /// - /// Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("timeRangeFilter")] - public global::Google.Gemini.Interval? TimeRangeFilter { get; set; } - /// /// Different types of search that can be enabled on the GoogleSearch tool. /// [global::System.Text.Json.Serialization.JsonPropertyName("searchTypes")] public global::Google.Gemini.SearchTypes? SearchTypes { get; set; } + /// + /// Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("timeRangeFilter")] + public global::Google.Gemini.Interval? TimeRangeFilter { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class GoogleSearch /// /// Initializes a new instance of the class. /// - /// - /// Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. - /// /// /// Different types of search that can be enabled on the GoogleSearch tool. /// + /// + /// Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GoogleSearch( - global::Google.Gemini.Interval? timeRangeFilter, - global::Google.Gemini.SearchTypes? searchTypes) + global::Google.Gemini.SearchTypes? searchTypes, + global::Google.Gemini.Interval? timeRangeFilter) { - this.TimeRangeFilter = timeRangeFilter; this.SearchTypes = searchTypes; + this.TimeRangeFilter = timeRangeFilter; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingAttribution.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingAttribution.g.cs index 87cb92d8..5f952188 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingAttribution.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingAttribution.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class GroundingAttribution { - /// - /// Identifier for the source contributing to this attribution. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("sourceId")] - public global::Google.Gemini.AttributionSourceId? SourceId { get; set; } - /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// [global::System.Text.Json.Serialization.JsonPropertyName("content")] public global::Google.Gemini.Content? Content { get; set; } + /// + /// Identifier for the source contributing to this attribution. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("sourceId")] + public global::Google.Gemini.AttributionSourceId? SourceId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class GroundingAttribution /// /// Initializes a new instance of the class. /// - /// - /// Identifier for the source contributing to this attribution. - /// /// /// The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. /// + /// + /// Identifier for the source contributing to this attribution. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingAttribution( - global::Google.Gemini.AttributionSourceId? sourceId, - global::Google.Gemini.Content? content) + global::Google.Gemini.Content? content, + global::Google.Gemini.AttributionSourceId? sourceId) { - this.SourceId = sourceId; this.Content = content; + this.SourceId = sourceId; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunk.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunk.g.cs index 09092edf..d679dfec 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunk.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunk.g.cs @@ -14,6 +14,12 @@ public sealed partial class GroundingChunk [global::System.Text.Json.Serialization.JsonPropertyName("image")] public global::Google.Gemini.Image? Image { get; set; } + /// + /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("maps")] + public global::Google.Gemini.Maps? Maps { get; set; } + /// /// Chunk from the web. /// @@ -26,12 +32,6 @@ public sealed partial class GroundingChunk [global::System.Text.Json.Serialization.JsonPropertyName("retrievedContext")] public global::Google.Gemini.RetrievedContext? RetrievedContext { get; set; } - /// - /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("maps")] - public global::Google.Gemini.Maps? Maps { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -44,28 +44,28 @@ public sealed partial class GroundingChunk /// /// Chunk from image search. /// + /// + /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. + /// /// /// Chunk from the web. /// /// /// Chunk from context retrieved by the file search tool. /// - /// - /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingChunk( global::Google.Gemini.Image? image, + global::Google.Gemini.Maps? maps, global::Google.Gemini.Web? web, - global::Google.Gemini.RetrievedContext? retrievedContext, - global::Google.Gemini.Maps? maps) + global::Google.Gemini.RetrievedContext? retrievedContext) { this.Image = image; + this.Maps = maps; this.Web = web; this.RetrievedContext = retrievedContext; - this.Maps = maps; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunkCustomMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunkCustomMetadata.g.cs index f78a27bc..91a65016 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunkCustomMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingChunkCustomMetadata.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class GroundingChunkCustomMetadata { + /// + /// A list of string values. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("stringListValue")] + public global::Google.Gemini.GroundingChunkStringList? StringListValue { get; set; } + /// /// Optional. The string value of the metadata. /// @@ -20,12 +26,6 @@ public sealed partial class GroundingChunkCustomMetadata [global::System.Text.Json.Serialization.JsonPropertyName("key")] public string? Key { get; set; } - /// - /// A list of string values. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("stringListValue")] - public global::Google.Gemini.GroundingChunkStringList? StringListValue { get; set; } - /// /// Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used. /// @@ -41,15 +41,15 @@ public sealed partial class GroundingChunkCustomMetadata /// /// Initializes a new instance of the class. /// + /// + /// A list of string values. + /// /// /// Optional. The string value of the metadata. /// /// /// The key of the metadata. /// - /// - /// A list of string values. - /// /// /// Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used. /// @@ -57,14 +57,14 @@ public sealed partial class GroundingChunkCustomMetadata [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingChunkCustomMetadata( + global::Google.Gemini.GroundingChunkStringList? stringListValue, string? stringValue, string? key, - global::Google.Gemini.GroundingChunkStringList? stringListValue, float? numericValue) { + this.StringListValue = stringListValue; this.StringValue = stringValue; this.Key = key; - this.StringListValue = stringListValue; this.NumericValue = numericValue; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingMetadata.g.cs index 2c331f40..de97b23e 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GroundingMetadata.g.cs @@ -8,24 +8,6 @@ namespace Google.Gemini /// public sealed partial class GroundingMetadata { - /// - /// Image search queries used for grounding. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("imageSearchQueries")] - public global::System.Collections.Generic.IList? ImageSearchQueries { get; set; } - - /// - /// Web search queries for the following-up web search. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("webSearchQueries")] - public global::System.Collections.Generic.IList? WebSearchQueries { get; set; } - - /// - /// List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("groundingChunks")] - public global::System.Collections.Generic.IList? GroundingChunks { get; set; } - /// /// List of grounding support. /// @@ -50,6 +32,24 @@ public sealed partial class GroundingMetadata [global::System.Text.Json.Serialization.JsonPropertyName("searchEntryPoint")] public global::Google.Gemini.SearchEntryPoint? SearchEntryPoint { get; set; } + /// + /// List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("groundingChunks")] + public global::System.Collections.Generic.IList? GroundingChunks { get; set; } + + /// + /// Web search queries for the following-up web search. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("webSearchQueries")] + public global::System.Collections.Generic.IList? WebSearchQueries { get; set; } + + /// + /// Image search queries used for grounding. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("imageSearchQueries")] + public global::System.Collections.Generic.IList? ImageSearchQueries { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -59,15 +59,6 @@ public sealed partial class GroundingMetadata /// /// Initializes a new instance of the class. /// - /// - /// Image search queries used for grounding. - /// - /// - /// Web search queries for the following-up web search. - /// - /// - /// List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses. - /// /// /// List of grounding support. /// @@ -80,25 +71,34 @@ public sealed partial class GroundingMetadata /// /// Google search entry point. /// + /// + /// List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses. + /// + /// + /// Web search queries for the following-up web search. + /// + /// + /// Image search queries used for grounding. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingMetadata( - global::System.Collections.Generic.IList? imageSearchQueries, - global::System.Collections.Generic.IList? webSearchQueries, - global::System.Collections.Generic.IList? groundingChunks, global::System.Collections.Generic.IList? groundingSupports, global::Google.Gemini.RetrievalMetadata? retrievalMetadata, string? googleMapsWidgetContextToken, - global::Google.Gemini.SearchEntryPoint? searchEntryPoint) + global::Google.Gemini.SearchEntryPoint? searchEntryPoint, + global::System.Collections.Generic.IList? groundingChunks, + global::System.Collections.Generic.IList? webSearchQueries, + global::System.Collections.Generic.IList? imageSearchQueries) { - this.ImageSearchQueries = imageSearchQueries; - this.WebSearchQueries = webSearchQueries; - this.GroundingChunks = groundingChunks; this.GroundingSupports = groundingSupports; this.RetrievalMetadata = retrievalMetadata; this.GoogleMapsWidgetContextToken = googleMapsWidgetContextToken; this.SearchEntryPoint = searchEntryPoint; + this.GroundingChunks = groundingChunks; + this.WebSearchQueries = webSearchQueries; + this.ImageSearchQueries = imageSearchQueries; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Hyperparameters.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Hyperparameters.g.cs index cfd2c648..a49435d1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Hyperparameters.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Hyperparameters.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class Hyperparameters { - /// - /// Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("learningRateMultiplier")] - public float? LearningRateMultiplier { get; set; } - /// /// Optional. Immutable. The learning rate hyperparameter for tuning. If not set, a default of 0.001 or 0.0002 will be calculated based on the number of training examples. /// @@ -21,10 +15,10 @@ public sealed partial class Hyperparameters public float? LearningRate { get; set; } /// - /// Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used. + /// Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used. /// - [global::System.Text.Json.Serialization.JsonPropertyName("epochCount")] - public int? EpochCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("learningRateMultiplier")] + public float? LearningRateMultiplier { get; set; } /// /// Immutable. 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. @@ -32,6 +26,12 @@ public sealed partial class Hyperparameters [global::System.Text.Json.Serialization.JsonPropertyName("batchSize")] public int? BatchSize { get; set; } + /// + /// Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("epochCount")] + public int? EpochCount { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -41,31 +41,31 @@ public sealed partial class Hyperparameters /// /// Initializes a new instance of the class. /// - /// - /// Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used. - /// /// /// Optional. Immutable. The learning rate hyperparameter for tuning. If not set, a default of 0.001 or 0.0002 will be calculated based on the number of training examples. /// - /// - /// Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used. + /// + /// Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used. /// /// /// Immutable. 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. /// + /// + /// Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Hyperparameters( - float? learningRateMultiplier, float? learningRate, - int? epochCount, - int? batchSize) + float? learningRateMultiplier, + int? batchSize, + int? epochCount) { - this.LearningRateMultiplier = learningRateMultiplier; this.LearningRate = learningRate; - this.EpochCount = epochCount; + this.LearningRateMultiplier = learningRateMultiplier; this.BatchSize = batchSize; + this.EpochCount = epochCount; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Image.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Image.g.cs index 93d96d29..3bd16792 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Image.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Image.g.cs @@ -9,16 +9,10 @@ namespace Google.Gemini public sealed partial class Image { /// - /// The title of the web page that the image is from. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } - - /// - /// The web page URI for attribution. + /// The image asset URL. /// - [global::System.Text.Json.Serialization.JsonPropertyName("sourceUri")] - public string? SourceUri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("imageUri")] + public string? ImageUri { get; set; } /// /// The root domain of the web page that the image is from, e.g. "example.com". @@ -27,10 +21,16 @@ public sealed partial class Image public string? Domain { get; set; } /// - /// The image asset URL. + /// The title of the web page that the image is from. /// - [global::System.Text.Json.Serialization.JsonPropertyName("imageUri")] - public string? ImageUri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } + + /// + /// The web page URI for attribution. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("sourceUri")] + public string? SourceUri { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -41,31 +41,31 @@ public sealed partial class Image /// /// Initializes a new instance of the class. /// + /// + /// The image asset URL. + /// + /// + /// The root domain of the web page that the image is from, e.g. "example.com". + /// /// /// The title of the web page that the image is from. /// /// /// The web page URI for attribution. /// - /// - /// The root domain of the web page that the image is from, e.g. "example.com". - /// - /// - /// The image asset URL. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Image( - string? title, - string? sourceUri, + string? imageUri, string? domain, - string? imageUri) + string? title, + string? sourceUri) { + this.ImageUri = imageUri; + this.Domain = domain; this.Title = title; this.SourceUri = sourceUri; - this.Domain = domain; - this.ImageUri = imageUri; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImageResponseFormat.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImageResponseFormat.g.cs index b447a568..b2adf4b7 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImageResponseFormat.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImageResponseFormat.g.cs @@ -15,6 +15,13 @@ public sealed partial class ImageResponseFormat [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatAspectRatioJsonConverter))] public global::Google.Gemini.ImageResponseFormatAspectRatio? AspectRatio { get; set; } + /// + /// Optional. The MIME type of the image output. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeJsonConverter))] + public global::Google.Gemini.ImageResponseFormatMimeType? MimeType { get; set; } + /// /// Optional. The size of the image output. /// @@ -29,13 +36,6 @@ public sealed partial class ImageResponseFormat [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatDeliveryJsonConverter))] public global::Google.Gemini.ImageResponseFormatDelivery? Delivery { get; set; } - /// - /// Optional. The MIME type of the image output. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ImageResponseFormatMimeTypeJsonConverter))] - public global::Google.Gemini.ImageResponseFormatMimeType? MimeType { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -48,28 +48,28 @@ public sealed partial class ImageResponseFormat /// /// Optional. The aspect ratio for the image output. /// + /// + /// Optional. The MIME type of the image output. + /// /// /// Optional. The size of the image output. /// /// /// Optional. The delivery mode for the image output. /// - /// - /// Optional. The MIME type of the image output. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ImageResponseFormat( global::Google.Gemini.ImageResponseFormatAspectRatio? aspectRatio, + global::Google.Gemini.ImageResponseFormatMimeType? mimeType, global::Google.Gemini.ImageResponseFormatImageSize? imageSize, - global::Google.Gemini.ImageResponseFormatDelivery? delivery, - global::Google.Gemini.ImageResponseFormatMimeType? mimeType) + global::Google.Gemini.ImageResponseFormatDelivery? delivery) { this.AspectRatio = aspectRatio; + this.MimeType = mimeType; this.ImageSize = imageSize; this.Delivery = delivery; - this.MimeType = mimeType; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImportFileRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImportFileRequest.g.cs index 963b5b19..b5598045 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImportFileRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ImportFileRequest.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ImportFileRequest { - /// - /// Required. The name of the `File` to import. Example: `files/abc-123` - /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileName")] - public string? FileName { get; set; } - /// /// Custom metadata to be associated with the file. /// [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] public global::System.Collections.Generic.IList? CustomMetadata { get; set; } + /// + /// Required. The name of the `File` to import. Example: `files/abc-123` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("fileName")] + public string? FileName { get; set; } + /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -35,12 +35,12 @@ public sealed partial class ImportFileRequest /// /// Initializes a new instance of the class. /// - /// - /// Required. The name of the `File` to import. Example: `files/abc-123` - /// /// /// Custom metadata to be associated with the file. /// + /// + /// Required. The name of the `File` to import. Example: `files/abc-123` + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -48,12 +48,12 @@ public sealed partial class ImportFileRequest [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ImportFileRequest( - string? fileName, global::System.Collections.Generic.IList? customMetadata, + string? fileName, global::Google.Gemini.ChunkingConfig? chunkingConfig) { - this.FileName = fileName; this.CustomMetadata = customMetadata; + this.FileName = fileName; this.ChunkingConfig = chunkingConfig; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentResponse.g.cs index 21763257..1dc7eb0f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentResponse.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class InlinedEmbedContentResponse { /// - /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). + /// The response to an `EmbedContentRequest`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("error")] - public global::Google.Gemini.Status? Error { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public global::Google.Gemini.EmbedContentResponse? Response { get; set; } /// /// Output only. The metadata associated with the request.
@@ -22,10 +22,10 @@ public sealed partial class InlinedEmbedContentResponse public object? Metadata { get; set; } /// - /// The response to an `EmbedContentRequest`. + /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public global::Google.Gemini.EmbedContentResponse? Response { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("error")] + public global::Google.Gemini.Status? Error { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -36,27 +36,27 @@ public sealed partial class InlinedEmbedContentResponse /// /// Initializes a new instance of the class. /// - /// - /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). + /// + /// The response to an `EmbedContentRequest`. /// /// /// Output only. The metadata associated with the request.
/// Included only in responses /// - /// - /// The response to an `EmbedContentRequest`. + /// + /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedEmbedContentResponse( - global::Google.Gemini.Status? error, + global::Google.Gemini.EmbedContentResponse? response, object? metadata, - global::Google.Gemini.EmbedContentResponse? response) + global::Google.Gemini.Status? error) { - this.Error = error; - this.Metadata = metadata; this.Response = response; + this.Metadata = metadata; + this.Error = error; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedResponse.g.cs index 85a0a538..1eefda6a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedResponse.g.cs @@ -9,10 +9,11 @@ namespace Google.Gemini public sealed partial class InlinedResponse { /// - /// Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`. + /// Output only. The metadata associated with the request.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public global::Google.Gemini.GenerateContentResponse? Response { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] + public object? Metadata { get; set; } /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). @@ -21,11 +22,10 @@ public sealed partial class InlinedResponse public global::Google.Gemini.Status? Error { get; set; } /// - /// Output only. The metadata associated with the request.
- /// Included only in responses + /// Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] - public object? Metadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public global::Google.Gemini.GenerateContentResponse? Response { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -36,27 +36,27 @@ public sealed partial class InlinedResponse /// /// Initializes a new instance of the class. /// - /// - /// Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`. + /// + /// Output only. The metadata associated with the request.
+ /// Included only in responses /// /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// - /// - /// Output only. The metadata associated with the request.
- /// Included only in responses + /// + /// Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedResponse( - global::Google.Gemini.GenerateContentResponse? response, + object? metadata, global::Google.Gemini.Status? error, - object? metadata) + global::Google.Gemini.GenerateContentResponse? response) { - this.Response = response; - this.Error = error; this.Metadata = metadata; + this.Error = error; + this.Response = response; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputConfig.g.cs index 3d0f91ff..736a29fe 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputConfig.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class InputConfig { - /// - /// The name of the `File` containing the input requests. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileName")] - public string? FileName { get; set; } - /// /// The requests to be processed in the batch if provided as part of the batch creation request. /// [global::System.Text.Json.Serialization.JsonPropertyName("requests")] public global::Google.Gemini.InlinedRequests? Requests { get; set; } + /// + /// The name of the `File` containing the input requests. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("fileName")] + public string? FileName { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class InputConfig /// /// Initializes a new instance of the class. /// - /// - /// The name of the `File` containing the input requests. - /// /// /// The requests to be processed in the batch if provided as part of the batch creation request. /// + /// + /// The name of the `File` containing the input requests. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InputConfig( - string? fileName, - global::Google.Gemini.InlinedRequests? requests) + global::Google.Gemini.InlinedRequests? requests, + string? fileName) { - this.FileName = fileName; this.Requests = requests; + this.FileName = fileName; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListEnvironmentsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListEnvironmentsResponse.g.cs index f5a2d0d7..616b816d 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListEnvironmentsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListEnvironmentsResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListEnvironmentsResponse { - /// - /// Environments belonging to the provided project. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("environments")] - public global::System.Collections.Generic.IList? Environments { get; set; } - /// /// Pagination token. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// Environments belonging to the provided project. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("environments")] + public global::System.Collections.Generic.IList? Environments { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListEnvironmentsResponse /// /// Initializes a new instance of the class. /// - /// - /// Environments belonging to the provided project. - /// /// /// Pagination token. /// + /// + /// Environments belonging to the provided project. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListEnvironmentsResponse( - global::System.Collections.Generic.IList? environments, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? environments) { - this.Environments = environments; this.NextPageToken = nextPageToken; + this.Environments = environments; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFileSearchStoresResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFileSearchStoresResponse.g.cs index af0c7343..965fc58d 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFileSearchStoresResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFileSearchStoresResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListFileSearchStoresResponse { - /// - /// The returned rag_stores. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileSearchStores")] - public global::System.Collections.Generic.IList? FileSearchStores { get; set; } - /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// The returned rag_stores. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("fileSearchStores")] + public global::System.Collections.Generic.IList? FileSearchStores { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListFileSearchStoresResponse /// /// Initializes a new instance of the class. /// - /// - /// The returned rag_stores. - /// /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. /// + /// + /// The returned rag_stores. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListFileSearchStoresResponse( - global::System.Collections.Generic.IList? fileSearchStores, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? fileSearchStores) { - this.FileSearchStores = fileSearchStores; this.NextPageToken = nextPageToken; + this.FileSearchStores = fileSearchStores; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFilesResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFilesResponse.g.cs index 56d16d70..31720695 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFilesResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListFilesResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListFilesResponse { - /// - /// A token that can be sent as a `page_token` into a subsequent `ListFiles` call. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] - public string? NextPageToken { get; set; } - /// /// The list of `File`s. /// [global::System.Text.Json.Serialization.JsonPropertyName("files")] public global::System.Collections.Generic.IList? Files { get; set; } + /// + /// A token that can be sent as a `page_token` into a subsequent `ListFiles` call. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] + public string? NextPageToken { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListFilesResponse /// /// Initializes a new instance of the class. /// - /// - /// A token that can be sent as a `page_token` into a subsequent `ListFiles` call. - /// /// /// The list of `File`s. /// + /// + /// A token that can be sent as a `page_token` into a subsequent `ListFiles` call. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListFilesResponse( - string? nextPageToken, - global::System.Collections.Generic.IList? files) + global::System.Collections.Generic.IList? files, + string? nextPageToken) { - this.NextPageToken = nextPageToken; this.Files = files; + this.NextPageToken = nextPageToken; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListModelsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListModelsResponse.g.cs index d4af5350..76ed7050 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListModelsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListModelsResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListModelsResponse { - /// - /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] - public string? NextPageToken { get; set; } - /// /// The returned Models. /// [global::System.Text.Json.Serialization.JsonPropertyName("models")] public global::System.Collections.Generic.IList? Models { get; set; } + /// + /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] + public string? NextPageToken { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListModelsResponse /// /// Initializes a new instance of the class. /// - /// - /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. - /// /// /// The returned Models. /// + /// + /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListModelsResponse( - string? nextPageToken, - global::System.Collections.Generic.IList? models) + global::System.Collections.Generic.IList? models, + string? nextPageToken) { - this.NextPageToken = nextPageToken; this.Models = models; + this.NextPageToken = nextPageToken; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListOperationsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListOperationsResponse.g.cs index 9f0d9512..b6386440 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListOperationsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListOperationsResponse.g.cs @@ -14,18 +14,18 @@ public sealed partial class ListOperationsResponse [global::System.Text.Json.Serialization.JsonPropertyName("operations")] public global::System.Collections.Generic.IList? Operations { get; set; } - /// - /// Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("unreachable")] - public global::System.Collections.Generic.IList? Unreachable { get; set; } - /// /// The standard List next-page token. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("unreachable")] + public global::System.Collections.Generic.IList? Unreachable { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -38,23 +38,23 @@ public sealed partial class ListOperationsResponse /// /// A list of operations that matches the specified filter in the request. /// - /// - /// Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. - /// /// /// The standard List next-page token. /// + /// + /// Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListOperationsResponse( global::System.Collections.Generic.IList? operations, - global::System.Collections.Generic.IList? unreachable, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? unreachable) { this.Operations = operations; - this.Unreachable = unreachable; this.NextPageToken = nextPageToken; + this.Unreachable = unreachable; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListPermissionsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListPermissionsResponse.g.cs index 800f4e39..fb6d6f43 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListPermissionsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListPermissionsResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListPermissionsResponse { - /// - /// Returned permissions. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("permissions")] - public global::System.Collections.Generic.IList? Permissions { get; set; } - /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// Returned permissions. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("permissions")] + public global::System.Collections.Generic.IList? Permissions { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListPermissionsResponse /// /// Initializes a new instance of the class. /// - /// - /// Returned permissions. - /// /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages. /// + /// + /// Returned permissions. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListPermissionsResponse( - global::System.Collections.Generic.IList? permissions, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? permissions) { - this.Permissions = permissions; this.NextPageToken = nextPageToken; + this.Permissions = permissions; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResult.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResult.g.cs index 926abc0e..8befbd8f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResult.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResult.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class LogprobsResult { - /// - /// Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("chosenCandidates")] - public global::System.Collections.Generic.IList? ChosenCandidates { get; set; } - /// /// Sum of log probabilities for all tokens. /// @@ -26,6 +20,12 @@ public sealed partial class LogprobsResult [global::System.Text.Json.Serialization.JsonPropertyName("topCandidates")] public global::System.Collections.Generic.IList? TopCandidates { get; set; } + /// + /// Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("chosenCandidates")] + public global::System.Collections.Generic.IList? ChosenCandidates { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -35,26 +35,26 @@ public sealed partial class LogprobsResult /// /// Initializes a new instance of the class. /// - /// - /// Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates. - /// /// /// Sum of log probabilities for all tokens. /// /// /// Length = total number of decoding steps. /// + /// + /// Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public LogprobsResult( - global::System.Collections.Generic.IList? chosenCandidates, float? logProbabilitySum, - global::System.Collections.Generic.IList? topCandidates) + global::System.Collections.Generic.IList? topCandidates, + global::System.Collections.Generic.IList? chosenCandidates) { - this.ChosenCandidates = chosenCandidates; this.LogProbabilitySum = logProbabilitySum; this.TopCandidates = topCandidates; + this.ChosenCandidates = chosenCandidates; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Maps.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Maps.g.cs index f67666c3..747107e4 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Maps.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Maps.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class Maps { + /// + /// URI reference of the place. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } + /// /// Text description of the place answer. /// @@ -15,10 +21,10 @@ public sealed partial class Maps public string? Text { get; set; } /// - /// The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place. + /// Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: "does Bar Foo have Wifi" or "is Foo Bar wheelchair accessible?"). Currently we only support review snippets as sources. /// - [global::System.Text.Json.Serialization.JsonPropertyName("placeId")] - public string? PlaceId { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("placeAnswerSources")] + public global::Google.Gemini.PlaceAnswerSources? PlaceAnswerSources { get; set; } /// /// Title of the place. @@ -27,16 +33,10 @@ public sealed partial class Maps public string? Title { get; set; } /// - /// Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: "does Bar Foo have Wifi" or "is Foo Bar wheelchair accessible?"). Currently we only support review snippets as sources. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("placeAnswerSources")] - public global::Google.Gemini.PlaceAnswerSources? PlaceAnswerSources { get; set; } - - /// - /// URI reference of the place. + /// The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place. /// - [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("placeId")] + public string? PlaceId { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -47,36 +47,36 @@ public sealed partial class Maps /// /// Initializes a new instance of the class. /// + /// + /// URI reference of the place. + /// /// /// Text description of the place answer. /// - /// - /// The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place. + /// + /// Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: "does Bar Foo have Wifi" or "is Foo Bar wheelchair accessible?"). Currently we only support review snippets as sources. /// /// /// Title of the place. /// - /// - /// Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: "does Bar Foo have Wifi" or "is Foo Bar wheelchair accessible?"). Currently we only support review snippets as sources. - /// - /// - /// URI reference of the place. + /// + /// The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Maps( + string? uri, string? text, - string? placeId, - string? title, global::Google.Gemini.PlaceAnswerSources? placeAnswerSources, - string? uri) + string? title, + string? placeId) { + this.Uri = uri; this.Text = text; - this.PlaceId = placeId; - this.Title = title; this.PlaceAnswerSources = placeAnswerSources; - this.Uri = uri; + this.Title = title; + this.PlaceId = placeId; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Model.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Model.g.cs index bc65c9fb..67433d6a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Model.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Model.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class Model { + /// + /// A short description of the model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } + /// /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) /// @@ -20,24 +26,6 @@ public sealed partial class Model [global::System.Text.Json.Serialization.JsonPropertyName("outputTokenLimit")] public int? OutputTokenLimit { get; set; } - /// - /// The human-readable name of the model. E.g. "Gemini 1.5 Flash". The name can be up to 128 characters long and can consist of any UTF-8 characters. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } - - /// - /// Whether the model supports thinking. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("thinking")] - public bool? Thinking { get; set; } - - /// - /// Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] - public float? Temperature { get; set; } - /// /// Required. The resource name of the `Model`. Refer to [Model variants](https://ai.google.dev/gemini-api/docs/models/gemini#model-variations) for all allowed values. Format: `models/{model}` with a `{model}` naming convention of: * "{base_model_id}-{version}" Examples: * `models/gemini-1.5-flash-001` /// @@ -50,12 +38,30 @@ public sealed partial class Model [global::System.Text.Json.Serialization.JsonPropertyName("inputTokenLimit")] public int? InputTokenLimit { get; set; } + /// + /// The human-readable name of the model. E.g. "Gemini 1.5 Flash". The name can be up to 128 characters long and can consist of any UTF-8 characters. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } + + /// + /// Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] + public float? Temperature { get; set; } + /// /// The maximum temperature this model can use. /// [global::System.Text.Json.Serialization.JsonPropertyName("maxTemperature")] public float? MaxTemperature { get; set; } + /// + /// Whether the model supports thinking. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("thinking")] + public bool? Thinking { get; set; } + /// /// For [Nucleus sampling](https://ai.google.dev/gemini-api/docs/prompting-strategies#top-p). Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be used by the backend while making the call to the model. /// @@ -63,10 +69,10 @@ public sealed partial class Model public float? TopP { get; set; } /// - /// A short description of the model. + /// For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter. /// - [global::System.Text.Json.Serialization.JsonPropertyName("description")] - public string? Description { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topK")] + public int? TopK { get; set; } /// /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` @@ -80,12 +86,6 @@ public sealed partial class Model [global::System.Text.Json.Serialization.JsonPropertyName("supportedGenerationMethods")] public global::System.Collections.Generic.IList? SupportedGenerationMethods { get; set; } - /// - /// For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("topK")] - public int? TopK { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -95,35 +95,38 @@ public sealed partial class Model /// /// Initializes a new instance of the class. /// + /// + /// A short description of the model. + /// /// /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) /// /// /// Maximum number of output tokens available for this model. /// - /// - /// The human-readable name of the model. E.g. "Gemini 1.5 Flash". The name can be up to 128 characters long and can consist of any UTF-8 characters. - /// - /// - /// Whether the model supports thinking. - /// - /// - /// Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model. - /// /// /// Required. The resource name of the `Model`. Refer to [Model variants](https://ai.google.dev/gemini-api/docs/models/gemini#model-variations) for all allowed values. Format: `models/{model}` with a `{model}` naming convention of: * "{base_model_id}-{version}" Examples: * `models/gemini-1.5-flash-001` /// /// /// Maximum number of input tokens allowed for this model. /// + /// + /// The human-readable name of the model. E.g. "Gemini 1.5 Flash". The name can be up to 128 characters long and can consist of any UTF-8 characters. + /// + /// + /// Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model. + /// /// /// The maximum temperature this model can use. /// + /// + /// Whether the model supports thinking. + /// /// /// For [Nucleus sampling](https://ai.google.dev/gemini-api/docs/prompting-strategies#top-p). Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be used by the backend while making the call to the model. /// - /// - /// A short description of the model. + /// + /// For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter. /// /// /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` @@ -131,40 +134,37 @@ public sealed partial class Model /// /// The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`. /// - /// - /// For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Model( + string? description, string? version, int? outputTokenLimit, - string? displayName, - bool? thinking, - float? temperature, string? name, int? inputTokenLimit, + string? displayName, + float? temperature, float? maxTemperature, + bool? thinking, float? topP, - string? description, + int? topK, string? baseModelId, - global::System.Collections.Generic.IList? supportedGenerationMethods, - int? topK) + global::System.Collections.Generic.IList? supportedGenerationMethods) { + this.Description = description; this.Version = version; this.OutputTokenLimit = outputTokenLimit; - this.DisplayName = displayName; - this.Thinking = thinking; - this.Temperature = temperature; this.Name = name; this.InputTokenLimit = inputTokenLimit; + this.DisplayName = displayName; + this.Temperature = temperature; this.MaxTemperature = maxTemperature; + this.Thinking = thinking; this.TopP = topP; - this.Description = description; + this.TopK = topK; this.BaseModelId = baseModelId; this.SupportedGenerationMethods = supportedGenerationMethods; - this.TopK = topK; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Operation.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Operation.g.cs index 86883b4b..5e2194d6 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Operation.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Operation.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class Operation { /// - /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("done")] - public bool? Done { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public object? Response { get; set; } /// /// The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. @@ -20,18 +20,18 @@ public sealed partial class Operation [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } - /// - /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public object? Response { get; set; } - /// /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] public object? Metadata { get; set; } + /// + /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("done")] + public bool? Done { get; set; } + /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// @@ -47,18 +47,18 @@ public sealed partial class Operation /// /// Initializes a new instance of the class. /// - /// - /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// + /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. /// /// /// The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. /// - /// - /// The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. - /// /// /// Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. /// + /// + /// If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. + /// /// /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). /// @@ -66,16 +66,16 @@ public sealed partial class Operation [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Operation( - bool? done, - string? name, object? response, + string? name, object? metadata, + bool? done, global::Google.Gemini.Status? error) { - this.Done = done; - this.Name = name; this.Response = response; + this.Name = name; this.Metadata = metadata; + this.Done = done; this.Error = error; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Part.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Part.g.cs index 5442fce1..fc4ac492 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Part.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Part.g.cs @@ -11,16 +11,10 @@ namespace Google.Gemini public sealed partial class Part { /// - /// Media resolution for tokenization. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mediaResolution")] - public global::Google.Gemini.V1mainMediaResolution? MediaResolution { get; set; } - - /// - /// A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`. + /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. /// - [global::System.Text.Json.Serialization.JsonPropertyName("toolCall")] - public global::Google.Gemini.ToolCall? ToolCall { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("codeExecutionResult")] + public global::Google.Gemini.CodeExecutionResult? CodeExecutionResult { get; set; } /// /// Inline text. @@ -29,10 +23,16 @@ public sealed partial class Part public string? Text { get; set; } /// - /// The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`. + /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. /// - [global::System.Text.Json.Serialization.JsonPropertyName("toolResponse")] - public global::Google.Gemini.ToolResponse? ToolResponse { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thoughtSignature")] + public byte[]? ThoughtSignature { get; set; } + + /// + /// Custom metadata associated with the Part. Agents using genai.Part as content representation may need to keep track of the additional information. For example it can be name of a file/source from which the Part originates or a way to multiplex multiple Part streams. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("partMetadata")] + public object? PartMetadata { get; set; } /// /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. @@ -41,46 +41,47 @@ public sealed partial class Part public global::Google.Gemini.Blob? InlineData { get; set; } /// - /// Optional. Indicates if the part is thought from the model. + /// A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. /// - [global::System.Text.Json.Serialization.JsonPropertyName("thought")] - public bool? Thought { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("functionCall")] + public global::Google.Gemini.FunctionCall? FunctionCall { get; set; } /// - /// Custom metadata associated with the Part. Agents using genai.Part as content representation may need to keep track of the additional information. For example it can be name of a file/source from which the Part originates or a way to multiplex multiple Part streams. + /// URI based data. /// - [global::System.Text.Json.Serialization.JsonPropertyName("partMetadata")] - public object? PartMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("fileData")] + public global::Google.Gemini.FileData? FileData { get; set; } /// - /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. + /// Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content. /// - [global::System.Text.Json.Serialization.JsonPropertyName("codeExecutionResult")] - public global::Google.Gemini.CodeExecutionResult? CodeExecutionResult { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] + [global::System.Obsolete("This property marked as deprecated.")] + public global::Google.Gemini.VideoMetadata? VideoMetadata { get; set; } /// - /// A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. + /// Optional. Indicates if the part is thought from the model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("functionCall")] - public global::Google.Gemini.FunctionCall? FunctionCall { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thought")] + public bool? Thought { get; set; } /// - /// Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated. + /// A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("executableCode")] - public global::Google.Gemini.ExecutableCode? ExecutableCode { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("toolCall")] + public global::Google.Gemini.ToolCall? ToolCall { get; set; } /// - /// URI based data. + /// The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileData")] - public global::Google.Gemini.FileData? FileData { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("toolResponse")] + public global::Google.Gemini.ToolResponse? ToolResponse { get; set; } /// - /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. + /// Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated. /// - [global::System.Text.Json.Serialization.JsonPropertyName("thoughtSignature")] - public byte[]? ThoughtSignature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("executableCode")] + public global::Google.Gemini.ExecutableCode? ExecutableCode { get; set; } /// /// The result output from a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model. This should contain the result of a`FunctionCall` made based on model prediction. @@ -89,11 +90,10 @@ public sealed partial class Part public global::Google.Gemini.FunctionResponse? FunctionResponse { get; set; } /// - /// Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content. + /// Media resolution for tokenization. /// - [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] - [global::System.Obsolete("This property marked as deprecated.")] - public global::Google.Gemini.VideoMetadata? VideoMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mediaResolution")] + public global::Google.Gemini.V1mainMediaResolution? MediaResolution { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -104,76 +104,76 @@ public sealed partial class Part /// /// Initializes a new instance of the class. /// - /// - /// Media resolution for tokenization. - /// - /// - /// A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`. + /// + /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. /// /// /// Inline text. /// - /// - /// The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`. - /// - /// - /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. - /// - /// - /// Optional. Indicates if the part is thought from the model. + /// + /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. /// /// /// Custom metadata associated with the Part. Agents using genai.Part as content representation may need to keep track of the additional information. For example it can be name of a file/source from which the Part originates or a way to multiplex multiple Part streams. /// - /// - /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. + /// + /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. /// /// /// A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. /// - /// - /// Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated. - /// /// /// URI based data. /// - /// - /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. + /// + /// Optional. Indicates if the part is thought from the model. + /// + /// + /// A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`. + /// + /// + /// The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`. + /// + /// + /// Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated. /// /// /// The result output from a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model. This should contain the result of a`FunctionCall` made based on model prediction. /// + /// + /// Media resolution for tokenization. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Part( - global::Google.Gemini.V1mainMediaResolution? mediaResolution, - global::Google.Gemini.ToolCall? toolCall, + global::Google.Gemini.CodeExecutionResult? codeExecutionResult, string? text, - global::Google.Gemini.ToolResponse? toolResponse, - global::Google.Gemini.Blob? inlineData, - bool? thought, + byte[]? thoughtSignature, object? partMetadata, - global::Google.Gemini.CodeExecutionResult? codeExecutionResult, + global::Google.Gemini.Blob? inlineData, global::Google.Gemini.FunctionCall? functionCall, - global::Google.Gemini.ExecutableCode? executableCode, global::Google.Gemini.FileData? fileData, - byte[]? thoughtSignature, - global::Google.Gemini.FunctionResponse? functionResponse) + bool? thought, + global::Google.Gemini.ToolCall? toolCall, + global::Google.Gemini.ToolResponse? toolResponse, + global::Google.Gemini.ExecutableCode? executableCode, + global::Google.Gemini.FunctionResponse? functionResponse, + global::Google.Gemini.V1mainMediaResolution? mediaResolution) { - this.MediaResolution = mediaResolution; - this.ToolCall = toolCall; + this.CodeExecutionResult = codeExecutionResult; this.Text = text; - this.ToolResponse = toolResponse; - this.InlineData = inlineData; - this.Thought = thought; + this.ThoughtSignature = thoughtSignature; this.PartMetadata = partMetadata; - this.CodeExecutionResult = codeExecutionResult; + this.InlineData = inlineData; this.FunctionCall = functionCall; - this.ExecutableCode = executableCode; this.FileData = fileData; - this.ThoughtSignature = thoughtSignature; + this.Thought = thought; + this.ToolCall = toolCall; + this.ToolResponse = toolResponse; + this.ExecutableCode = executableCode; this.FunctionResponse = functionResponse; + this.MediaResolution = mediaResolution; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Permission.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Permission.g.cs index a1040a1e..6b2d9560 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Permission.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Permission.g.cs @@ -8,13 +8,6 @@ namespace Google.Gemini /// public sealed partial class Permission { - /// - /// Required. The role granted by this permission. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.PermissionRoleJsonConverter))] - public global::Google.Gemini.PermissionRole? Role { get; set; } - /// /// Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.
/// Included only in responses @@ -22,6 +15,19 @@ public sealed partial class Permission [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } + /// + /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("emailAddress")] + public string? EmailAddress { get; set; } + + /// + /// Required. The role granted by this permission. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("role")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.PermissionRoleJsonConverter))] + public global::Google.Gemini.PermissionRole? Role { get; set; } + /// /// Optional. Immutable. The type of the grantee. /// @@ -29,12 +35,6 @@ public sealed partial class Permission [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.PermissionGranteeTypeJsonConverter))] public global::Google.Gemini.PermissionGranteeType? GranteeType { get; set; } - /// - /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("emailAddress")] - public string? EmailAddress { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -44,32 +44,32 @@ public sealed partial class Permission /// /// Initializes a new instance of the class. /// - /// - /// Required. The role granted by this permission. - /// /// /// Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.
/// Included only in responses /// - /// - /// Optional. Immutable. The type of the grantee. - /// /// /// Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE. /// + /// + /// Required. The role granted by this permission. + /// + /// + /// Optional. Immutable. The type of the grantee. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Permission( - global::Google.Gemini.PermissionRole? role, string? name, - global::Google.Gemini.PermissionGranteeType? granteeType, - string? emailAddress) + string? emailAddress, + global::Google.Gemini.PermissionRole? role, + global::Google.Gemini.PermissionGranteeType? granteeType) { - this.Role = role; this.Name = name; - this.GranteeType = granteeType; this.EmailAddress = emailAddress; + this.Role = role; + this.GranteeType = granteeType; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.PromptFeedback.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.PromptFeedback.g.cs index fccaca72..08e93e4a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.PromptFeedback.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.PromptFeedback.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class PromptFeedback { - /// - /// Ratings for safety of the prompt. There is at most one rating per category. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("safetyRatings")] - public global::System.Collections.Generic.IList? SafetyRatings { get; set; } - /// /// Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt. /// @@ -21,6 +15,12 @@ public sealed partial class PromptFeedback [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonJsonConverter))] public global::Google.Gemini.PromptFeedbackBlockReason? BlockReason { get; set; } + /// + /// Ratings for safety of the prompt. There is at most one rating per category. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("safetyRatings")] + public global::System.Collections.Generic.IList? SafetyRatings { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -30,21 +30,21 @@ public sealed partial class PromptFeedback /// /// Initializes a new instance of the class. /// - /// - /// Ratings for safety of the prompt. There is at most one rating per category. - /// /// /// Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt. /// + /// + /// Ratings for safety of the prompt. There is at most one rating per category. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public PromptFeedback( - global::System.Collections.Generic.IList? safetyRatings, - global::Google.Gemini.PromptFeedbackBlockReason? blockReason) + global::Google.Gemini.PromptFeedbackBlockReason? blockReason, + global::System.Collections.Generic.IList? safetyRatings) { - this.SafetyRatings = safetyRatings; this.BlockReason = blockReason; + this.SafetyRatings = safetyRatings; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ResponseFormatConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ResponseFormatConfig.g.cs index fafacf58..2cd3705a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ResponseFormatConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ResponseFormatConfig.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class ResponseFormatConfig { - /// - /// Configuration for audio output format. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("audio")] - public global::Google.Gemini.AudioResponseFormat? Audio { get; set; } - /// /// Configuration for image output format. /// @@ -26,6 +20,12 @@ public sealed partial class ResponseFormatConfig [global::System.Text.Json.Serialization.JsonPropertyName("text")] public global::Google.Gemini.TextResponseFormat? Text { get; set; } + /// + /// Configuration for audio output format. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("audio")] + public global::Google.Gemini.AudioResponseFormat? Audio { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -35,26 +35,26 @@ public sealed partial class ResponseFormatConfig /// /// Initializes a new instance of the class. /// - /// - /// Configuration for audio output format. - /// /// /// Configuration for image output format. /// /// /// Configuration for text output format. /// + /// + /// Configuration for audio output format. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ResponseFormatConfig( - global::Google.Gemini.AudioResponseFormat? audio, global::Google.Gemini.ImageResponseFormat? image, - global::Google.Gemini.TextResponseFormat? text) + global::Google.Gemini.TextResponseFormat? text, + global::Google.Gemini.AudioResponseFormat? audio) { - this.Audio = audio; this.Image = image; this.Text = text; + this.Audio = audio; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.RetrievedContext.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.RetrievedContext.g.cs index 40d4e079..eceb2d2b 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.RetrievedContext.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.RetrievedContext.g.cs @@ -8,18 +8,6 @@ namespace Google.Gemini /// public sealed partial class RetrievedContext { - /// - /// Optional. Title of the document. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } - - /// - /// Optional. URI reference of the semantic retrieval document. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } - /// /// Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123` /// @@ -27,10 +15,10 @@ public sealed partial class RetrievedContext public string? FileSearchStore { get; set; } /// - /// Optional. Page number of the retrieved context, if applicable. + /// Optional. Title of the document. /// - [global::System.Text.Json.Serialization.JsonPropertyName("pageNumber")] - public int? PageNumber { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } /// /// Optional. User-provided metadata about the retrieved context. @@ -38,12 +26,24 @@ public sealed partial class RetrievedContext [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] public global::System.Collections.Generic.IList? CustomMetadata { get; set; } + /// + /// Optional. Page number of the retrieved context, if applicable. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("pageNumber")] + public int? PageNumber { get; set; } + /// /// Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id} /// [global::System.Text.Json.Serialization.JsonPropertyName("mediaId")] public string? MediaId { get; set; } + /// + /// Optional. URI reference of the semantic retrieval document. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } + /// /// Optional. Text of the chunk. /// @@ -59,24 +59,24 @@ public sealed partial class RetrievedContext /// /// Initializes a new instance of the class. /// - /// - /// Optional. Title of the document. - /// - /// - /// Optional. URI reference of the semantic retrieval document. - /// /// /// Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123` /// - /// - /// Optional. Page number of the retrieved context, if applicable. + /// + /// Optional. Title of the document. /// /// /// Optional. User-provided metadata about the retrieved context. /// + /// + /// Optional. Page number of the retrieved context, if applicable. + /// /// /// Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id} /// + /// + /// Optional. URI reference of the semantic retrieval document. + /// /// /// Optional. Text of the chunk. /// @@ -84,20 +84,20 @@ public sealed partial class RetrievedContext [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public RetrievedContext( - string? title, - string? uri, string? fileSearchStore, - int? pageNumber, + string? title, global::System.Collections.Generic.IList? customMetadata, + int? pageNumber, string? mediaId, + string? uri, string? text) { - this.Title = title; - this.Uri = uri; this.FileSearchStore = fileSearchStore; - this.PageNumber = pageNumber; + this.Title = title; this.CustomMetadata = customMetadata; + this.PageNumber = pageNumber; this.MediaId = mediaId; + this.Uri = uri; this.Text = text; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ReviewSnippet.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ReviewSnippet.g.cs index ce8ec4f0..19c4fb32 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ReviewSnippet.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ReviewSnippet.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ReviewSnippet { - /// - /// A link that corresponds to the user review on Google Maps. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleMapsUri")] - public string? GoogleMapsUri { get; set; } - /// /// The ID of the review snippet. /// [global::System.Text.Json.Serialization.JsonPropertyName("reviewId")] public string? ReviewId { get; set; } + /// + /// A link that corresponds to the user review on Google Maps. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("googleMapsUri")] + public string? GoogleMapsUri { get; set; } + /// /// Title of the review. /// @@ -35,12 +35,12 @@ public sealed partial class ReviewSnippet /// /// Initializes a new instance of the class. /// - /// - /// A link that corresponds to the user review on Google Maps. - /// /// /// The ID of the review snippet. /// + /// + /// A link that corresponds to the user review on Google Maps. + /// /// /// Title of the review. /// @@ -48,12 +48,12 @@ public sealed partial class ReviewSnippet [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ReviewSnippet( - string? googleMapsUri, string? reviewId, + string? googleMapsUri, string? title) { - this.GoogleMapsUri = googleMapsUri; this.ReviewId = reviewId; + this.GoogleMapsUri = googleMapsUri; this.Title = title; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetyRating.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetyRating.g.cs index 7eb80d6f..7c955ca3 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetyRating.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetyRating.g.cs @@ -15,6 +15,12 @@ public sealed partial class SafetyRating [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter))] public global::Google.Gemini.SafetyRatingCategory? Category { get; set; } + /// + /// Was this content blocked because of this rating? + /// + [global::System.Text.Json.Serialization.JsonPropertyName("blocked")] + public bool? Blocked { get; set; } + /// /// Required. The probability of harm for this content. /// @@ -22,12 +28,6 @@ public sealed partial class SafetyRating [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityJsonConverter))] public global::Google.Gemini.SafetyRatingProbability? Probability { get; set; } - /// - /// Was this content blocked because of this rating? - /// - [global::System.Text.Json.Serialization.JsonPropertyName("blocked")] - public bool? Blocked { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -40,23 +40,23 @@ public sealed partial class SafetyRating /// /// Required. The category for this rating. /// - /// - /// Required. The probability of harm for this content. - /// /// /// Was this content blocked because of this rating? /// + /// + /// Required. The probability of harm for this content. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SafetyRating( global::Google.Gemini.SafetyRatingCategory? category, - global::Google.Gemini.SafetyRatingProbability? probability, - bool? blocked) + bool? blocked, + global::Google.Gemini.SafetyRatingProbability? probability) { this.Category = category; - this.Probability = probability; this.Blocked = blocked; + this.Probability = probability; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Schema.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Schema.g.cs index 3195cd26..82d78dc1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Schema.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Schema.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class Schema { + /// + /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("pattern")] + public string? Pattern { get; set; } + /// /// Required. Data type. /// @@ -16,28 +22,28 @@ public sealed partial class Schema public global::Google.Gemini.SchemaType? Type { get; set; } /// - /// Optional. Required properties of Type.OBJECT. + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). /// - [global::System.Text.Json.Serialization.JsonPropertyName("required")] - public global::System.Collections.Generic.IList? Required { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("items")] + public global::Google.Gemini.Schema? Items { get; set; } /// - /// Optional. The value should be validated against any (one or more) of the subschemas in the list. + /// Optional. Required properties of Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("anyOf")] - public global::System.Collections.Generic.IList? AnyOf { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("required")] + public global::System.Collections.Generic.IList? Required { get; set; } /// - /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. + /// Optional. Maximum length of the Type.STRING /// - [global::System.Text.Json.Serialization.JsonPropertyName("description")] - public string? Description { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxLength")] + public string? MaxLength { get; set; } /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// Optional. Minimum number of the properties for Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("items")] - public global::Google.Gemini.Schema? Items { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("minProperties")] + public string? MinProperties { get; set; } /// /// Optional. Maximum value of the Type.INTEGER and Type.NUMBER @@ -45,6 +51,12 @@ public sealed partial class Schema [global::System.Text.Json.Serialization.JsonPropertyName("maximum")] public double? Maximum { get; set; } + /// + /// Optional. Minimum number of the elements for Type.ARRAY. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("minItems")] + public string? MinItems { get; set; } + /// /// Optional. Properties of Type.OBJECT. /// @@ -52,10 +64,10 @@ public sealed partial class Schema public global::System.Collections.Generic.Dictionary? Properties { get; set; } /// - /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER + /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. /// - [global::System.Text.Json.Serialization.JsonPropertyName("minimum")] - public double? Minimum { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } /// /// Optional. Possible values of the element of Type.STRING with enum format. For example we can define an Enum Direction as : {type:STRING, format:enum, enum:["EAST", NORTH", "SOUTH", "WEST"]} @@ -64,70 +76,58 @@ public sealed partial class Schema public global::System.Collections.Generic.IList? Enum { get; set; } /// - /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("pattern")] - public string? Pattern { get; set; } - - /// - /// Optional. Minimum number of the properties for Type.OBJECT. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("minProperties")] - public string? MinProperties { get; set; } - - /// - /// Optional. Minimum number of the elements for Type.ARRAY. + /// Optional. Maximum number of the properties for Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("minItems")] - public string? MinItems { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxProperties")] + public string? MaxProperties { get; set; } /// - /// Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response. + /// Optional. Indicates if the value may be null. /// - [global::System.Text.Json.Serialization.JsonPropertyName("propertyOrdering")] - public global::System.Collections.Generic.IList? PropertyOrdering { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("nullable")] + public bool? Nullable { get; set; } /// - /// Optional. Maximum number of the elements for Type.ARRAY. + /// Optional. The title of the schema. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxItems")] - public string? MaxItems { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } /// - /// Optional. Maximum number of the properties for Type.OBJECT. + /// Optional. Example of the object. Will only populated when the object is the root. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxProperties")] - public string? MaxProperties { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("example")] + public object? Example { get; set; } /// - /// Optional. Maximum length of the Type.STRING + /// Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxLength")] - public string? MaxLength { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("propertyOrdering")] + public global::System.Collections.Generic.IList? PropertyOrdering { get; set; } /// - /// Optional. The title of the schema. + /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("format")] + public string? Format { get; set; } /// - /// Optional. Indicates if the value may be null. + /// Optional. The value should be validated against any (one or more) of the subschemas in the list. /// - [global::System.Text.Json.Serialization.JsonPropertyName("nullable")] - public bool? Nullable { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("anyOf")] + public global::System.Collections.Generic.IList? AnyOf { get; set; } /// - /// Optional. Example of the object. Will only populated when the object is the root. + /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER /// - [global::System.Text.Json.Serialization.JsonPropertyName("example")] - public object? Example { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("minimum")] + public double? Minimum { get; set; } /// - /// Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors. + /// Optional. Maximum number of the elements for Type.ARRAY. /// - [global::System.Text.Json.Serialization.JsonPropertyName("default")] - public object? Default { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxItems")] + public string? MaxItems { get; set; } /// /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING @@ -136,10 +136,10 @@ public sealed partial class Schema public string? MinLength { get; set; } /// - /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. + /// Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors. /// - [global::System.Text.Json.Serialization.JsonPropertyName("format")] - public string? Format { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("default")] + public object? Default { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -150,121 +150,121 @@ public sealed partial class Schema /// /// Initializes a new instance of the class. /// + /// + /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. + /// /// /// Required. Data type. /// + /// + /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// /// /// Optional. Required properties of Type.OBJECT. /// - /// - /// Optional. The value should be validated against any (one or more) of the subschemas in the list. - /// - /// - /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. + /// + /// Optional. Maximum length of the Type.STRING /// - /// - /// The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). + /// + /// Optional. Minimum number of the properties for Type.OBJECT. /// /// /// Optional. Maximum value of the Type.INTEGER and Type.NUMBER /// + /// + /// Optional. Minimum number of the elements for Type.ARRAY. + /// /// /// Optional. Properties of Type.OBJECT. /// - /// - /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER + /// + /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. /// /// /// Optional. Possible values of the element of Type.STRING with enum format. For example we can define an Enum Direction as : {type:STRING, format:enum, enum:["EAST", NORTH", "SOUTH", "WEST"]} /// - /// - /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. - /// - /// - /// Optional. Minimum number of the properties for Type.OBJECT. - /// - /// - /// Optional. Minimum number of the elements for Type.ARRAY. - /// - /// - /// Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response. - /// - /// - /// Optional. Maximum number of the elements for Type.ARRAY. - /// /// /// Optional. Maximum number of the properties for Type.OBJECT. /// - /// - /// Optional. Maximum length of the Type.STRING + /// + /// Optional. Indicates if the value may be null. /// /// /// Optional. The title of the schema. /// - /// - /// Optional. Indicates if the value may be null. - /// /// /// Optional. Example of the object. Will only populated when the object is the root. /// - /// - /// Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors. + /// + /// Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response. + /// + /// + /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. + /// + /// + /// Optional. The value should be validated against any (one or more) of the subschemas in the list. + /// + /// + /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER + /// + /// + /// Optional. Maximum number of the elements for Type.ARRAY. /// /// /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING /// - /// - /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. + /// + /// Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Schema( + string? pattern, global::Google.Gemini.SchemaType? type, - global::System.Collections.Generic.IList? required, - global::System.Collections.Generic.IList? anyOf, - string? description, global::Google.Gemini.Schema? items, + global::System.Collections.Generic.IList? required, + string? maxLength, + string? minProperties, double? maximum, + string? minItems, global::System.Collections.Generic.Dictionary? properties, - double? minimum, + string? description, global::System.Collections.Generic.IList? @enum, - string? pattern, - string? minProperties, - string? minItems, - global::System.Collections.Generic.IList? propertyOrdering, - string? maxItems, string? maxProperties, - string? maxLength, - string? title, bool? nullable, + string? title, object? example, - object? @default, + global::System.Collections.Generic.IList? propertyOrdering, + string? format, + global::System.Collections.Generic.IList? anyOf, + double? minimum, + string? maxItems, string? minLength, - string? format) + object? @default) { + this.Pattern = pattern; this.Type = type; - this.Required = required; - this.AnyOf = anyOf; - this.Description = description; this.Items = items; + this.Required = required; + this.MaxLength = maxLength; + this.MinProperties = minProperties; this.Maximum = maximum; + this.MinItems = minItems; this.Properties = properties; - this.Minimum = minimum; + this.Description = description; this.Enum = @enum; - this.Pattern = pattern; - this.MinProperties = minProperties; - this.MinItems = minItems; - this.PropertyOrdering = propertyOrdering; - this.MaxItems = maxItems; this.MaxProperties = maxProperties; - this.MaxLength = maxLength; - this.Title = title; this.Nullable = nullable; + this.Title = title; this.Example = example; - this.Default = @default; - this.MinLength = minLength; + this.PropertyOrdering = propertyOrdering; this.Format = format; + this.AnyOf = anyOf; + this.Minimum = minimum; + this.MaxItems = maxItems; + this.MinLength = minLength; + this.Default = @default; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SearchEntryPoint.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SearchEntryPoint.g.cs index 22a069a1..c68b5741 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SearchEntryPoint.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SearchEntryPoint.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class SearchEntryPoint { - /// - /// Optional. Base64 encoded JSON representing array of tuple. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("sdkBlob")] - public byte[]? SdkBlob { get; set; } - /// /// Optional. Web content snippet that can be embedded in a web page or an app webview. /// [global::System.Text.Json.Serialization.JsonPropertyName("renderedContent")] public string? RenderedContent { get; set; } + /// + /// Optional. Base64 encoded JSON representing array of tuple. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("sdkBlob")] + public byte[]? SdkBlob { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class SearchEntryPoint /// /// Initializes a new instance of the class. /// - /// - /// Optional. Base64 encoded JSON representing array of tuple. - /// /// /// Optional. Web content snippet that can be embedded in a web page or an app webview. /// + /// + /// Optional. Base64 encoded JSON representing array of tuple. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SearchEntryPoint( - byte[]? sdkBlob, - string? renderedContent) + string? renderedContent, + byte[]? sdkBlob) { - this.SdkBlob = sdkBlob; this.RenderedContent = renderedContent; + this.SdkBlob = sdkBlob; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Source.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Source.g.cs index 8f401e44..b458e565 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Source.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Source.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class Source { - /// - /// Where the source should appear in the environment. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("target")] - public string? Target { get; set; } - /// /// /// @@ -21,6 +15,12 @@ public sealed partial class Source [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SourceTypeJsonConverter))] public global::Google.Gemini.SourceType? Type { get; set; } + /// + /// The inline content if `type` is `INLINE`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("content")] + public string? Content { get; set; } + /// /// Optional encoding for inline content (e.g. `base64`). /// @@ -28,16 +28,16 @@ public sealed partial class Source public string? Encoding { get; set; } /// - /// The source of the environment. For GCS, this is the GCS path. For GitHub, this is the GitHub path. + /// Where the source should appear in the environment. /// - [global::System.Text.Json.Serialization.JsonPropertyName("source")] - public string? Source1 { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("target")] + public string? Target { get; set; } /// - /// The inline content if `type` is `INLINE`. + /// The source of the environment. For GCS, this is the GCS path. For GitHub, this is the GitHub path. /// - [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public string? Content { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("source")] + public string? Source1 { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -48,34 +48,34 @@ public sealed partial class Source /// /// Initializes a new instance of the class. /// - /// - /// Where the source should appear in the environment. - /// /// + /// + /// The inline content if `type` is `INLINE`. + /// /// /// Optional encoding for inline content (e.g. `base64`). /// + /// + /// Where the source should appear in the environment. + /// /// /// The source of the environment. For GCS, this is the GCS path. For GitHub, this is the GitHub path. /// - /// - /// The inline content if `type` is `INLINE`. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Source( - string? target, global::Google.Gemini.SourceType? type, + string? content, string? encoding, - string? source1, - string? content) + string? target, + string? source1) { - this.Target = target; this.Type = type; + this.Content = content; this.Encoding = encoding; + this.Target = target; this.Source1 = source1; - this.Content = content; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeakerVoiceConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeakerVoiceConfig.g.cs index 0a6833b4..f9754c22 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeakerVoiceConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeakerVoiceConfig.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class SpeakerVoiceConfig { - /// - /// Required. The name of the speaker to use. Should be the same as in the prompt. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("speaker")] - public string? Speaker { get; set; } - /// /// The configuration for the voice to use. /// [global::System.Text.Json.Serialization.JsonPropertyName("voiceConfig")] public global::Google.Gemini.VoiceConfig? VoiceConfig { get; set; } + /// + /// Required. The name of the speaker to use. Should be the same as in the prompt. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("speaker")] + public string? Speaker { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class SpeakerVoiceConfig /// /// Initializes a new instance of the class. /// - /// - /// Required. The name of the speaker to use. Should be the same as in the prompt. - /// /// /// The configuration for the voice to use. /// + /// + /// Required. The name of the speaker to use. Should be the same as in the prompt. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SpeakerVoiceConfig( - string? speaker, - global::Google.Gemini.VoiceConfig? voiceConfig) + global::Google.Gemini.VoiceConfig? voiceConfig, + string? speaker) { - this.Speaker = speaker; this.VoiceConfig = voiceConfig; + this.Speaker = speaker; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeechConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeechConfig.g.cs index 1dfe468d..cc31a307 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeechConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SpeechConfig.g.cs @@ -14,18 +14,18 @@ public sealed partial class SpeechConfig [global::System.Text.Json.Serialization.JsonPropertyName("languageCode")] public string? LanguageCode { get; set; } - /// - /// The configuration for the voice to use. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("voiceConfig")] - public global::Google.Gemini.VoiceConfig? VoiceConfig { get; set; } - /// /// The configuration for the multi-speaker setup. /// [global::System.Text.Json.Serialization.JsonPropertyName("multiSpeakerVoiceConfig")] public global::Google.Gemini.MultiSpeakerVoiceConfig? MultiSpeakerVoiceConfig { get; set; } + /// + /// The configuration for the voice to use. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("voiceConfig")] + public global::Google.Gemini.VoiceConfig? VoiceConfig { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -38,23 +38,23 @@ public sealed partial class SpeechConfig /// /// Optional. The IETF [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language code that the user configured the app to use. Used for speech recognition and synthesis. Valid values are: `de-DE`, `en-AU`, `en-GB`, `en-IN`, `en-US`, `es-US`, `fr-FR`, `hi-IN`, `pt-BR`, `ar-XA`, `es-ES`, `fr-CA`, `id-ID`, `it-IT`, `ja-JP`, `tr-TR`, `vi-VN`, `bn-IN`, `gu-IN`, `kn-IN`, `ml-IN`, `mr-IN`, `ta-IN`, `te-IN`, `nl-NL`, `ko-KR`, `cmn-CN`, `pl-PL`, `ru-RU`, and `th-TH`. /// - /// - /// The configuration for the voice to use. - /// /// /// The configuration for the multi-speaker setup. /// + /// + /// The configuration for the voice to use. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SpeechConfig( string? languageCode, - global::Google.Gemini.VoiceConfig? voiceConfig, - global::Google.Gemini.MultiSpeakerVoiceConfig? multiSpeakerVoiceConfig) + global::Google.Gemini.MultiSpeakerVoiceConfig? multiSpeakerVoiceConfig, + global::Google.Gemini.VoiceConfig? voiceConfig) { this.LanguageCode = languageCode; - this.VoiceConfig = voiceConfig; this.MultiSpeakerVoiceConfig = multiSpeakerVoiceConfig; + this.VoiceConfig = voiceConfig; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Status.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Status.g.cs index d40cd9d8..d1de5ffc 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Status.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Status.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class Status { - /// - /// The status code, which should be an enum value of google.rpc.Code. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("code")] - public int? Code { get; set; } - /// /// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. /// @@ -26,6 +20,12 @@ public sealed partial class Status [global::System.Text.Json.Serialization.JsonPropertyName("details")] public global::System.Collections.Generic.IList? Details { get; set; } + /// + /// The status code, which should be an enum value of google.rpc.Code. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("code")] + public int? Code { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -35,26 +35,26 @@ public sealed partial class Status /// /// Initializes a new instance of the class. /// - /// - /// The status code, which should be an enum value of google.rpc.Code. - /// /// /// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. /// /// /// A list of messages that carry the error details. There is a common set of message types for APIs to use. /// + /// + /// The status code, which should be an enum value of google.rpc.Code. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Status( - int? code, string? message, - global::System.Collections.Generic.IList? details) + global::System.Collections.Generic.IList? details, + int? code) { - this.Code = code; this.Message = message; this.Details = details; + this.Code = code; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.StreamableHttpTransport.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.StreamableHttpTransport.g.cs index 10705ac8..8ff47d03 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.StreamableHttpTransport.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.StreamableHttpTransport.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class StreamableHttpTransport { - /// - /// The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" - /// - [global::System.Text.Json.Serialization.JsonPropertyName("url")] - public string? Url { get; set; } - /// /// Optional: Fields for authentication headers, timeouts, etc., if needed. /// @@ -26,6 +20,12 @@ public sealed partial class StreamableHttpTransport [global::System.Text.Json.Serialization.JsonPropertyName("terminateOnClose")] public bool? TerminateOnClose { get; set; } + /// + /// The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" + /// + [global::System.Text.Json.Serialization.JsonPropertyName("url")] + public string? Url { get; set; } + /// /// Timeout for SSE read operations. /// @@ -47,15 +47,15 @@ public sealed partial class StreamableHttpTransport /// /// Initializes a new instance of the class. /// - /// - /// The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" - /// /// /// Optional: Fields for authentication headers, timeouts, etc., if needed. /// /// /// Whether to close the client session when the transport closes. /// + /// + /// The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" + /// /// /// Timeout for SSE read operations. /// @@ -66,15 +66,15 @@ public sealed partial class StreamableHttpTransport [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public StreamableHttpTransport( - string? url, global::System.Collections.Generic.Dictionary? headers, bool? terminateOnClose, + string? url, string? sseReadTimeout, string? timeout) { - this.Url = url; this.Headers = headers; this.TerminateOnClose = terminateOnClose; + this.Url = url; this.SseReadTimeout = sseReadTimeout; this.Timeout = timeout; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ThinkingConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ThinkingConfig.g.cs index f6546f19..19bc1846 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ThinkingConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ThinkingConfig.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class ThinkingConfig { - /// - /// Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("includeThoughts")] - public bool? IncludeThoughts { get; set; } - /// /// The number of thoughts tokens that the model should generate. /// @@ -27,6 +21,12 @@ public sealed partial class ThinkingConfig [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelJsonConverter))] public global::Google.Gemini.ThinkingConfigThinkingLevel? ThinkingLevel { get; set; } + /// + /// Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("includeThoughts")] + public bool? IncludeThoughts { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -36,26 +36,26 @@ public sealed partial class ThinkingConfig /// /// Initializes a new instance of the class. /// - /// - /// Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. - /// /// /// The number of thoughts tokens that the model should generate. /// /// /// Optional. Controls the maximum depth of the model's internal reasoning process before it produces a response. The default value is model-dependent. Refer to the [Thinking levels guide](https://ai.google.dev/gemini-api/docs/thinking#thinking-levels) for more details. Recommended for Gemini 3 or later models. Use with earlier models results in an error. /// + /// + /// Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ThinkingConfig( - bool? includeThoughts, int? thinkingBudget, - global::Google.Gemini.ThinkingConfigThinkingLevel? thinkingLevel) + global::Google.Gemini.ThinkingConfigThinkingLevel? thinkingLevel, + bool? includeThoughts) { - this.IncludeThoughts = includeThoughts; this.ThinkingBudget = thinkingBudget; this.ThinkingLevel = thinkingLevel; + this.IncludeThoughts = includeThoughts; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Tool.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Tool.g.cs index 63da7ddf..6da56ac1 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Tool.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Tool.g.cs @@ -9,28 +9,28 @@ namespace Google.Gemini public sealed partial class Tool { /// - /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. + /// Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role "function" generation context for the next model turn. /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleSearch")] - public global::Google.Gemini.GoogleSearch? GoogleSearch { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("functionDeclarations")] + public global::System.Collections.Generic.IList? FunctionDeclarations { get; set; } /// - /// Tool to retrieve public web data for grounding, powered by Google. + /// Tool to support URL context retrieval. /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleSearchRetrieval")] - public global::Google.Gemini.GoogleSearchRetrieval? GoogleSearchRetrieval { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("urlContext")] + public global::Google.Gemini.UrlContext? UrlContext { get; set; } /// - /// The GoogleMaps Tool that provides geospatial context for the user's query. + /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleMaps")] - public global::Google.Gemini.GoogleMaps? GoogleMaps { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("fileSearch")] + public global::Google.Gemini.FileSearch? FileSearch { get; set; } /// - /// Optional. MCP Servers to connect to. + /// The GoogleMaps Tool that provides geospatial context for the user's query. /// - [global::System.Text.Json.Serialization.JsonPropertyName("mcpServers")] - public global::System.Collections.Generic.IList? McpServers { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("googleMaps")] + public global::Google.Gemini.GoogleMaps? GoogleMaps { get; set; } /// /// Tool that executes code generated by the model, and automatically returns the result to the model. See also `ExecutableCode` and `CodeExecutionResult` which are only generated when using this tool. @@ -39,28 +39,28 @@ public sealed partial class Tool public global::Google.Gemini.CodeExecution? CodeExecution { get; set; } /// - /// Computer Use tool type. + /// Optional. MCP Servers to connect to. /// - [global::System.Text.Json.Serialization.JsonPropertyName("computerUse")] - public global::Google.Gemini.ComputerUse? ComputerUse { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mcpServers")] + public global::System.Collections.Generic.IList? McpServers { get; set; } /// - /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. + /// Tool to retrieve public web data for grounding, powered by Google. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileSearch")] - public global::Google.Gemini.FileSearch? FileSearch { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("googleSearchRetrieval")] + public global::Google.Gemini.GoogleSearchRetrieval? GoogleSearchRetrieval { get; set; } /// - /// Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role "function" generation context for the next model turn. + /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. /// - [global::System.Text.Json.Serialization.JsonPropertyName("functionDeclarations")] - public global::System.Collections.Generic.IList? FunctionDeclarations { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("googleSearch")] + public global::Google.Gemini.GoogleSearch? GoogleSearch { get; set; } /// - /// Tool to support URL context retrieval. + /// Computer Use tool type. /// - [global::System.Text.Json.Serialization.JsonPropertyName("urlContext")] - public global::Google.Gemini.UrlContext? UrlContext { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("computerUse")] + public global::Google.Gemini.ComputerUse? ComputerUse { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -71,56 +71,56 @@ public sealed partial class Tool /// /// Initializes a new instance of the class. /// - /// - /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. + /// + /// Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role "function" generation context for the next model turn. /// - /// - /// Tool to retrieve public web data for grounding, powered by Google. + /// + /// Tool to support URL context retrieval. + /// + /// + /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. /// /// /// The GoogleMaps Tool that provides geospatial context for the user's query. /// - /// - /// Optional. MCP Servers to connect to. - /// /// /// Tool that executes code generated by the model, and automatically returns the result to the model. See also `ExecutableCode` and `CodeExecutionResult` which are only generated when using this tool. /// - /// - /// Computer Use tool type. + /// + /// Optional. MCP Servers to connect to. /// - /// - /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. + /// + /// Tool to retrieve public web data for grounding, powered by Google. /// - /// - /// Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role "function" generation context for the next model turn. + /// + /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. /// - /// - /// Tool to support URL context retrieval. + /// + /// Computer Use tool type. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Tool( - global::Google.Gemini.GoogleSearch? googleSearch, - global::Google.Gemini.GoogleSearchRetrieval? googleSearchRetrieval, + global::System.Collections.Generic.IList? functionDeclarations, + global::Google.Gemini.UrlContext? urlContext, + global::Google.Gemini.FileSearch? fileSearch, global::Google.Gemini.GoogleMaps? googleMaps, - global::System.Collections.Generic.IList? mcpServers, global::Google.Gemini.CodeExecution? codeExecution, - global::Google.Gemini.ComputerUse? computerUse, - global::Google.Gemini.FileSearch? fileSearch, - global::System.Collections.Generic.IList? functionDeclarations, - global::Google.Gemini.UrlContext? urlContext) + global::System.Collections.Generic.IList? mcpServers, + global::Google.Gemini.GoogleSearchRetrieval? googleSearchRetrieval, + global::Google.Gemini.GoogleSearch? googleSearch, + global::Google.Gemini.ComputerUse? computerUse) { - this.GoogleSearch = googleSearch; - this.GoogleSearchRetrieval = googleSearchRetrieval; + this.FunctionDeclarations = functionDeclarations; + this.UrlContext = urlContext; + this.FileSearch = fileSearch; this.GoogleMaps = googleMaps; - this.McpServers = mcpServers; this.CodeExecution = codeExecution; + this.McpServers = mcpServers; + this.GoogleSearchRetrieval = googleSearchRetrieval; + this.GoogleSearch = googleSearch; this.ComputerUse = computerUse; - this.FileSearch = fileSearch; - this.FunctionDeclarations = functionDeclarations; - this.UrlContext = urlContext; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolCall.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolCall.g.cs index f11d5318..835e3a72 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolCall.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolCall.g.cs @@ -8,18 +8,6 @@ namespace Google.Gemini /// public sealed partial class ToolCall { - /// - /// Optional. The tool call arguments. Example: {"arg1" : "value1", "arg2" : "value2" , ...} - /// - [global::System.Text.Json.Serialization.JsonPropertyName("args")] - public object? Args { get; set; } - - /// - /// Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("id")] - public string? Id { get; set; } - /// /// Optional. The name of the tool that was called. /// @@ -33,6 +21,18 @@ public sealed partial class ToolCall [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeJsonConverter))] public global::Google.Gemini.ToolCallToolType? ToolType { get; set; } + /// + /// Optional. The tool call arguments. Example: {"arg1" : "value1", "arg2" : "value2" , ...} + /// + [global::System.Text.Json.Serialization.JsonPropertyName("args")] + public object? Args { get; set; } + + /// + /// Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + public string? Id { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -42,31 +42,31 @@ public sealed partial class ToolCall /// /// Initializes a new instance of the class. /// - /// - /// Optional. The tool call arguments. Example: {"arg1" : "value1", "arg2" : "value2" , ...} - /// - /// - /// Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`. - /// /// /// Optional. The name of the tool that was called. /// /// /// Required. The type of tool that was called. /// + /// + /// Optional. The tool call arguments. Example: {"arg1" : "value1", "arg2" : "value2" , ...} + /// + /// + /// Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolCall( - object? args, - string? id, string? toolName, - global::Google.Gemini.ToolCallToolType? toolType) + global::Google.Gemini.ToolCallToolType? toolType, + object? args, + string? id) { - this.Args = args; - this.Id = id; this.ToolName = toolName; this.ToolType = toolType; + this.Args = args; + this.Id = id; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolConfig.g.cs index 247efaa6..5299728a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolConfig.g.cs @@ -14,18 +14,18 @@ public sealed partial class ToolConfig [global::System.Text.Json.Serialization.JsonPropertyName("functionCallingConfig")] public global::Google.Gemini.FunctionCallingConfig? FunctionCallingConfig { get; set; } - /// - /// Retrieval config. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("retrievalConfig")] - public global::Google.Gemini.RetrievalConfig? RetrievalConfig { get; set; } - /// /// Optional. If true, the API response will include the server-side tool calls and responses within the `Content` message. This allows clients to observe the server's tool interactions. /// [global::System.Text.Json.Serialization.JsonPropertyName("includeServerSideToolInvocations")] public bool? IncludeServerSideToolInvocations { get; set; } + /// + /// Retrieval config. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("retrievalConfig")] + public global::Google.Gemini.RetrievalConfig? RetrievalConfig { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -38,23 +38,23 @@ public sealed partial class ToolConfig /// /// Configuration for specifying function calling behavior. /// - /// - /// Retrieval config. - /// /// /// Optional. If true, the API response will include the server-side tool calls and responses within the `Content` message. This allows clients to observe the server's tool interactions. /// + /// + /// Retrieval config. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolConfig( global::Google.Gemini.FunctionCallingConfig? functionCallingConfig, - global::Google.Gemini.RetrievalConfig? retrievalConfig, - bool? includeServerSideToolInvocations) + bool? includeServerSideToolInvocations, + global::Google.Gemini.RetrievalConfig? retrievalConfig) { this.FunctionCallingConfig = functionCallingConfig; - this.RetrievalConfig = retrievalConfig; this.IncludeServerSideToolInvocations = includeServerSideToolInvocations; + this.RetrievalConfig = retrievalConfig; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolResponse.g.cs index 2ee7f407..e99681cb 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ToolResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ToolResponse { - /// - /// Optional. The tool response. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public object? Response { get; set; } - /// /// Optional. The identifier of the tool call this response is for. /// [global::System.Text.Json.Serialization.JsonPropertyName("id")] public string? Id { get; set; } + /// + /// Optional. The tool response. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public object? Response { get; set; } + /// /// Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`. /// @@ -36,12 +36,12 @@ public sealed partial class ToolResponse /// /// Initializes a new instance of the class. /// - /// - /// Optional. The tool response. - /// /// /// Optional. The identifier of the tool call this response is for. /// + /// + /// Optional. The tool response. + /// /// /// Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`. /// @@ -49,12 +49,12 @@ public sealed partial class ToolResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolResponse( - object? response, string? id, + object? response, global::Google.Gemini.ToolResponseToolType? toolType) { - this.Response = response; this.Id = id; + this.Response = response; this.ToolType = toolType; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TunedModel.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TunedModel.g.cs index 26d48026..c26a56cc 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TunedModel.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TunedModel.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class TunedModel { - /// - /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` - /// - [global::System.Text.Json.Serialization.JsonPropertyName("baseModel")] - public string? BaseModel { get; set; } - /// /// Output only. The state of the tuned model.
/// Included only in responses @@ -22,6 +16,12 @@ public sealed partial class TunedModel [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.TunedModelStateJsonConverter))] public global::Google.Gemini.TunedModelState? State { get; set; } + /// + /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("baseModel")] + public string? BaseModel { get; set; } + /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// @@ -29,10 +29,10 @@ public sealed partial class TunedModel public int? TopK { get; set; } /// - /// Optional. List of project numbers that have read access to the tuned model. + /// Tuning tasks that create tuned models. /// - [global::System.Text.Json.Serialization.JsonPropertyName("readerProjectNumbers")] - public global::System.Collections.Generic.IList? ReaderProjectNumbers { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tuningTask")] + public global::Google.Gemini.TuningTask? TuningTask { get; set; } /// /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. @@ -41,10 +41,11 @@ public sealed partial class TunedModel public float? TopP { get; set; } /// - /// Tuning tasks that create tuned models. + /// Output only. The timestamp when this model was created.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("tuningTask")] - public global::Google.Gemini.TuningTask? TuningTask { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// /// Tuned model as a source for training a new model. @@ -52,26 +53,6 @@ public sealed partial class TunedModel [global::System.Text.Json.Serialization.JsonPropertyName("tunedModelSource")] public global::Google.Gemini.TunedModelSource? TunedModelSource { get; set; } - /// - /// Optional. A short description of this model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("description")] - public string? Description { get; set; } - - /// - /// Output only. The timestamp when this model was updated.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } - - /// - /// Output only. The timestamp when this model was created.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } - /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// @@ -91,6 +72,25 @@ public sealed partial class TunedModel [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] public string? DisplayName { get; set; } + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("readerProjectNumbers")] + public global::System.Collections.Generic.IList? ReaderProjectNumbers { get; set; } + + /// + /// Optional. A short description of this model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } + + /// + /// Output only. The timestamp when this model was updated.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -100,39 +100,29 @@ public sealed partial class TunedModel /// /// Initializes a new instance of the class. /// - /// - /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` - /// /// /// Output only. The state of the tuned model.
/// Included only in responses /// + /// + /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` + /// /// /// Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model. /// - /// - /// Optional. List of project numbers that have read access to the tuned model. - /// - /// - /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. - /// /// /// Tuning tasks that create tuned models. /// - /// - /// Tuned model as a source for training a new model. - /// - /// - /// Optional. A short description of this model. - /// - /// - /// Output only. The timestamp when this model was updated.
- /// Included only in responses + /// + /// Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model. /// /// /// Output only. The timestamp when this model was created.
/// Included only in responses /// + /// + /// Tuned model as a source for training a new model. + /// /// /// Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model. /// @@ -143,37 +133,47 @@ public sealed partial class TunedModel /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// + /// + /// Optional. List of project numbers that have read access to the tuned model. + /// + /// + /// Optional. A short description of this model. + /// + /// + /// Output only. The timestamp when this model was updated.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TunedModel( - string? baseModel, global::Google.Gemini.TunedModelState? state, + string? baseModel, int? topK, - global::System.Collections.Generic.IList? readerProjectNumbers, - float? topP, global::Google.Gemini.TuningTask? tuningTask, - global::Google.Gemini.TunedModelSource? tunedModelSource, - string? description, - string? updateTime, + float? topP, string? createTime, + global::Google.Gemini.TunedModelSource? tunedModelSource, float? temperature, string? name, - string? displayName) + string? displayName, + global::System.Collections.Generic.IList? readerProjectNumbers, + string? description, + string? updateTime) { - this.BaseModel = baseModel; this.State = state; + this.BaseModel = baseModel; this.TopK = topK; - this.ReaderProjectNumbers = readerProjectNumbers; - this.TopP = topP; this.TuningTask = tuningTask; - this.TunedModelSource = tunedModelSource; - this.Description = description; - this.UpdateTime = updateTime; + this.TopP = topP; this.CreateTime = createTime; + this.TunedModelSource = tunedModelSource; this.Temperature = temperature; this.Name = name; this.DisplayName = displayName; + this.ReaderProjectNumbers = readerProjectNumbers; + this.Description = description; + this.UpdateTime = updateTime; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningSnapshot.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningSnapshot.g.cs index 0cb1717c..7241cadd 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningSnapshot.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningSnapshot.g.cs @@ -9,32 +9,32 @@ namespace Google.Gemini public sealed partial class TuningSnapshot { /// - /// Output only. The epoch this step was part of.
+ /// Output only. The timestamp when this metric was computed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("epoch")] - public int? Epoch { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("computeTime")] + public string? ComputeTime { get; set; } /// - /// Output only. The mean loss of the training examples for this step.
+ /// Output only. The tuning step.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("meanLoss")] - public float? MeanLoss { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("step")] + public int? Step { get; set; } /// - /// Output only. The tuning step.
+ /// Output only. The epoch this step was part of.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("step")] - public int? Step { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("epoch")] + public int? Epoch { get; set; } /// - /// Output only. The timestamp when this metric was computed.
+ /// Output only. The mean loss of the training examples for this step.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("computeTime")] - public string? ComputeTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("meanLoss")] + public float? MeanLoss { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -45,35 +45,35 @@ public sealed partial class TuningSnapshot /// /// Initializes a new instance of the class. /// - /// - /// Output only. The epoch this step was part of.
- /// Included only in responses - /// - /// - /// Output only. The mean loss of the training examples for this step.
+ /// + /// Output only. The timestamp when this metric was computed.
/// Included only in responses /// /// /// Output only. The tuning step.
/// Included only in responses /// - /// - /// Output only. The timestamp when this metric was computed.
+ /// + /// Output only. The epoch this step was part of.
+ /// Included only in responses + /// + /// + /// Output only. The mean loss of the training examples for this step.
/// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TuningSnapshot( - int? epoch, - float? meanLoss, + string? computeTime, int? step, - string? computeTime) + int? epoch, + float? meanLoss) { + this.ComputeTime = computeTime; + this.Step = step; this.Epoch = epoch; this.MeanLoss = meanLoss; - this.Step = step; - this.ComputeTime = computeTime; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningTask.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningTask.g.cs index bdc89a3d..4253500a 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningTask.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningTask.g.cs @@ -15,17 +15,11 @@ public sealed partial class TuningTask public global::Google.Gemini.Hyperparameters? Hyperparameters { get; set; } /// - /// Dataset for training or validation. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("trainingData")] - public global::Google.Gemini.Dataset? TrainingData { get; set; } - - /// - /// Output only. Metrics collected during tuning.
+ /// Output only. The timestamp when tuning this model completed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("snapshots")] - public global::System.Collections.Generic.IList? Snapshots { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("completeTime")] + public string? CompleteTime { get; set; } /// /// Output only. The timestamp when tuning this model started.
@@ -35,11 +29,17 @@ public sealed partial class TuningTask public string? StartTime { get; set; } /// - /// Output only. The timestamp when tuning this model completed.
+ /// Output only. Metrics collected during tuning.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("completeTime")] - public string? CompleteTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("snapshots")] + public global::System.Collections.Generic.IList? Snapshots { get; set; } + + /// + /// Dataset for training or validation. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("trainingData")] + public global::Google.Gemini.Dataset? TrainingData { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -53,36 +53,36 @@ public sealed partial class TuningTask /// /// Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance /// - /// - /// Dataset for training or validation. - /// - /// - /// Output only. Metrics collected during tuning.
+ /// + /// Output only. The timestamp when tuning this model completed.
/// Included only in responses /// /// /// Output only. The timestamp when tuning this model started.
/// Included only in responses /// - /// - /// Output only. The timestamp when tuning this model completed.
+ /// + /// Output only. Metrics collected during tuning.
/// Included only in responses /// + /// + /// Dataset for training or validation. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TuningTask( global::Google.Gemini.Hyperparameters? hyperparameters, - global::Google.Gemini.Dataset? trainingData, - global::System.Collections.Generic.IList? snapshots, + string? completeTime, string? startTime, - string? completeTime) + global::System.Collections.Generic.IList? snapshots, + global::Google.Gemini.Dataset? trainingData) { this.Hyperparameters = hyperparameters; - this.TrainingData = trainingData; - this.Snapshots = snapshots; - this.StartTime = startTime; this.CompleteTime = completeTime; + this.StartTime = startTime; + this.Snapshots = snapshots; + this.TrainingData = trainingData; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UploadToFileSearchStoreRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UploadToFileSearchStoreRequest.g.cs index 2e77d4e4..d597ca58 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UploadToFileSearchStoreRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UploadToFileSearchStoreRequest.g.cs @@ -14,18 +14,18 @@ public sealed partial class UploadToFileSearchStoreRequest [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] public string? DisplayName { get; set; } - /// - /// Custom metadata to be associated with the data. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] - public global::System.Collections.Generic.IList? CustomMetadata { get; set; } - /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// [global::System.Text.Json.Serialization.JsonPropertyName("chunkingConfig")] public global::Google.Gemini.ChunkingConfig? ChunkingConfig { get; set; } + /// + /// Custom metadata to be associated with the data. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] + public global::System.Collections.Generic.IList? CustomMetadata { get; set; } + /// /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. /// @@ -44,12 +44,12 @@ public sealed partial class UploadToFileSearchStoreRequest /// /// Optional. Display name of the created document. /// - /// - /// Custom metadata to be associated with the data. - /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// + /// + /// Custom metadata to be associated with the data. + /// /// /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. /// @@ -58,13 +58,13 @@ public sealed partial class UploadToFileSearchStoreRequest #endif public UploadToFileSearchStoreRequest( string? displayName, - global::System.Collections.Generic.IList? customMetadata, global::Google.Gemini.ChunkingConfig? chunkingConfig, + global::System.Collections.Generic.IList? customMetadata, string? mimeType) { this.DisplayName = displayName; - this.CustomMetadata = customMetadata; this.ChunkingConfig = chunkingConfig; + this.CustomMetadata = customMetadata; this.MimeType = mimeType; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UrlMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UrlMetadata.g.cs index 8be9fd58..92ed5e03 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UrlMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UrlMetadata.g.cs @@ -8,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class UrlMetadata { + /// + /// Retrieved url by the tool. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("retrievedUrl")] + public string? RetrievedUrl { get; set; } + /// /// Status of the url retrieval. /// @@ -15,12 +21,6 @@ public sealed partial class UrlMetadata [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusJsonConverter))] public global::Google.Gemini.UrlMetadataUrlRetrievalStatus? UrlRetrievalStatus { get; set; } - /// - /// Retrieved url by the tool. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("retrievedUrl")] - public string? RetrievedUrl { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -30,21 +30,21 @@ public sealed partial class UrlMetadata /// /// Initializes a new instance of the class. /// - /// - /// Status of the url retrieval. - /// /// /// Retrieved url by the tool. /// + /// + /// Status of the url retrieval. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public UrlMetadata( - global::Google.Gemini.UrlMetadataUrlRetrievalStatus? urlRetrievalStatus, - string? retrievedUrl) + string? retrievedUrl, + global::Google.Gemini.UrlMetadataUrlRetrievalStatus? urlRetrievalStatus) { - this.UrlRetrievalStatus = urlRetrievalStatus; this.RetrievedUrl = retrievedUrl; + this.UrlRetrievalStatus = urlRetrievalStatus; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UsageMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UsageMetadata.g.cs index c49b9084..146ab509 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UsageMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.UsageMetadata.g.cs @@ -8,12 +8,33 @@ namespace Google.Gemini /// public sealed partial class UsageMetadata { + /// + /// Output only. Service tier of the request.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("serviceTier")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierJsonConverter))] + public global::Google.Gemini.UsageMetadataServiceTier? ServiceTier { get; set; } + /// /// Total number of tokens across all the generated response candidates. /// [global::System.Text.Json.Serialization.JsonPropertyName("candidatesTokenCount")] public int? CandidatesTokenCount { get; set; } + /// + /// Output only. List of modalities that were processed for tool-use request inputs.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("toolUsePromptTokensDetails")] + public global::System.Collections.Generic.IList? ToolUsePromptTokensDetails { get; set; } + + /// + /// Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] + public int? PromptTokenCount { get; set; } + /// /// Total token count for the generation request (prompt + thoughts + response candidates). /// @@ -21,11 +42,11 @@ public sealed partial class UsageMetadata public int? TotalTokenCount { get; set; } /// - /// Output only. List of modalities that were processed in the request input.
+ /// Output only. List of modalities of the cached content in the request input.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("promptTokensDetails")] - public global::System.Collections.Generic.IList? PromptTokensDetails { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("cacheTokensDetails")] + public global::System.Collections.Generic.IList? CacheTokensDetails { get; set; } /// /// Output only. List of modalities that were returned in the response.
@@ -35,19 +56,18 @@ public sealed partial class UsageMetadata public global::System.Collections.Generic.IList? CandidatesTokensDetails { get; set; } /// - /// Output only. List of modalities that were processed for tool-use request inputs.
+ /// Output only. Number of tokens present in tool-use prompt(s).
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("toolUsePromptTokensDetails")] - public global::System.Collections.Generic.IList? ToolUsePromptTokensDetails { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("toolUsePromptTokenCount")] + public int? ToolUsePromptTokenCount { get; set; } /// - /// Output only. Service tier of the request.
+ /// Output only. List of modalities that were processed in the request input.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("serviceTier")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.UsageMetadataServiceTierJsonConverter))] - public global::Google.Gemini.UsageMetadataServiceTier? ServiceTier { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokensDetails")] + public global::System.Collections.Generic.IList? PromptTokensDetails { get; set; } /// /// Number of tokens in the cached part of the prompt (the cached content) @@ -55,19 +75,6 @@ public sealed partial class UsageMetadata [global::System.Text.Json.Serialization.JsonPropertyName("cachedContentTokenCount")] public int? CachedContentTokenCount { get; set; } - /// - /// Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] - public int? PromptTokenCount { get; set; } - - /// - /// Output only. Number of tokens present in tool-use prompt(s).
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("toolUsePromptTokenCount")] - public int? ToolUsePromptTokenCount { get; set; } - /// /// Output only. Number of tokens of thoughts for thinking models.
/// Included only in responses @@ -75,13 +82,6 @@ public sealed partial class UsageMetadata [global::System.Text.Json.Serialization.JsonPropertyName("thoughtsTokenCount")] public int? ThoughtsTokenCount { get; set; } - /// - /// Output only. List of modalities of the cached content in the request input.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("cacheTokensDetails")] - public global::System.Collections.Generic.IList? CacheTokensDetails { get; set; } - /// /// Output only. Number of tokens in the response. Used by Gemini 3.1+ Live API models instead of candidatesTokenCount.
/// Included only in responses @@ -105,46 +105,46 @@ public sealed partial class UsageMetadata /// /// Initializes a new instance of the class. /// + /// + /// Output only. Service tier of the request.
+ /// Included only in responses + /// /// /// Total number of tokens across all the generated response candidates. /// + /// + /// Output only. List of modalities that were processed for tool-use request inputs.
+ /// Included only in responses + /// + /// + /// Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. + /// /// /// Total token count for the generation request (prompt + thoughts + response candidates). /// - /// - /// Output only. List of modalities that were processed in the request input.
+ /// + /// Output only. List of modalities of the cached content in the request input.
/// Included only in responses /// /// /// Output only. List of modalities that were returned in the response.
/// Included only in responses /// - /// - /// Output only. List of modalities that were processed for tool-use request inputs.
+ /// + /// Output only. Number of tokens present in tool-use prompt(s).
/// Included only in responses /// - /// - /// Output only. Service tier of the request.
+ /// + /// Output only. List of modalities that were processed in the request input.
/// Included only in responses /// /// /// Number of tokens in the cached part of the prompt (the cached content) /// - /// - /// Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. - /// - /// - /// Output only. Number of tokens present in tool-use prompt(s).
- /// Included only in responses - /// /// /// Output only. Number of tokens of thoughts for thinking models.
/// Included only in responses /// - /// - /// Output only. List of modalities of the cached content in the request input.
- /// Included only in responses - /// /// /// Output only. Number of tokens in the response. Used by Gemini 3.1+ Live API models instead of candidatesTokenCount.
/// Included only in responses @@ -157,31 +157,31 @@ public sealed partial class UsageMetadata [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public UsageMetadata( + global::Google.Gemini.UsageMetadataServiceTier? serviceTier, int? candidatesTokenCount, - int? totalTokenCount, - global::System.Collections.Generic.IList? promptTokensDetails, - global::System.Collections.Generic.IList? candidatesTokensDetails, global::System.Collections.Generic.IList? toolUsePromptTokensDetails, - global::Google.Gemini.UsageMetadataServiceTier? serviceTier, - int? cachedContentTokenCount, int? promptTokenCount, + int? totalTokenCount, + global::System.Collections.Generic.IList? cacheTokensDetails, + global::System.Collections.Generic.IList? candidatesTokensDetails, int? toolUsePromptTokenCount, + global::System.Collections.Generic.IList? promptTokensDetails, + int? cachedContentTokenCount, int? thoughtsTokenCount, - global::System.Collections.Generic.IList? cacheTokensDetails, int? responseTokenCount, global::System.Collections.Generic.IList? responseTokensDetails) { + this.ServiceTier = serviceTier; this.CandidatesTokenCount = candidatesTokenCount; - this.TotalTokenCount = totalTokenCount; - this.PromptTokensDetails = promptTokensDetails; - this.CandidatesTokensDetails = candidatesTokensDetails; this.ToolUsePromptTokensDetails = toolUsePromptTokensDetails; - this.ServiceTier = serviceTier; - this.CachedContentTokenCount = cachedContentTokenCount; this.PromptTokenCount = promptTokenCount; + this.TotalTokenCount = totalTokenCount; + this.CacheTokensDetails = cacheTokensDetails; + this.CandidatesTokensDetails = candidatesTokensDetails; this.ToolUsePromptTokenCount = toolUsePromptTokenCount; + this.PromptTokensDetails = promptTokensDetails; + this.CachedContentTokenCount = cachedContentTokenCount; this.ThoughtsTokenCount = thoughtsTokenCount; - this.CacheTokensDetails = cacheTokensDetails; this.ResponseTokenCount = responseTokenCount; this.ResponseTokensDetails = responseTokensDetails; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.VideoMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.VideoMetadata.g.cs index 6f022e26..681e8195 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.VideoMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.VideoMetadata.g.cs @@ -10,18 +10,18 @@ namespace Google.Gemini public sealed partial class VideoMetadata { /// - /// Optional. The start offset of the video. + /// Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]. /// - [global::System.Text.Json.Serialization.JsonPropertyName("startOffset")] + [global::System.Text.Json.Serialization.JsonPropertyName("fps")] [global::System.Obsolete("This property marked as deprecated.")] - public string? StartOffset { get; set; } + public double? Fps { get; set; } /// - /// Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]. + /// Optional. The start offset of the video. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fps")] + [global::System.Text.Json.Serialization.JsonPropertyName("startOffset")] [global::System.Obsolete("This property marked as deprecated.")] - public double? Fps { get; set; } + public string? StartOffset { get; set; } /// /// Optional. The end offset of the video. @@ -39,12 +39,12 @@ public sealed partial class VideoMetadata /// /// Initializes a new instance of the class. /// - /// - /// Optional. The start offset of the video. - /// /// /// Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]. /// + /// + /// Optional. The start offset of the video. + /// /// /// Optional. The end offset of the video. /// @@ -52,12 +52,12 @@ public sealed partial class VideoMetadata [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public VideoMetadata( - string? startOffset, double? fps, + string? startOffset, string? endOffset) { - this.StartOffset = startOffset; this.Fps = fps; + this.StartOffset = startOffset; this.EndOffset = endOffset; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Web.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Web.g.cs index 10b0d5ec..057e2a36 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Web.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Web.g.cs @@ -9,18 +9,18 @@ namespace Google.Gemini public sealed partial class Web { /// - /// Output only. Title of the chunk.
+ /// Output only. URI reference of the chunk.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } /// - /// Output only. URI reference of the chunk.
+ /// Output only. Title of the chunk.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -31,23 +31,23 @@ public sealed partial class Web /// /// Initializes a new instance of the class. /// - /// - /// Output only. Title of the chunk.
- /// Included only in responses - /// /// /// Output only. URI reference of the chunk.
/// Included only in responses /// + /// + /// Output only. Title of the chunk.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Web( - string? title, - string? uri) + string? uri, + string? title) { - this.Title = title; this.Uri = uri; + this.Title = title; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.WhiteSpaceConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.WhiteSpaceConfig.g.cs index 24c4a609..c7b0c0fb 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.WhiteSpaceConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.WhiteSpaceConfig.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class WhiteSpaceConfig { - /// - /// Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxTokensPerChunk")] - public int? MaxTokensPerChunk { get; set; } - /// /// Maximum number of overlapping tokens between two adjacent chunks. /// [global::System.Text.Json.Serialization.JsonPropertyName("maxOverlapTokens")] public int? MaxOverlapTokens { get; set; } + /// + /// Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("maxTokensPerChunk")] + public int? MaxTokensPerChunk { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class WhiteSpaceConfig /// /// Initializes a new instance of the class. /// - /// - /// Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow. - /// /// /// Maximum number of overlapping tokens between two adjacent chunks. /// + /// + /// Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public WhiteSpaceConfig( - int? maxTokensPerChunk, - int? maxOverlapTokens) + int? maxOverlapTokens, + int? maxTokensPerChunk) { - this.MaxTokensPerChunk = maxTokensPerChunk; this.MaxOverlapTokens = maxOverlapTokens; + this.MaxTokensPerChunk = maxTokensPerChunk; } /// diff --git a/src/libs/Google.Gemini/openapi.json b/src/libs/Google.Gemini/openapi.json index 73313513..25262fcf 100644 --- a/src/libs/Google.Gemini/openapi.json +++ b/src/libs/Google.Gemini/openapi.json @@ -11,36 +11,50 @@ } ], "paths": { - "/tunedModels/{tunedModelsId}": { - "patch": { - "description": "Updates a tuned model.", - "operationId": "tunedModels.patch", + "/files": { + "get": { + "description": "Lists the metadata for `File`s owned by the requesting project.", + "operationId": "files.list", "parameters": [ { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Output only. The tuned model name. A unique name will be generated on create. Example: `tunedModels/az2mb0bpw6i` If display_name is set on create, the id portion of the name will be set by concatenating the words of the display_name with hyphens and adding a random portion for uniqueness. Example: * display_name = `Sentence Translator` * name = `tunedModels/sentence-translator-u3b7m`", + "name": "pageSize", + "in": "query", + "description": "Optional. Maximum number of `File`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 100.", "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" + "type": "integer", + "format": "int32" } }, { - "name": "updateMask", + "name": "pageToken", "in": "query", - "description": "Optional. The list of fields to update.", + "description": "Optional. A page token from a previous `ListFiles` call.", "schema": { - "type": "string", - "format": "google-fieldmask" + "type": "string" } } ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListFilesResponse" + } + } + } + } + } + }, + "post": { + "description": "Creates a `File`.", + "operationId": "media.upload", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/CreateFileRequest" } } } @@ -51,25 +65,27 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/CreateFileResponse" } } } } } - }, + } + }, + "/files/{filesId}": { "delete": { - "description": "Deletes a tuned model.", - "operationId": "tunedModels.delete", + "description": "Deletes the `File`.", + "operationId": "files.delete", "parameters": [ { - "name": "tunedModelsId", + "name": "filesId", "in": "path", "required": true, - "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", + "description": "Required. The name of the `File` to delete. Example: `files/abc-123`", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+$" + "pattern": "^files/[^/]+$" } } ], @@ -87,17 +103,17 @@ } }, "get": { - "description": "Gets information about a specific TunedModel.", - "operationId": "tunedModels.get", + "description": "Gets the metadata for the given `File`.", + "operationId": "files.get", "parameters": [ { - "name": "tunedModelsId", + "name": "filesId", "in": "path", "required": true, - "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", + "description": "Required. The name of the `File` to get. Example: `files/abc-123`", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+$" + "pattern": "^files/[^/]+$" } } ], @@ -107,7 +123,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/File" } } } @@ -115,27 +131,15 @@ } } }, - "/tunedModels/{tunedModelsId}:transferOwnership": { + "/files:register": { "post": { - "description": "Transfers ownership of the tuned model. This is the only way to change ownership of the tuned model. The current owner will be downgraded to writer role.", - "operationId": "tunedModels.transferOwnership", - "parameters": [ - { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The resource name of the tuned model to transfer ownership. Format: `tunedModels/my-model-id`", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - } - ], + "description": "Registers a Google Cloud Storage files with FileService. The user is expected to provide Google Cloud Storage URIs and will receive a File resource for each URI in return. Note that the files are not copied, just registered with File API. If one file fails to register, the whole request fails.", + "operationId": "files.register", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TransferOwnershipRequest" + "$ref": "#/components/schemas/RegisterFilesRequest" } } } @@ -146,7 +150,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TransferOwnershipResponse" + "$ref": "#/components/schemas/RegisterFilesResponse" } } } @@ -154,19 +158,19 @@ } } }, - "/tunedModels/{tunedModelsId}:batchGenerateContent": { + "/fileSearchStores/{fileSearchStoresId}:uploadToFileSearchStore": { "post": { - "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", - "operationId": "tunedModels.batchGenerateContent", + "description": "Uploads data to a FileSearchStore, preprocesses and chunks before storing it in a FileSearchStore Document.", + "operationId": "media.uploadToFileSearchStore", "parameters": [ { - "name": "tunedModelsId", + "name": "fileSearchStoresId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "description": "Required. Immutable. The name of the `FileSearchStore` to upload the file into. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], @@ -174,7 +178,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/BatchGenerateContentRequest" + "$ref": "#/components/schemas/UploadToFileSearchStoreRequest" } } } @@ -185,7 +189,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/CustomLongRunningOperation" } } } @@ -193,27 +197,15 @@ } } }, - "/tunedModels/{tunedModelsId}:asyncBatchEmbedContent": { + "/auth_tokens": { "post": { - "description": "Enqueues a batch of `EmbedContent` requests for batch processing. We have a `BatchEmbedContents` handler in `GenerativeService`, but it was synchronized. So we name this one to be `Async` to avoid confusion.", - "operationId": "tunedModels.asyncBatchEmbedContent", - "parameters": [ - { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - } - ], + "description": "Creates a token that can be used to constrain the behavior of a BidiGenerateContent session.", + "operationId": "auth_tokens.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" + "$ref": "#/components/schemas/AuthToken" } } } @@ -224,7 +216,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/AuthToken" } } } @@ -232,17 +224,56 @@ } } }, - "/tunedModels": { - "post": { - "description": "Creates a tuned model. Check intermediate tuning progress (if any) through the [google.longrunning.Operations] service. Access status and results through the Operations service. Example: GET /v1/tunedModels/az2mb0bpw6i/operations/000-111-222", - "operationId": "tunedModels.create", + "/cachedContents/{cachedContentsId}": { + "get": { + "description": "Reads CachedContent resource.", + "operationId": "cachedContents.get", "parameters": [ { - "name": "tunedModelId", + "name": "cachedContentsId", + "in": "path", + "required": true, + "description": "Required. The resource name referring to the content cache entry. Format: `cachedContents/{id}`", + "schema": { + "type": "string", + "pattern": "^cachedContents/[^/]+$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CachedContent" + } + } + } + } + } + }, + "patch": { + "description": "Updates CachedContent resource (only expiration is updatable).", + "operationId": "cachedContents.patch", + "parameters": [ + { + "name": "cachedContentsId", + "in": "path", + "required": true, + "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", + "schema": { + "type": "string", + "pattern": "^cachedContents/[^/]+$" + } + }, + { + "name": "updateMask", "in": "query", - "description": "Optional. The unique id for the tuned model if specified. This value should be up to 40 characters, the first character must be a letter, the last could be a letter or a number. The id must match the regular expression: `[a-z]([a-z0-9-]{0,38}[a-z0-9])?`.", + "description": "The list of fields to update.", "schema": { - "type": "string" + "type": "string", + "format": "google-fieldmask" } } ], @@ -250,7 +281,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/CachedContent" } } } @@ -261,29 +292,51 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/CachedContent" } } } } } }, - "get": { - "description": "Lists created tuned models.", - "operationId": "tunedModels.list", + "delete": { + "description": "Deletes CachedContent resource.", + "operationId": "cachedContents.delete", "parameters": [ { - "name": "filter", - "in": "query", - "description": "Optional. A filter is a full text search over the tuned model's description and display name. By default, results will not include tuned models shared with everyone. Additional operators: - owner:me - writers:me - readers:me - readers:everyone Examples: \"owner:me\" returns all tuned models to which caller has owner role \"readers:me\" returns all tuned models to which caller has reader role \"readers:everyone\" returns all tuned models that are shared with everyone", + "name": "cachedContentsId", + "in": "path", + "required": true, + "description": "Required. The resource name referring to the content cache entry Format: `cachedContents/{id}`", "schema": { - "type": "string" + "type": "string", + "pattern": "^cachedContents/[^/]+$" } - }, + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Empty" + } + } + } + } + } + } + }, + "/cachedContents": { + "get": { + "description": "Lists CachedContents.", + "operationId": "cachedContents.list", + "parameters": [ { "name": "pageSize", "in": "query", - "description": "Optional. The maximum number of `TunedModels` to return (per page). The service may return fewer tuned models. If unspecified, at most 10 tuned models will be returned. This method returns at most 1000 models per page, even if you pass a larger page_size.", + "description": "Optional. The maximum number of cached contents to return. The service may return fewer than this value. If unspecified, some default (under maximum) number of items will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.", "schema": { "type": "integer", "format": "int32" @@ -292,7 +345,7 @@ { "name": "pageToken", "in": "query", - "description": "Optional. A page token, received from a previous `ListTunedModels` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListTunedModels` must match the call that provided the page token.", + "description": "Optional. A page token, received from a previous `ListCachedContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCachedContents` must match the call that provided the page token.", "schema": { "type": "string" } @@ -304,35 +357,21 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListTunedModelsResponse" + "$ref": "#/components/schemas/ListCachedContentsResponse" } } } } } - } - }, - "/tunedModels/{tunedModelsId}:generateContent": { + }, "post": { - "description": "Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details.", - "operationId": "tunedModels.generateContent", - "parameters": [ - { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - } - ], + "description": "Creates CachedContent resource.", + "operationId": "cachedContents.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "$ref": "#/components/schemas/CachedContent" } } } @@ -343,7 +382,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/CachedContent" } } } @@ -351,43 +390,74 @@ } } }, - "/tunedModels/{tunedModelsId}:streamGenerateContent": { - "post": { - "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", - "operationId": "tunedModels.streamGenerateContent", + "/generatedFiles": { + "get": { + "description": "Lists the generated files owned by the requesting project.", + "operationId": "generatedFiles.list", "parameters": [ { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "name": "pageSize", + "in": "query", + "description": "Optional. Maximum number of `GeneratedFile`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 50.", "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" + "type": "integer", + "format": "int32" + } + }, + { + "name": "pageToken", + "in": "query", + "description": "Optional. A page token from a previous `ListGeneratedFiles` call.", + "schema": { + "type": "string" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListGeneratedFilesResponse" + } } } } - }, + } + } + }, + "/generatedFiles/{generatedFilesId}/operations/{operationsId}": { + "get": { + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "generatedFiles.operations.get", + "parameters": [ + { + "name": "operationsId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "generatedFilesId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", + "schema": { + "type": "string", + "pattern": "^generatedFiles/[^/]+/operations/[^/]+$" + } + } + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" - } - }, - "text/event-stream": { - "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/Operation" } } } @@ -395,52 +465,53 @@ } } }, - "/tunedModels/{tunedModelsId}/permissions": { + "/batches/{batchesId}:cancel": { "post": { - "description": "Create a permission to a specific resource.", - "operationId": "tunedModels.permissions.create", + "description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.", + "operationId": "batches.cancel", "parameters": [ { - "name": "tunedModelsId", + "name": "batchesId", "in": "path", "required": true, - "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "description": "The name of the operation resource to be cancelled.", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+$" + "pattern": "^batches/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Permission" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Empty" } } } } } - }, + } + }, + "/batches": { "get": { - "description": "Lists permissions for the specific resource.", - "operationId": "tunedModels.permissions.list", + "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", + "operationId": "batches.list", "parameters": [ + { + "name": "filter", + "in": "query", + "description": "The standard list filter.", + "schema": { + "type": "string" + } + }, { "name": "pageSize", "in": "query", - "description": "Optional. The maximum number of `Permission`s to return (per page). The service may return fewer permissions. If unspecified, at most 10 permissions will be returned. This method returns at most 1000 permissions per page, even if you pass larger page_size.", + "description": "The standard list page size.", "schema": { "type": "integer", "format": "int32" @@ -449,19 +520,17 @@ { "name": "pageToken", "in": "query", - "description": "Optional. A page token, received from a previous `ListPermissions` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListPermissions` must match the call that provided the page token.", + "description": "The standard list page token.", "schema": { "type": "string" } }, { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "name": "returnPartialSuccess", + "in": "query", + "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" + "type": "boolean" } } ], @@ -471,7 +540,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListPermissionsResponse" + "$ref": "#/components/schemas/ListOperationsResponse" } } } @@ -479,33 +548,25 @@ } } }, - "/tunedModels/{tunedModelsId}/permissions/{permissionsId}": { + "/batches/{batchesId}:updateEmbedContentBatch": { "patch": { - "description": "Updates the permission.", - "operationId": "tunedModels.permissions.patch", + "description": "Updates a batch of EmbedContent requests for batch processing.", + "operationId": "batches.updateEmbedContentBatch", "parameters": [ { - "name": "tunedModelsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "permissionsId", + "name": "batchesId", "in": "path", "required": true, - "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.", + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" + "pattern": "^batches/[^/]+$" } }, { "name": "updateMask", "in": "query", - "description": "Required. The list of fields to update. Accepted ones: - role (`Permission.role` field)", + "description": "Optional. The list of fields to update.", "schema": { "type": "string", "format": "google-fieldmask" @@ -516,7 +577,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/EmbedContentBatch" } } } @@ -527,33 +588,27 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/EmbedContentBatch" } } } } } - }, - "delete": { - "description": "Deletes the permission.", - "operationId": "tunedModels.permissions.delete", + } + }, + "/batches/{batchesId}": { + "get": { + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "batches.get", "parameters": [ { - "name": "tunedModelsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "permissionsId", + "name": "batchesId", "in": "path", "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" + "pattern": "^batches/[^/]+$" } } ], @@ -563,33 +618,25 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Operation" } } } } } }, - "get": { - "description": "Gets information about a specific Permission.", - "operationId": "tunedModels.permissions.get", + "delete": { + "description": "Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.", + "operationId": "batches.delete", "parameters": [ { - "name": "tunedModelsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "permissionsId", + "name": "batchesId", "in": "path", "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "description": "The name of the operation resource to be deleted.", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" + "pattern": "^batches/[^/]+$" } } ], @@ -599,7 +646,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Empty" } } } @@ -607,37 +654,47 @@ } } }, - "/tunedModels/{tunedModelsId}/operations/{operationsId}": { - "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "tunedModels.operations.get", + "/batches/{batchesId}:updateGenerateContentBatch": { + "patch": { + "description": "Updates a batch of GenerateContent requests for batch processing.", + "operationId": "batches.updateGenerateContentBatch", "parameters": [ { - "name": "tunedModelsId", + "name": "batchesId", "in": "path", "required": true, + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", "schema": { - "type": "string" + "type": "string", + "pattern": "^batches/[^/]+$" } }, { - "name": "operationsId", - "in": "path", - "required": true, - "description": "The name of the operation resource.", + "name": "updateMask", + "in": "query", + "description": "Optional. The list of fields to update.", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+/operations/[^/]+$" + "format": "google-fieldmask" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentBatch" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentBatch" } } } @@ -645,82 +702,19 @@ } } }, - "/tunedModels/{tunedModelsId}/operations": { - "get": { - "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", - "operationId": "tunedModels.operations.list", + "/dynamic/{dynamicId}:streamGenerateContent": { + "post": { + "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", + "operationId": "dynamic.streamGenerateContent", "parameters": [ { - "name": "filter", - "in": "query", - "description": "The standard list filter.", - "schema": { - "type": "string" - } - }, - { - "name": "tunedModelsId", - "in": "path", - "required": true, - "description": "The name of the operation's parent resource.", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - }, - { - "name": "pageSize", - "in": "query", - "description": "The standard list page size.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "The standard list page token.", - "schema": { - "type": "string" - } - }, - { - "name": "returnPartialSuccess", - "in": "query", - "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", - "schema": { - "type": "boolean" - } - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ListOperationsResponse" - } - } - } - } - } - } - }, - "/models/{modelsId}:streamGenerateContent": { - "post": { - "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", - "operationId": "models.streamGenerateContent", - "parameters": [ - { - "name": "modelsId", - "in": "path", - "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "name": "dynamicId", + "in": "path", + "required": true, + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^dynamic/[^/]+$" } } ], @@ -752,58 +746,19 @@ } } }, - "/models/{modelsId}:batchEmbedContents": { - "post": { - "description": "Generates multiple embedding vectors from the input `Content` which consists of a batch of strings represented as `EmbedContentRequest` objects.", - "operationId": "models.batchEmbedContents", - "parameters": [ - { - "name": "modelsId", - "in": "path", - "required": true, - "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", - "schema": { - "type": "string", - "pattern": "^models/[^/]+$" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BatchEmbedContentsRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BatchEmbedContentsResponse" - } - } - } - } - } - } - }, - "/models/{modelsId}:generateContent": { + "/dynamic/{dynamicId}:generateContent": { "post": { "description": "Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details.", - "operationId": "models.generateContent", + "operationId": "dynamic.generateContent", "parameters": [ { - "name": "modelsId", + "name": "dynamicId", "in": "path", "required": true, "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^dynamic/[^/]+$" } } ], @@ -830,27 +785,15 @@ } } }, - "/models/{modelsId}:embedContent": { + "/corpora": { "post": { - "description": "Generates a text embedding vector from the input `Content` using the specified [Gemini Embedding model](https://ai.google.dev/gemini-api/docs/models/gemini#text-embedding).", - "operationId": "models.embedContent", - "parameters": [ - { - "name": "modelsId", - "in": "path", - "required": true, - "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", - "schema": { - "type": "string", - "pattern": "^models/[^/]+$" - } - } - ], + "description": "Creates an empty `Corpus`.", + "operationId": "corpora.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentRequest" + "$ref": "#/components/schemas/Corpus" } } } @@ -861,23 +804,21 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentResponse" + "$ref": "#/components/schemas/Corpus" } } } } } - } - }, - "/models": { + }, "get": { - "description": "Lists the [`Model`s](https://ai.google.dev/gemini-api/docs/models/gemini) available through the Gemini API.", - "operationId": "models.list", + "description": "Lists all `Corpora` owned by the user.", + "operationId": "corpora.list", "parameters": [ { "name": "pageSize", "in": "query", - "description": "The maximum number of `Models` to return (per page). If unspecified, 50 models will be returned per page. This method returns at most 1000 models per page, even if you pass a larger page_size.", + "description": "Optional. The maximum number of `Corpora` to return (per page). The service may return fewer `Corpora`. If unspecified, at most 10 `Corpora` will be returned. The maximum size limit is 20 `Corpora` per page.", "schema": { "type": "integer", "format": "int32" @@ -886,7 +827,7 @@ { "name": "pageToken", "in": "query", - "description": "A page token, received from a previous `ListModels` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListModels` must match the call that provided the page token.", + "description": "Optional. A page token, received from a previous `ListCorpora` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListCorpora` must match the call that provided the page token.", "schema": { "type": "string" } @@ -898,7 +839,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListModelsResponse" + "$ref": "#/components/schemas/ListCorporaResponse" } } } @@ -906,77 +847,65 @@ } } }, - "/models/{modelsId}:batchGenerateContent": { - "post": { - "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", - "operationId": "models.batchGenerateContent", + "/corpora/{corporaId}": { + "delete": { + "description": "Deletes a `Corpus`.", + "operationId": "corpora.delete", "parameters": [ { - "name": "modelsId", + "name": "force", + "in": "query", + "description": "Optional. If set to true, any `Document`s and objects related to this `Corpus` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `Corpus` contains any `Document`s.", + "schema": { + "type": "boolean" + } + }, + { + "name": "corporaId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "description": "Required. The resource name of the `Corpus`. Example: `corpora/my-corpus-123`", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^corpora/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BatchGenerateContentRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/models/{modelsId}:countTokens": { - "post": { - "description": "Runs a model's tokenizer on input `Content` and returns the token count. Refer to the [tokens guide](https://ai.google.dev/gemini-api/docs/tokens) to learn more about tokens.", - "operationId": "models.countTokens", + }, + "get": { + "description": "Gets information about a specific `Corpus`.", + "operationId": "corpora.get", "parameters": [ { - "name": "modelsId", + "name": "corporaId", "in": "path", "required": true, - "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", + "description": "Required. The name of the `Corpus`. Example: `corpora/my-corpus-123`", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^corpora/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CountTokensRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CountTokensResponse" + "$ref": "#/components/schemas/Corpus" } } } @@ -984,19 +913,27 @@ } } }, - "/models/{modelsId}": { + "/corpora/{corporaId}/operations/{operationsId}": { "get": { - "description": "Gets information about a specific `Model` such as its version number, token limits, [parameters](https://ai.google.dev/gemini-api/docs/models/generative-models#model-parameters) and other metadata. Refer to the [Gemini models guide](https://ai.google.dev/gemini-api/docs/models/gemini) for detailed model information.", - "operationId": "models.get", + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "corpora.operations.get", "parameters": [ { - "name": "modelsId", + "name": "operationsId", "in": "path", "required": true, - "description": "Required. The resource name of the model. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", + "schema": { + "type": "string" + } + }, + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^corpora/[^/]+/operations/[^/]+$" } } ], @@ -1006,7 +943,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Model" + "$ref": "#/components/schemas/Operation" } } } @@ -1014,27 +951,44 @@ } } }, - "/models/{modelsId}:asyncBatchEmbedContent": { - "post": { - "description": "Enqueues a batch of `EmbedContent` requests for batch processing. We have a `BatchEmbedContents` handler in `GenerativeService`, but it was synchronized. So we name this one to be `Async` to avoid confusion.", - "operationId": "models.asyncBatchEmbedContent", + "/corpora/{corporaId}/permissions/{permissionsId}": { + "patch": { + "description": "Updates the permission.", + "operationId": "corpora.permissions.patch", "parameters": [ { - "name": "modelsId", + "name": "permissionsId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "schema": { + "type": "string" + } + }, + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^corpora/[^/]+/permissions/[^/]+$" } - } - ], - "requestBody": { - "content": { - "application/json": { + }, + { + "name": "updateMask", + "in": "query", + "description": "Required. The list of fields to update. Accepted ones: - role (`Permission.role` field)", + "schema": { + "type": "string", + "format": "google-fieldmask" + } + } + ], + "requestBody": { + "content": { + "application/json": { "schema": { - "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" + "$ref": "#/components/schemas/Permission" } } } @@ -1045,60 +999,33 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Permission" } } } } } - } - }, - "/models/{modelsId}/operations": { - "get": { - "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", - "operationId": "models.operations.list", + }, + "delete": { + "description": "Deletes the permission.", + "operationId": "corpora.permissions.delete", "parameters": [ { - "name": "filter", - "in": "query", - "description": "The standard list filter.", + "name": "permissionsId", + "in": "path", + "required": true, "schema": { "type": "string" } }, { - "name": "modelsId", + "name": "corporaId", "in": "path", "required": true, - "description": "The name of the operation's parent resource.", + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^models/[^/]+$" - } - }, - { - "name": "pageSize", - "in": "query", - "description": "The standard list page size.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "The standard list page token.", - "schema": { - "type": "string" - } - }, - { - "name": "returnPartialSuccess", - "in": "query", - "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", - "schema": { - "type": "boolean" + "pattern": "^corpora/[^/]+/permissions/[^/]+$" } } ], @@ -1108,21 +1035,19 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListOperationsResponse" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/models/{modelsId}/operations/{operationsId}": { + }, "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "models.operations.get", + "description": "Gets information about a specific Permission.", + "operationId": "corpora.permissions.get", "parameters": [ { - "name": "operationsId", + "name": "permissionsId", "in": "path", "required": true, "schema": { @@ -1130,13 +1055,13 @@ } }, { - "name": "modelsId", + "name": "corporaId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^models/[^/]+/operations/[^/]+$" + "pattern": "^corpora/[^/]+/permissions/[^/]+$" } } ], @@ -1146,7 +1071,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Permission" } } } @@ -1154,15 +1079,27 @@ } } }, - "/cachedContents": { + "/corpora/{corporaId}/permissions": { "post": { - "description": "Creates CachedContent resource.", - "operationId": "cachedContents.create", + "description": "Create a permission to a specific resource.", + "operationId": "corpora.permissions.create", + "parameters": [ + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "schema": { + "type": "string", + "pattern": "^corpora/[^/]+$" + } + } + ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/Permission" } } } @@ -1173,7 +1110,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/Permission" } } } @@ -1181,13 +1118,13 @@ } }, "get": { - "description": "Lists CachedContents.", - "operationId": "cachedContents.list", + "description": "Lists permissions for the specific resource.", + "operationId": "corpora.permissions.list", "parameters": [ { "name": "pageSize", "in": "query", - "description": "Optional. The maximum number of cached contents to return. The service may return fewer than this value. If unspecified, some default (under maximum) number of items will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.", + "description": "Optional. The maximum number of `Permission`s to return (per page). The service may return fewer permissions. If unspecified, at most 10 permissions will be returned. This method returns at most 1000 permissions per page, even if you pass larger page_size.", "schema": { "type": "integer", "format": "int32" @@ -1196,10 +1133,20 @@ { "name": "pageToken", "in": "query", - "description": "Optional. A page token, received from a previous `ListCachedContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCachedContents` must match the call that provided the page token.", + "description": "Optional. A page token, received from a previous `ListPermissions` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListPermissions` must match the call that provided the page token.", "schema": { "type": "string" } + }, + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "schema": { + "type": "string", + "pattern": "^corpora/[^/]+$" + } } ], "responses": { @@ -1208,7 +1155,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListCachedContentsResponse" + "$ref": "#/components/schemas/ListPermissionsResponse" } } } @@ -1216,36 +1163,15 @@ } } }, - "/cachedContents/{cachedContentsId}": { - "patch": { - "description": "Updates CachedContent resource (only expiration is updatable).", - "operationId": "cachedContents.patch", - "parameters": [ - { - "name": "cachedContentsId", - "in": "path", - "required": true, - "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", - "schema": { - "type": "string", - "pattern": "^cachedContents/[^/]+$" - } - }, - { - "name": "updateMask", - "in": "query", - "description": "The list of fields to update.", - "schema": { - "type": "string", - "format": "google-fieldmask" - } - } - ], + "/fileSearchStores": { + "post": { + "description": "Creates an empty `FileSearchStore`.", + "operationId": "fileSearchStores.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/FileSearchStore" } } } @@ -1256,25 +1182,32 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/FileSearchStore" } } } } } }, - "delete": { - "description": "Deletes CachedContent resource.", - "operationId": "cachedContents.delete", + "get": { + "description": "Lists all `FileSearchStores` owned by the user.", + "operationId": "fileSearchStores.list", "parameters": [ { - "name": "cachedContentsId", - "in": "path", - "required": true, - "description": "Required. The resource name referring to the content cache entry Format: `cachedContents/{id}`", + "name": "pageSize", + "in": "query", + "description": "Optional. The maximum number of `FileSearchStores` to return (per page). The service may return fewer `FileSearchStores`. If unspecified, at most 10 `FileSearchStores` will be returned. The maximum size limit is 20 `FileSearchStores` per page.", "schema": { - "type": "string", - "pattern": "^cachedContents/[^/]+$" + "type": "integer", + "format": "int32" + } + }, + { + "name": "pageToken", + "in": "query", + "description": "Optional. A page token, received from a previous `ListFileSearchStores` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListFileSearchStores` must match the call that provided the page token.", + "schema": { + "type": "string" } } ], @@ -1284,25 +1217,27 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/ListFileSearchStoresResponse" } } } } } - }, + } + }, + "/fileSearchStores/{fileSearchStoresId}": { "get": { - "description": "Reads CachedContent resource.", - "operationId": "cachedContents.get", + "description": "Gets information about a specific `FileSearchStore`.", + "operationId": "fileSearchStores.get", "parameters": [ { - "name": "cachedContentsId", + "name": "fileSearchStoresId", "in": "path", "required": true, - "description": "Required. The resource name referring to the content cache entry. Format: `cachedContents/{id}`", + "description": "Required. The name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^cachedContents/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], @@ -1312,27 +1247,33 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/FileSearchStore" } } } } } - } - }, - "/files/{filesId}": { - "get": { - "description": "Gets the metadata for the given `File`.", - "operationId": "files.get", + }, + "delete": { + "description": "Deletes a `FileSearchStore`.", + "operationId": "fileSearchStores.delete", "parameters": [ { - "name": "filesId", + "name": "force", + "in": "query", + "description": "Optional. If set to true, any `Document`s and objects related to this `FileSearchStore` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `FileSearchStore` contains any `Document`s.", + "schema": { + "type": "boolean" + } + }, + { + "name": "fileSearchStoresId", "in": "path", "required": true, - "description": "Required. The name of the `File` to get. Example: `files/abc-123`", + "description": "Required. The resource name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^files/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], @@ -1342,35 +1283,46 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/File" + "$ref": "#/components/schemas/Empty" } } } } } - }, - "delete": { - "description": "Deletes the `File`.", - "operationId": "files.delete", + } + }, + "/fileSearchStores/{fileSearchStoresId}:importFile": { + "post": { + "description": "Imports a `File` from File Service to a `FileSearchStore`.", + "operationId": "fileSearchStores.importFile", "parameters": [ { - "name": "filesId", + "name": "fileSearchStoresId", "in": "path", "required": true, - "description": "Required. The name of the `File` to delete. Example: `files/abc-123`", + "description": "Required. Immutable. The name of the `FileSearchStore` to import the file into. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^files/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ImportFileRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Operation" } } } @@ -1378,26 +1330,27 @@ } } }, - "/files": { + "/fileSearchStores/{fileSearchStoresId}/operations/{operationsId}": { "get": { - "description": "Lists the metadata for `File`s owned by the requesting project.", - "operationId": "files.list", + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "fileSearchStores.operations.get", "parameters": [ { - "name": "pageSize", - "in": "query", - "description": "Optional. Maximum number of `File`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 100.", + "name": "operationsId", + "in": "path", + "required": true, "schema": { - "type": "integer", - "format": "int32" + "type": "string" } }, { - "name": "pageToken", - "in": "query", - "description": "Optional. A page token from a previous `ListFiles` call.", + "name": "fileSearchStoresId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", "schema": { - "type": "string" + "type": "string", + "pattern": "^fileSearchStores/[^/]+/operations/[^/]+$" } } ], @@ -1407,59 +1360,89 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListFilesResponse" + "$ref": "#/components/schemas/Operation" } } } } } - }, - "post": { - "description": "Creates a `File`.", - "operationId": "media.upload", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateFileRequest" - } + } + }, + "/fileSearchStores/{fileSearchStoresId}/documents/{documentsId}": { + "delete": { + "description": "Deletes a `Document`.", + "operationId": "fileSearchStores.documents.delete", + "parameters": [ + { + "name": "fileSearchStoresId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "force", + "in": "query", + "description": "Optional. If set to true, any `Chunk`s and objects related to this `Document` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `Document` contains any `Chunk`s.", + "schema": { + "type": "boolean" + } + }, + { + "name": "documentsId", + "in": "path", + "required": true, + "description": "Required. The resource name of the `Document` to delete. Example: `fileSearchStores/my-file-search-store-123/documents/the-doc-abc`", + "schema": { + "type": "string", + "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CreateFileResponse" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/files:register": { - "post": { - "description": "Registers a Google Cloud Storage files with FileService. The user is expected to provide Google Cloud Storage URIs and will receive a File resource for each URI in return. Note that the files are not copied, just registered with File API. If one file fails to register, the whole request fails.", - "operationId": "files.register", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RegisterFilesRequest" - } + }, + "get": { + "description": "Gets information about a specific `Document`.", + "operationId": "fileSearchStores.documents.get", + "parameters": [ + { + "name": "fileSearchStoresId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "documentsId", + "in": "path", + "required": true, + "description": "Required. The name of the `Document` to retrieve. Example: `fileSearchStores/my-file-search-store-123/documents/the-doc-abc`", + "schema": { + "type": "string", + "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/RegisterFilesResponse" + "$ref": "#/components/schemas/Document" } } } @@ -1467,38 +1450,46 @@ } } }, - "/dynamic/{dynamicId}:generateContent": { - "post": { - "description": "Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details.", - "operationId": "dynamic.generateContent", + "/fileSearchStores/{fileSearchStoresId}/documents": { + "get": { + "description": "Lists all `Document`s in a `Corpus`.", + "operationId": "fileSearchStores.documents.list", "parameters": [ { - "name": "dynamicId", + "name": "pageSize", + "in": "query", + "description": "Optional. The maximum number of `Document`s to return (per page). The service may return fewer `Document`s. If unspecified, at most 10 `Document`s will be returned. The maximum size limit is 20 `Document`s per page.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "pageToken", + "in": "query", + "description": "Optional. A page token, received from a previous `ListDocuments` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListDocuments` must match the call that provided the page token.", + "schema": { + "type": "string" + } + }, + { + "name": "fileSearchStoresId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "description": "Required. The name of the `FileSearchStore` containing `Document`s. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^dynamic/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/ListDocumentsResponse" } } } @@ -1506,43 +1497,37 @@ } } }, - "/dynamic/{dynamicId}:streamGenerateContent": { - "post": { - "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", - "operationId": "dynamic.streamGenerateContent", + "/fileSearchStores/{fileSearchStoresId}/upload/operations/{operationsId}": { + "get": { + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "fileSearchStores.upload.operations.get", "parameters": [ { - "name": "dynamicId", + "name": "operationsId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "schema": { + "type": "string" + } + }, + { + "name": "fileSearchStoresId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^dynamic/[^/]+$" + "pattern": "^fileSearchStores/[^/]+/upload/operations/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" - } - }, - "text/event-stream": { - "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/Operation" } } } @@ -1550,15 +1535,27 @@ } } }, - "/environments:create": { + "/models/{modelsId}:countTokens": { "post": { - "description": "Creates an environment.", - "operationId": "environments.create", + "description": "Runs a model's tokenizer on input `Content` and returns the token count. Refer to the [tokens guide](https://ai.google.dev/gemini-api/docs/tokens) to learn more about tokens.", + "operationId": "models.countTokens", + "parameters": [ + { + "name": "modelsId", + "in": "path", + "required": true, + "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", + "schema": { + "type": "string", + "pattern": "^models/[^/]+$" + } + } + ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CreateEnvironmentRequest" + "$ref": "#/components/schemas/CountTokensRequest" } } } @@ -1569,7 +1566,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Environment" + "$ref": "#/components/schemas/CountTokensResponse" } } } @@ -1577,28 +1574,38 @@ } } }, - "/environments/{id}:delete": { - "delete": { - "description": "Deletes an environment.", - "operationId": "environments.delete", + "/models/{modelsId}:batchEmbedContents": { + "post": { + "description": "Generates multiple embedding vectors from the input `Content` which consists of a batch of strings represented as `EmbedContentRequest` objects.", + "operationId": "models.batchEmbedContents", "parameters": [ { - "name": "id", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The identifier of the environment to delete.", + "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", "schema": { - "type": "string" + "type": "string", + "pattern": "^models/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BatchEmbedContentsRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/BatchEmbedContentsResponse" } } } @@ -1606,15 +1613,15 @@ } } }, - "/environments:list": { + "/models": { "get": { - "description": "Lists environments.", - "operationId": "environments.list", + "description": "Lists the [`Model`s](https://ai.google.dev/gemini-api/docs/models/gemini) available through the Gemini API.", + "operationId": "models.list", "parameters": [ { "name": "pageSize", "in": "query", - "description": "Optional. Maximum number of environments to return. If unspecified, defaults to 50. Maximum is 1000.", + "description": "The maximum number of `Models` to return (per page). If unspecified, 50 models will be returned per page. This method returns at most 1000 models per page, even if you pass a larger page_size.", "schema": { "type": "integer", "format": "int32" @@ -1623,7 +1630,7 @@ { "name": "pageToken", "in": "query", - "description": "Optional. Pagination token.", + "description": "A page token, received from a previous `ListModels` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListModels` must match the call that provided the page token.", "schema": { "type": "string" } @@ -1635,7 +1642,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListEnvironmentsResponse" + "$ref": "#/components/schemas/ListModelsResponse" } } } @@ -1643,28 +1650,38 @@ } } }, - "/environments/{id}:get": { - "get": { - "description": "Gets an environment.", - "operationId": "environments.get", - "parameters": [ - { - "name": "id", + "/models/{modelsId}:generateContent": { + "post": { + "description": "Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details.", + "operationId": "models.generateContent", + "parameters": [ + { + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The identifier of the environment to retrieve.", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { - "type": "string" + "type": "string", + "pattern": "^models/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Environment" + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -1672,50 +1689,71 @@ } } }, - "/corpora": { - "get": { - "description": "Lists all `Corpora` owned by the user.", - "operationId": "corpora.list", + "/models/{modelsId}:streamGenerateContent": { + "post": { + "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", + "operationId": "models.streamGenerateContent", "parameters": [ { - "name": "pageSize", - "in": "query", - "description": "Optional. The maximum number of `Corpora` to return (per page). The service may return fewer `Corpora`. If unspecified, at most 10 `Corpora` will be returned. The maximum size limit is 20 `Corpora` per page.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "Optional. A page token, received from a previous `ListCorpora` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListCorpora` must match the call that provided the page token.", + "name": "modelsId", + "in": "path", + "required": true, + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { - "type": "string" + "type": "string", + "pattern": "^models/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListCorporaResponse" + "$ref": "#/components/schemas/GenerateContentResponse" + } + }, + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/GenerateContentResponse" } } } } } - }, + } + }, + "/models/{modelsId}:batchGenerateContent": { "post": { - "description": "Creates an empty `Corpus`.", - "operationId": "corpora.create", + "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", + "operationId": "models.batchGenerateContent", + "parameters": [ + { + "name": "modelsId", + "in": "path", + "required": true, + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "schema": { + "type": "string", + "pattern": "^models/[^/]+$" + } + } + ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/BatchGenerateContentRequest" } } } @@ -1726,7 +1764,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/Operation" } } } @@ -1734,55 +1772,58 @@ } } }, - "/corpora/{corporaId}": { - "get": { - "description": "Gets information about a specific `Corpus`.", - "operationId": "corpora.get", + "/models/{modelsId}:embedContent": { + "post": { + "description": "Generates a text embedding vector from the input `Content` using the specified [Gemini Embedding model](https://ai.google.dev/gemini-api/docs/models/gemini#text-embedding).", + "operationId": "models.embedContent", "parameters": [ { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The name of the `Corpus`. Example: `corpora/my-corpus-123`", + "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^models/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmbedContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/EmbedContentResponse" } } } } } - }, - "delete": { - "description": "Deletes a `Corpus`.", - "operationId": "corpora.delete", + } + }, + "/models/{modelsId}": { + "get": { + "description": "Gets information about a specific `Model` such as its version number, token limits, [parameters](https://ai.google.dev/gemini-api/docs/models/generative-models#model-parameters) and other metadata. Refer to the [Gemini models guide](https://ai.google.dev/gemini-api/docs/models/gemini) for detailed model information.", + "operationId": "models.get", "parameters": [ { - "name": "force", - "in": "query", - "description": "Optional. If set to true, any `Document`s and objects related to this `Corpus` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `Corpus` contains any `Document`s.", - "schema": { - "type": "boolean" - } - }, - { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The resource name of the `Corpus`. Example: `corpora/my-corpus-123`", + "description": "Required. The resource name of the model. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^models/[^/]+$" } } ], @@ -1792,7 +1833,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Model" } } } @@ -1800,36 +1841,19 @@ } } }, - "/corpora/{corporaId}/permissions/{permissionsId}": { - "patch": { - "description": "Updates the permission.", - "operationId": "corpora.permissions.patch", + "/models/{modelsId}:asyncBatchEmbedContent": { + "post": { + "description": "Enqueues a batch of `EmbedContent` requests for batch processing. We have a `BatchEmbedContents` handler in `GenerativeService`, but it was synchronized. So we name this one to be `Async` to avoid confusion.", + "operationId": "models.asyncBatchEmbedContent", "parameters": [ { - "name": "permissionsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.", - "schema": { - "type": "string", - "pattern": "^corpora/[^/]+/permissions/[^/]+$" - } - }, - { - "name": "updateMask", - "in": "query", - "description": "Required. The list of fields to update. Accepted ones: - role (`Permission.role` field)", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "format": "google-fieldmask" + "pattern": "^models/[^/]+$" } } ], @@ -1837,7 +1861,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" } } } @@ -1848,33 +1872,60 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Operation" } } } } } - }, - "delete": { - "description": "Deletes the permission.", - "operationId": "corpora.permissions.delete", + } + }, + "/models/{modelsId}/operations": { + "get": { + "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", + "operationId": "models.operations.list", "parameters": [ { - "name": "permissionsId", - "in": "path", - "required": true, + "name": "filter", + "in": "query", + "description": "The standard list filter.", "schema": { "type": "string" } }, { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "description": "The name of the operation's parent resource.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+/permissions/[^/]+$" + "pattern": "^models/[^/]+$" + } + }, + { + "name": "pageSize", + "in": "query", + "description": "The standard list page size.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "pageToken", + "in": "query", + "description": "The standard list page token.", + "schema": { + "type": "string" + } + }, + { + "name": "returnPartialSuccess", + "in": "query", + "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", + "schema": { + "type": "boolean" } } ], @@ -1884,19 +1935,21 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/ListOperationsResponse" } } } } } - }, + } + }, + "/models/{modelsId}/operations/{operationsId}": { "get": { - "description": "Gets information about a specific Permission.", - "operationId": "corpora.permissions.get", + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "models.operations.get", "parameters": [ { - "name": "permissionsId", + "name": "operationsId", "in": "path", "required": true, "schema": { @@ -1904,13 +1957,13 @@ } }, { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+/permissions/[^/]+$" + "pattern": "^models/[^/]+/operations/[^/]+$" } } ], @@ -1920,7 +1973,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Operation" } } } @@ -1928,73 +1981,47 @@ } } }, - "/corpora/{corporaId}/permissions": { - "post": { - "description": "Create a permission to a specific resource.", - "operationId": "corpora.permissions.create", + "/tunedModels/{tunedModelsId}": { + "get": { + "description": "Gets information about a specific TunedModel.", + "operationId": "tunedModels.get", "parameters": [ { - "name": "corporaId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Permission" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/TunedModel" } } } } } }, - "get": { - "description": "Lists permissions for the specific resource.", - "operationId": "corpora.permissions.list", + "delete": { + "description": "Deletes a tuned model.", + "operationId": "tunedModels.delete", "parameters": [ { - "name": "pageSize", - "in": "query", - "description": "Optional. The maximum number of `Permission`s to return (per page). The service may return fewer permissions. If unspecified, at most 10 permissions will be returned. This method returns at most 1000 permissions per page, even if you pass larger page_size.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "Optional. A page token, received from a previous `ListPermissions` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListPermissions` must match the call that provided the page token.", - "schema": { - "type": "string" - } - }, - { - "name": "corporaId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], @@ -2004,82 +2031,53 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListPermissionsResponse" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/corpora/{corporaId}/operations/{operationsId}": { - "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "corpora.operations.get", + }, + "patch": { + "description": "Updates a tuned model.", + "operationId": "tunedModels.patch", "parameters": [ { - "name": "operationsId", + "name": "tunedModelsId", "in": "path", "required": true, + "description": "Output only. The tuned model name. A unique name will be generated on create. Example: `tunedModels/az2mb0bpw6i` If display_name is set on create, the id portion of the name will be set by concatenating the words of the display_name with hyphens and adding a random portion for uniqueness. Example: * display_name = `Sentence Translator` * name = `tunedModels/sentence-translator-u3b7m`", "schema": { - "type": "string" + "type": "string", + "pattern": "^tunedModels/[^/]+$" } }, { - "name": "corporaId", - "in": "path", - "required": true, - "description": "The name of the operation resource.", + "name": "updateMask", + "in": "query", + "description": "Optional. The list of fields to update.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+/operations/[^/]+$" + "format": "google-fieldmask" } } ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Operation" - } + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TunedModel" } } } - } - } - }, - "/generatedFiles": { - "get": { - "description": "Lists the generated files owned by the requesting project.", - "operationId": "generatedFiles.list", - "parameters": [ - { - "name": "pageSize", - "in": "query", - "description": "Optional. Maximum number of `GeneratedFile`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 50.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "Optional. A page token from a previous `ListGeneratedFiles` call.", - "schema": { - "type": "string" - } - } - ], + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListGeneratedFilesResponse" + "$ref": "#/components/schemas/TunedModel" } } } @@ -2087,37 +2085,38 @@ } } }, - "/generatedFiles/{generatedFilesId}/operations/{operationsId}": { - "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "generatedFiles.operations.get", + "/tunedModels/{tunedModelsId}:transferOwnership": { + "post": { + "description": "Transfers ownership of the tuned model. This is the only way to change ownership of the tuned model. The current owner will be downgraded to writer role.", + "operationId": "tunedModels.transferOwnership", "parameters": [ { - "name": "operationsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "generatedFilesId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "Required. The resource name of the tuned model to transfer ownership. Format: `tunedModels/my-model-id`", "schema": { "type": "string", - "pattern": "^generatedFiles/[^/]+/operations/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TransferOwnershipRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/TransferOwnershipResponse" } } } @@ -2125,15 +2124,23 @@ } } }, - "/fileSearchStores": { + "/tunedModels": { "get": { - "description": "Lists all `FileSearchStores` owned by the user.", - "operationId": "fileSearchStores.list", + "description": "Lists created tuned models.", + "operationId": "tunedModels.list", "parameters": [ + { + "name": "filter", + "in": "query", + "description": "Optional. A filter is a full text search over the tuned model's description and display name. By default, results will not include tuned models shared with everyone. Additional operators: - owner:me - writers:me - readers:me - readers:everyone Examples: \"owner:me\" returns all tuned models to which caller has owner role \"readers:me\" returns all tuned models to which caller has reader role \"readers:everyone\" returns all tuned models that are shared with everyone", + "schema": { + "type": "string" + } + }, { "name": "pageSize", "in": "query", - "description": "Optional. The maximum number of `FileSearchStores` to return (per page). The service may return fewer `FileSearchStores`. If unspecified, at most 10 `FileSearchStores` will be returned. The maximum size limit is 20 `FileSearchStores` per page.", + "description": "Optional. The maximum number of `TunedModels` to return (per page). The service may return fewer tuned models. If unspecified, at most 10 tuned models will be returned. This method returns at most 1000 models per page, even if you pass a larger page_size.", "schema": { "type": "integer", "format": "int32" @@ -2142,7 +2149,7 @@ { "name": "pageToken", "in": "query", - "description": "Optional. A page token, received from a previous `ListFileSearchStores` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListFileSearchStores` must match the call that provided the page token.", + "description": "Optional. A page token, received from a previous `ListTunedModels` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListTunedModels` must match the call that provided the page token.", "schema": { "type": "string" } @@ -2154,7 +2161,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListFileSearchStoresResponse" + "$ref": "#/components/schemas/ListTunedModelsResponse" } } } @@ -2162,13 +2169,23 @@ } }, "post": { - "description": "Creates an empty `FileSearchStore`.", - "operationId": "fileSearchStores.create", + "description": "Creates a tuned model. Check intermediate tuning progress (if any) through the [google.longrunning.Operations] service. Access status and results through the Operations service. Example: GET /v1/tunedModels/az2mb0bpw6i/operations/000-111-222", + "operationId": "tunedModels.create", + "parameters": [ + { + "name": "tunedModelId", + "in": "query", + "description": "Optional. The unique id for the tuned model if specified. This value should be up to 40 characters, the first character must be a letter, the last could be a letter or a number. The id must match the regular expression: `[a-z]([a-z0-9-]{0,38}[a-z0-9])?`.", + "schema": { + "type": "string" + } + } + ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/FileSearchStore" + "$ref": "#/components/schemas/TunedModel" } } } @@ -2179,7 +2196,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/FileSearchStore" + "$ref": "#/components/schemas/Operation" } } } @@ -2187,65 +2204,77 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}": { - "get": { - "description": "Gets information about a specific `FileSearchStore`.", - "operationId": "fileSearchStores.get", + "/tunedModels/{tunedModelsId}:generateContent": { + "post": { + "description": "Generates a model response given an input `GenerateContentRequest`. Refer to the [text generation guide](https://ai.google.dev/gemini-api/docs/text-generation) for detailed usage information. Input capabilities differ between models, including tuned models. Refer to the [model guide](https://ai.google.dev/gemini-api/docs/models/gemini) and [tuning guide](https://ai.google.dev/gemini-api/docs/model-tuning) for details.", + "operationId": "tunedModels.generateContent", "parameters": [ { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/FileSearchStore" + "$ref": "#/components/schemas/GenerateContentResponse" } } } } } - }, - "delete": { - "description": "Deletes a `FileSearchStore`.", - "operationId": "fileSearchStores.delete", + } + }, + "/tunedModels/{tunedModelsId}:asyncBatchEmbedContent": { + "post": { + "description": "Enqueues a batch of `EmbedContent` requests for batch processing. We have a `BatchEmbedContents` handler in `GenerativeService`, but it was synchronized. So we name this one to be `Async` to avoid confusion.", + "operationId": "tunedModels.asyncBatchEmbedContent", "parameters": [ { - "name": "force", - "in": "query", - "description": "Optional. If set to true, any `Document`s and objects related to this `FileSearchStore` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `FileSearchStore` contains any `Document`s.", - "schema": { - "type": "boolean" - } - }, - { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The resource name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Operation" } } } @@ -2253,19 +2282,19 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}:importFile": { + "/tunedModels/{tunedModelsId}:streamGenerateContent": { "post": { - "description": "Imports a `File` from File Service to a `FileSearchStore`.", - "operationId": "fileSearchStores.importFile", + "description": "Generates a [streamed response](https://ai.google.dev/gemini-api/docs/text-generation?lang=python#generate-a-text-stream) from the model given an input `GenerateContentRequest`.", + "operationId": "tunedModels.streamGenerateContent", "parameters": [ { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. Immutable. The name of the `FileSearchStore` to import the file into. Example: `fileSearchStores/my-file-search-store-123`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], @@ -2273,7 +2302,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ImportFileRequest" + "$ref": "#/components/schemas/GenerateContentRequest" } } } @@ -2284,7 +2313,12 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentResponse" + } + }, + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -2292,30 +2326,31 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/upload/operations/{operationsId}": { - "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "fileSearchStores.upload.operations.get", + "/tunedModels/{tunedModelsId}:batchGenerateContent": { + "post": { + "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", + "operationId": "tunedModels.batchGenerateContent", "parameters": [ { - "name": "operationsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/upload/operations/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BatchGenerateContentRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", @@ -2330,35 +2365,52 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/documents/{documentsId}": { - "delete": { - "description": "Deletes a `Document`.", - "operationId": "fileSearchStores.documents.delete", + "/tunedModels/{tunedModelsId}/operations": { + "get": { + "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", + "operationId": "tunedModels.operations.list", "parameters": [ { - "name": "fileSearchStoresId", + "name": "filter", + "in": "query", + "description": "The standard list filter.", + "schema": { + "type": "string" + } + }, + { + "name": "tunedModelsId", "in": "path", "required": true, + "description": "The name of the operation's parent resource.", "schema": { - "type": "string" + "type": "string", + "pattern": "^tunedModels/[^/]+$" } }, { - "name": "force", + "name": "pageSize", "in": "query", - "description": "Optional. If set to true, any `Chunk`s and objects related to this `Document` will also be deleted. If false (the default), a `FAILED_PRECONDITION` error will be returned if `Document` contains any `Chunk`s.", + "description": "The standard list page size.", "schema": { - "type": "boolean" + "type": "integer", + "format": "int32" } }, { - "name": "documentsId", - "in": "path", - "required": true, - "description": "Required. The resource name of the `Document` to delete. Example: `fileSearchStores/my-file-search-store-123/documents/the-doc-abc`", + "name": "pageToken", + "in": "query", + "description": "The standard list page token.", "schema": { - "type": "string", - "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" + "type": "string" + } + }, + { + "name": "returnPartialSuccess", + "in": "query", + "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", + "schema": { + "type": "boolean" } } ], @@ -2368,19 +2420,21 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/ListOperationsResponse" } } } } } - }, + } + }, + "/tunedModels/{tunedModelsId}/operations/{operationsId}": { "get": { - "description": "Gets information about a specific `Document`.", - "operationId": "fileSearchStores.documents.get", + "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", + "operationId": "tunedModels.operations.get", "parameters": [ { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, "schema": { @@ -2388,13 +2442,13 @@ } }, { - "name": "documentsId", + "name": "operationsId", "in": "path", "required": true, - "description": "Required. The name of the `Document` to retrieve. Example: `fileSearchStores/my-file-search-store-123/documents/the-doc-abc`", + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" + "pattern": "^tunedModels/[^/]+/operations/[^/]+$" } } ], @@ -2404,7 +2458,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Document" + "$ref": "#/components/schemas/Operation" } } } @@ -2412,36 +2466,27 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/documents": { + "/tunedModels/{tunedModelsId}/permissions/{permissionsId}": { "get": { - "description": "Lists all `Document`s in a `Corpus`.", - "operationId": "fileSearchStores.documents.list", + "description": "Gets information about a specific Permission.", + "operationId": "tunedModels.permissions.get", "parameters": [ { - "name": "pageSize", - "in": "query", - "description": "Optional. The maximum number of `Document`s to return (per page). The service may return fewer `Document`s. If unspecified, at most 10 `Document`s will be returned. The maximum size limit is 20 `Document`s per page.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "name": "pageToken", - "in": "query", - "description": "Optional. A page token, received from a previous `ListDocuments` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListDocuments` must match the call that provided the page token.", + "name": "tunedModelsId", + "in": "path", + "required": true, "schema": { "type": "string" } }, { - "name": "fileSearchStoresId", + "name": "permissionsId", "in": "path", "required": true, - "description": "Required. The name of the `FileSearchStore` containing `Document`s. Example: `fileSearchStores/my-file-search-store-123`", + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" } } ], @@ -2451,21 +2496,19 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListDocumentsResponse" + "$ref": "#/components/schemas/Permission" } } } } } - } - }, - "/fileSearchStores/{fileSearchStoresId}/operations/{operationsId}": { - "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "fileSearchStores.operations.get", + }, + "delete": { + "description": "Deletes the permission.", + "operationId": "tunedModels.permissions.delete", "parameters": [ { - "name": "operationsId", + "name": "tunedModelsId", "in": "path", "required": true, "schema": { @@ -2473,13 +2516,13 @@ } }, { - "name": "fileSearchStoresId", + "name": "permissionsId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/operations/[^/]+$" + "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" } } ], @@ -2489,27 +2532,42 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/fileSearchStores/{fileSearchStoresId}:uploadToFileSearchStore": { - "post": { - "description": "Uploads data to a FileSearchStore, preprocesses and chunks before storing it in a FileSearchStore Document.", - "operationId": "media.uploadToFileSearchStore", + }, + "patch": { + "description": "Updates the permission.", + "operationId": "tunedModels.permissions.patch", "parameters": [ { - "name": "fileSearchStoresId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. Immutable. The name of the `FileSearchStore` to upload the file into. Example: `fileSearchStores/my-file-search-store-123`", + "schema": { + "type": "string" + } + }, + { + "name": "permissionsId", + "in": "path", + "required": true, + "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" + } + }, + { + "name": "updateMask", + "in": "query", + "description": "Required. The list of fields to update. Accepted ones: - role (`Permission.role` field)", + "schema": { + "type": "string", + "format": "google-fieldmask" } } ], @@ -2517,7 +2575,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/UploadToFileSearchStoreRequest" + "$ref": "#/components/schemas/Permission" } } } @@ -2528,7 +2586,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CustomLongRunningOperation" + "$ref": "#/components/schemas/Permission" } } } @@ -2536,29 +2594,38 @@ } } }, - "/batches/{batchesId}": { - "delete": { - "description": "Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.", - "operationId": "batches.delete", + "/tunedModels/{tunedModelsId}/permissions": { + "post": { + "description": "Create a permission to a specific resource.", + "operationId": "tunedModels.permissions.create", "parameters": [ { - "name": "batchesId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "The name of the operation resource to be deleted.", + "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", "schema": { "type": "string", - "pattern": "^batches/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Permission" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Permission" } } } @@ -2566,17 +2633,34 @@ } }, "get": { - "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.", - "operationId": "batches.get", + "description": "Lists permissions for the specific resource.", + "operationId": "tunedModels.permissions.list", "parameters": [ { - "name": "batchesId", + "name": "pageSize", + "in": "query", + "description": "Optional. The maximum number of `Permission`s to return (per page). The service may return fewer permissions. If unspecified, at most 10 permissions will be returned. This method returns at most 1000 permissions per page, even if you pass larger page_size.", + "schema": { + "type": "integer", + "format": "int32" + } + }, + { + "name": "pageToken", + "in": "query", + "description": "Optional. A page token, received from a previous `ListPermissions` call. Provide the `page_token` returned by one request as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListPermissions` must match the call that provided the page token.", + "schema": { + "type": "string" + } + }, + { + "name": "tunedModelsId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", "schema": { "type": "string", - "pattern": "^batches/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], @@ -2586,7 +2670,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/ListPermissionsResponse" } } } @@ -2594,36 +2678,15 @@ } } }, - "/batches/{batchesId}:updateGenerateContentBatch": { - "patch": { - "description": "Updates a batch of GenerateContent requests for batch processing.", - "operationId": "batches.updateGenerateContentBatch", - "parameters": [ - { - "name": "batchesId", - "in": "path", - "required": true, - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", - "schema": { - "type": "string", - "pattern": "^batches/[^/]+$" - } - }, - { - "name": "updateMask", - "in": "query", - "description": "Optional. The list of fields to update.", - "schema": { - "type": "string", - "format": "google-fieldmask" - } - } - ], + "/environments:create": { + "post": { + "description": "Creates an environment.", + "operationId": "environments.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentBatch" + "$ref": "#/components/schemas/CreateEnvironmentRequest" } } } @@ -2634,37 +2697,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentBatch" - } - } - } - } - } - } - }, - "/batches/{batchesId}:cancel": { - "post": { - "description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.", - "operationId": "batches.cancel", - "parameters": [ - { - "name": "batchesId", - "in": "path", - "required": true, - "description": "The name of the operation resource to be cancelled.", - "schema": { - "type": "string", - "pattern": "^batches/[^/]+$" - } - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Environment" } } } @@ -2672,23 +2705,15 @@ } } }, - "/batches": { + "/environments:list": { "get": { - "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.", - "operationId": "batches.list", + "description": "Lists environments.", + "operationId": "environments.list", "parameters": [ - { - "name": "filter", - "in": "query", - "description": "The standard list filter.", - "schema": { - "type": "string" - } - }, { "name": "pageSize", "in": "query", - "description": "The standard list page size.", + "description": "Optional. Maximum number of environments to return. If unspecified, defaults to 50. Maximum is 1000.", "schema": { "type": "integer", "format": "int32" @@ -2697,18 +2722,10 @@ { "name": "pageToken", "in": "query", - "description": "The standard list page token.", + "description": "Optional. Pagination token.", "schema": { "type": "string" } - }, - { - "name": "returnPartialSuccess", - "in": "query", - "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.", - "schema": { - "type": "boolean" - } } ], "responses": { @@ -2717,7 +2734,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListOperationsResponse" + "$ref": "#/components/schemas/ListEnvironmentsResponse" } } } @@ -2725,47 +2742,28 @@ } } }, - "/batches/{batchesId}:updateEmbedContentBatch": { - "patch": { - "description": "Updates a batch of EmbedContent requests for batch processing.", - "operationId": "batches.updateEmbedContentBatch", + "/environments/{id}:delete": { + "delete": { + "description": "Deletes an environment.", + "operationId": "environments.delete", "parameters": [ { - "name": "batchesId", + "name": "id", "in": "path", "required": true, - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", - "schema": { - "type": "string", - "pattern": "^batches/[^/]+$" - } - }, - { - "name": "updateMask", - "in": "query", - "description": "Optional. The list of fields to update.", + "description": "Required. The identifier of the environment to delete.", "schema": { - "type": "string", - "format": "google-fieldmask" + "type": "string" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmbedContentBatch" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentBatch" + "$ref": "#/components/schemas/Empty" } } } @@ -2773,26 +2771,28 @@ } } }, - "/auth_tokens": { - "post": { - "description": "Creates a token that can be used to constrain the behavior of a BidiGenerateContent session.", - "operationId": "auth_tokens.create", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthToken" - } + "/environments/{id}:get": { + "get": { + "description": "Gets an environment.", + "operationId": "environments.get", + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "description": "Required. The identifier of the environment to retrieve.", + "schema": { + "type": "string" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/AuthToken" + "$ref": "#/components/schemas/Environment" } } } @@ -2803,472 +2803,262 @@ }, "components": { "schemas": { - "UrlMetadata": { - "description": "Context of the a single url retrieval.", - "type": "object", + "AuthToken": { "properties": { - "urlRetrievalStatus": { - "description": "Status of the url retrieval.", - "enum": [ - "URL_RETRIEVAL_STATUS_UNSPECIFIED", - "URL_RETRIEVAL_STATUS_SUCCESS", - "URL_RETRIEVAL_STATUS_ERROR", - "URL_RETRIEVAL_STATUS_PAYWALL", - "URL_RETRIEVAL_STATUS_UNSAFE" - ], - "type": "string", - "x-enum-descriptions": [ - "Default value. This value is unused.", - "Url retrieval is successful.", - "Url retrieval is failed due to error.", - "Url retrieval is failed because the content is behind paywall.", - "Url retrieval is failed because the content is unsafe." - ] - }, - "retrievedUrl": { - "description": "Retrieved url by the tool.", + "name": { + "description": "Output only. Identifier. The token itself.", + "readOnly": true, "type": "string" - } - } - }, - "FileSearch": { - "properties": { - "fileSearchStoreNames": { - "items": { - "type": "string" - }, - "description": "Required. The names of the file_search_stores to retrieve from. Example: `fileSearchStores/my-file-search-store-123`", - "type": "array" - }, - "metadataFilter": { - "type": "string", - "description": "Optional. Metadata filter to apply to the semantic retrieval documents and chunks." }, - "topK": { - "description": "Optional. The number of semantic retrieval chunks to retrieve.", - "type": "integer", - "format": "int32" - } - }, - "description": "The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API.", - "type": "object" - }, - "ImageSearch": { - "properties": {}, - "description": "Image search for grounding and related configurations.", - "type": "object" - }, - "Corpus": { - "properties": { - "createTime": { - "description": "Output only. The Timestamp of when the `Corpus` was created.", - "readOnly": true, + "newSessionExpireTime": { + "description": "Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future.", "type": "string", "format": "google-datetime" }, - "name": { - "readOnly": true, + "fieldMask": { + "description": "Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection.", "type": "string", - "description": "Output only. Immutable. Identifier. The `Corpus` resource name. The ID (name excluding the \"corpora/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `corpora/my-awesome-corpora-123a456b789c`" + "format": "google-fieldmask" }, - "updateTime": { - "description": "Output only. The Timestamp of when the `Corpus` was last updated.", - "readOnly": true, + "uses": { + "format": "int32", + "description": "Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1.", + "type": "integer" + }, + "bidiGenerateContentSetup": { + "description": "Optional. Input only. Immutable. Configuration specific to `BidiGenerateContent`.", + "$ref": "#/components/schemas/BidiGenerateContentSetup" + }, + "expireTime": { + "description": "Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future.", "type": "string", "format": "google-datetime" }, - "displayName": { - "description": "Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: \"Docs on Semantic Retriever\"", + "interactionId": { + "description": "Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API.", "type": "string" } }, - "type": "object", - "description": "A `Corpus` is a collection of `Document`s. A project can create up to 10 corpora." - }, - "ResponseFormatConfig": { - "description": "Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality.", - "type": "object", - "properties": { - "audio": { - "description": "Optional. Audio output format configuration.", - "$ref": "#/components/schemas/AudioResponseFormat" - }, - "image": { - "$ref": "#/components/schemas/ImageResponseFormat", - "description": "Optional. Image output format configuration." - }, - "text": { - "description": "Optional. Text output format configuration.", - "$ref": "#/components/schemas/TextResponseFormat" - } - } + "description": "A request to create an ephemeral authentication token.", + "type": "object" }, - "ListModelsResponse": { - "description": "Response from `ListModel` containing a paginated list of Models.", + "ModelStatus": { + "description": "The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable.", "type": "object", "properties": { - "nextPageToken": { - "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages." - }, - "models": { - "description": "The returned Models.", - "type": "array", - "items": { - "$ref": "#/components/schemas/Model" - } - } - } - }, - "ThinkingConfig": { - "properties": { - "includeThoughts": { - "description": "Indicates whether to include thoughts in the response. If true, thoughts are returned only when available.", - "type": "boolean" - }, - "thinkingBudget": { - "type": "integer", - "format": "int32", - "description": "The number of thoughts tokens that the model should generate." - }, - "thinkingLevel": { + "modelStage": { + "enumDeprecated": [ + false, + true, + false, + false, + false, + false, + true, + false + ], "x-enum-descriptions": [ - "Default value.", - "Little to no thinking.", - "Low thinking level.", - "Medium thinking level.", - "High thinking level." + "Unspecified model stage.", + "The underlying model is subject to lots of tunings.", + "Models in this stage are for experimental purposes only.", + "Models in this stage are more mature than experimental models.", + "Models in this stage are considered stable and ready for production use.", + "If the model is on this stage, it means that this model is on the path to deprecation in near future. Only existing customers can use this model.", + "Models in this stage are deprecated. These models cannot be used.", + "Models in this stage are retired. These models cannot be used." ], + "description": "The stage of the underlying model.", "type": "string", - "description": "Optional. Controls the maximum depth of the model's internal reasoning process before it produces a response. The default value is model-dependent. Refer to the [Thinking levels guide](https://ai.google.dev/gemini-api/docs/thinking#thinking-levels) for more details. Recommended for Gemini 3 or later models. Use with earlier models results in an error.", "enum": [ - "THINKING_LEVEL_UNSPECIFIED", - "MINIMAL", - "LOW", - "MEDIUM", - "HIGH" + "MODEL_STAGE_UNSPECIFIED", + "UNSTABLE_EXPERIMENTAL", + "EXPERIMENTAL", + "PREVIEW", + "STABLE", + "LEGACY", + "DEPRECATED", + "RETIRED" ] - } - }, - "type": "object", - "description": "Config for thinking features." - }, - "CitationSource": { - "description": "A citation to a source for a portion of a specific response.", - "type": "object", - "properties": { - "endIndex": { - "type": "integer", - "format": "int32", - "description": "Optional. End of the attributed segment, exclusive." }, - "uri": { - "description": "Optional. URI that is attributed as a source for a portion of the text.", + "message": { + "description": "A message explaining the model status.", "type": "string" }, - "startIndex": { - "type": "integer", - "format": "int32", - "description": "Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes." - }, - "license": { - "description": "Optional. License for the GitHub project that is attributed as a source for segment. License info is required for code citations.", - "type": "string" + "retirementTime": { + "description": "The time at which the model will be retired.", + "type": "string", + "format": "google-datetime" } } }, - "LanguageHints": { - "deprecated": true, + "V1mainMediaResolution": { + "description": "Media resolution for tokenization.", "type": "object", "properties": { - "languageCodes": { - "items": { - "type": "string" - }, - "deprecated": true, - "type": "array", - "description": "Required. BCP-47 language codes." + "level": { + "description": "The tokenization quality used for given media. for Gemini API support .", + "type": "string", + "enum": [ + "MEDIA_RESOLUTION_UNSPECIFIED", + "MEDIA_RESOLUTION_LOW", + "MEDIA_RESOLUTION_MEDIUM", + "MEDIA_RESOLUTION_HIGH", + "MEDIA_RESOLUTION_ULTRA_HIGH" + ], + "x-enum-descriptions": [ + "Media resolution has not been set.", + "Media resolution set to low.", + "Media resolution set to medium.", + "Media resolution set to high.", + "Media resolution set to ultra high." + ] } - }, - "description": "Provides hints to the model about possible languages present in the audio." + } }, - "InlinedEmbedContentResponses": { + "ListCachedContentsResponse": { "properties": { - "inlinedResponses": { + "cachedContents": { "items": { - "$ref": "#/components/schemas/InlinedEmbedContentResponse" + "$ref": "#/components/schemas/CachedContent" }, - "description": "Output only. The responses to the requests in the batch.", - "readOnly": true, + "description": "List of cached contents.", "type": "array" + }, + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.", + "type": "string" } }, - "description": "The responses to the requests in the batch.", + "description": "Response with CachedContents list.", "type": "object" }, - "GenerationConfig": { - "description": "Configuration options for model generation and outputs. Not all parameters are configurable for every model.", + "Candidate": { + "description": "A response candidate generated from the model.", "type": "object", "properties": { - "candidateCount": { - "type": "integer", - "format": "int32", - "description": "Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family)" - }, - "enableEnhancedCivicAnswers": { - "description": "Optional. Enables enhanced civic answers. It may not be available for all models.", - "type": "boolean" + "finishMessage": { + "description": "Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.", + "readOnly": true, + "type": "string" }, - "presencePenalty": { - "description": "Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary.", - "type": "number", - "format": "float" + "groundingAttributions": { + "items": { + "$ref": "#/components/schemas/GroundingAttribution" + }, + "description": "Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.", + "readOnly": true, + "type": "array" }, - "topK": { - "description": "Optional. The maximum number of tokens to consider when sampling. Gemini models use Top-p (nucleus) sampling or a combination of Top-k and nucleus sampling. Top-k sampling considers the set of `top_k` most probable tokens. Models running with nucleus sampling don't allow top_k setting. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests.", + "index": { + "description": "Output only. Index of the candidate in the list of response candidates.", + "readOnly": true, "type": "integer", "format": "int32" }, - "audioTranscriptionConfig": { - "$ref": "#/components/schemas/AudioTranscriptionConfig", - "description": "Optional. Config for audio transcription (speech recognition)." - }, - "enableAffectiveDialog": { - "type": "boolean", - "description": "Optional. If enabled, the model will detect emotions and adapt its responses accordingly." + "groundingMetadata": { + "$ref": "#/components/schemas/GroundingMetadata", + "description": "Output only. Grounding metadata for the candidate. This field is populated for `GenerateContent` calls.", + "readOnly": true }, - "responseFormat": { - "description": "Optional. Configuration for the response output format. Allows specifying output configuration per modality (text, audio, image) in a flat structure.", - "$ref": "#/components/schemas/ResponseFormatConfig" + "urlContextMetadata": { + "$ref": "#/components/schemas/UrlContextMetadata", + "description": "Output only. Metadata related to url context retrieval tool.", + "readOnly": true }, - "responseModalities": { - "type": "array", - "description": "Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text.", - "items": { - "x-enum-descriptions": [ - "Default value.", - "Indicates the model should return text.", - "Indicates the model should return images.", - "Indicates the model should return audio.", - "Indicates the model should return video." - ], - "enum": [ - "MODALITY_UNSPECIFIED", - "TEXT", - "IMAGE", - "AUDIO", - "VIDEO" - ], - "type": "string" - } + "logprobsResult": { + "$ref": "#/components/schemas/LogprobsResult", + "description": "Output only. Log-likelihood scores for the response tokens and top tokens", + "readOnly": true }, - "temperature": { - "description": "Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0].", - "type": "number", - "format": "float" + "finishReason": { + "readOnly": true, + "description": "Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.", + "type": "string", + "enum": [ + "FINISH_REASON_UNSPECIFIED", + "STOP", + "MAX_TOKENS", + "SAFETY", + "RECITATION", + "LANGUAGE", + "OTHER", + "BLOCKLIST", + "PROHIBITED_CONTENT", + "SPII", + "MALFORMED_FUNCTION_CALL", + "IMAGE_SAFETY", + "IMAGE_PROHIBITED_CONTENT", + "IMAGE_OTHER", + "NO_IMAGE", + "IMAGE_RECITATION", + "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", + "MISSING_THOUGHT_SIGNATURE", + "MALFORMED_RESPONSE", + "ESCALATION" + ], + "x-enum-descriptions": [ + "Default value. This value is unused.", + "Natural stop point of the model or provided stop sequence.", + "The maximum number of tokens as specified in the request was reached.", + "The response candidate content was flagged for safety reasons.", + "The response candidate content was flagged for recitation reasons.", + "The response candidate content was flagged for using an unsupported language.", + "Unknown reason.", + "Token generation stopped because the content contains forbidden terms.", + "Token generation stopped for potentially containing prohibited content.", + "Token generation stopped because the content potentially contains Sensitive Personally Identifiable Information (SPII).", + "The function call generated by the model is invalid.", + "Token generation stopped because generated images contain safety violations.", + "Image generation stopped because generated images has other prohibited content.", + "Image generation stopped because of other miscellaneous issue.", + "The model was expected to generate an image, but none was generated.", + "Image generation stopped due to recitation.", + "Model generated a tool call but no tools were enabled in the request.", + "Model called too many tools consecutively, thus the system exited execution.", + "Request has at least one thought signature missing.", + "Finished due to malformed response.", + "Request was filtered by an escalation rule." + ] }, - "stopSequences": { - "type": "array", - "description": "Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response.", + "safetyRatings": { "items": { - "type": "string" - } + "$ref": "#/components/schemas/SafetyRating" + }, + "description": "List of ratings for the safety of a response candidate. There is at most one rating per category.", + "type": "array" }, - "logprobs": { - "type": "integer", + "citationMetadata": { + "description": "Output only. Citation information for model-generated candidate. This field may be populated with recitation information for any text included in the `content`. These are passages that are \"recited\" from copyrighted material in the foundational LLM's training data.", + "readOnly": true, + "$ref": "#/components/schemas/CitationMetadata" + }, + "tokenCount": { "format": "int32", - "description": "Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20]." + "description": "Output only. Token count for this candidate.", + "readOnly": true, + "type": "integer" }, - "responseMimeType": { - "type": "string", - "description": "Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types." + "content": { + "description": "Output only. Generated content returned from the model.", + "readOnly": true, + "$ref": "#/components/schemas/Content" }, - "frequencyPenalty": { - "type": "number", - "format": "float", - "description": "Optional. Frequency penalty applied to the next token's logprobs, multiplied by the number of times each token has been seen in the respponse so far. A positive penalty will discourage the use of tokens that have already been used, proportional to the number of times the token has been used: The more a token is used, the more difficult it is for the model to use that token again increasing the vocabulary of responses. Caution: A _negative_ penalty will encourage the model to reuse tokens proportional to the number of times the token has been used. Small negative values will reduce the vocabulary of a response. Larger negative values will cause the model to start repeating a common token until it hits the max_output_tokens limit." - }, - "translationConfig": { - "$ref": "#/components/schemas/TranslationConfig", - "description": "Optional. Config for translation." - }, - "maxOutputTokens": { - "type": "integer", - "format": "int32", - "description": "Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function." - }, - "responseSchema": { - "deprecated": true, - "$ref": "#/components/schemas/Schema", - "description": "Optional. Output schema of the generated candidate text. Schemas must be a subset of the [OpenAPI schema](https://spec.openapis.org/oas/v3.0.3#schema) and can be objects, primitives or arrays. If set, a compatible `response_mime_type` must also be set. Compatible MIME types: `application/json`: Schema for JSON response. Refer to the [JSON text generation guide](https://ai.google.dev/gemini-api/docs/json-mode) for more details." - }, - "topP": { - "description": "Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests.", - "type": "number", - "format": "float" - }, - "speechConfig": { - "$ref": "#/components/schemas/SpeechConfig", - "description": "Optional. The speech generation config." - }, - "responseJsonSchema": { - "description": "Optional. An internal detail. Use `responseJsonSchema` rather than this field." - }, - "thinkingConfig": { - "description": "Optional. Config for thinking features. An error will be returned if this field is set for models that don't support thinking.", - "$ref": "#/components/schemas/ThinkingConfig" - }, - "seed": { - "description": "Optional. Seed used in decoding. If not set, the request uses a randomly generated seed.", - "type": "integer", - "format": "int32" - }, - "mediaResolution": { - "description": "Optional. If specified, the media resolution specified will be used.", - "enum": [ - "MEDIA_RESOLUTION_UNSPECIFIED", - "MEDIA_RESOLUTION_LOW", - "MEDIA_RESOLUTION_MEDIUM", - "MEDIA_RESOLUTION_HIGH" - ], - "type": "string", - "x-enum-descriptions": [ - "Media resolution has not been set.", - "Media resolution set to low (64 tokens).", - "Media resolution set to medium (256 tokens).", - "Media resolution set to high (zoomed reframing with 256 tokens)." - ] - }, - "responseLogprobs": { - "type": "boolean", - "description": "Optional. If true, export the logprobs results in response." - }, - "imageConfig": { - "$ref": "#/components/schemas/ImageConfig", - "description": "Optional. Config for image generation. An error will be returned if this field is set for models that don't support these config options." - } - } - }, - "TuningExample": { - "type": "object", - "description": "A single example for tuning.", - "properties": { - "textInput": { - "description": "Optional. Text model input.", - "type": "string" - }, - "output": { - "description": "Required. The expected model output.", - "type": "string" - } - } - }, - "LogprobsResultCandidate": { - "type": "object", - "description": "Candidate for the logprobs token and score.", - "properties": { - "token": { - "description": "The candidate\u2019s token string value.", - "type": "string" - }, - "tokenId": { - "description": "The candidate\u2019s token id value.", - "type": "integer", - "format": "int32" - }, - "logProbability": { - "type": "number", - "format": "float", - "description": "The candidate's log probability." - } - } - }, - "RetrievalMetadata": { - "properties": { - "googleSearchDynamicRetrievalScore": { - "description": "Optional. Score indicating how likely information from google search could help answer the prompt. The score is in the range [0, 1], where 0 is the least likely and 1 is the most likely. This score is only populated when google search grounding and dynamic retrieval is enabled. It will be compared to the threshold to determine whether to trigger google search.", - "type": "number", - "format": "float" - } - }, - "description": "Metadata related to retrieval in the grounding flow.", - "type": "object" - }, - "StringList": { - "type": "object", - "description": "User provided string values assigned to a single metadata key.", - "properties": { - "values": { - "description": "The string values of the metadata to store.", - "type": "array", - "items": { - "type": "string" - } + "avgLogprobs": { + "format": "double", + "description": "Output only. Average log probability score of the candidate.", + "readOnly": true, + "type": "number" } } }, - "RealtimeInputConfig": { - "properties": { - "turnCoverage": { - "x-enum-descriptions": [ - "If unspecified, a default behavior is selected based on the model. E.g., for Gemini 2.5, the default is `TURN_INCLUDES_ONLY_ACTIVITY`, while for Gemini 3.1 and onwards, it's `TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO`.", - "Includes activity since the last turn, excluding inactivity (e.g. silence on the audio stream).", - "Includes all realtime input since the last turn, including inactivity (e.g. silence on the audio stream).", - "Includes audio activity and all video since the last turn. With automatic activity detection, audio activity means speech and excludes silence." - ], - "description": "Optional. Defines which input is included in the user's turn.", - "enum": [ - "TURN_COVERAGE_UNSPECIFIED", - "TURN_INCLUDES_ONLY_ACTIVITY", - "TURN_INCLUDES_ALL_INPUT", - "TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO" - ], - "type": "string" - }, - "activityHandling": { - "type": "string", - "description": "Optional. Defines what effect activity has.", - "enum": [ - "ACTIVITY_HANDLING_UNSPECIFIED", - "START_OF_ACTIVITY_INTERRUPTS", - "NO_INTERRUPTION" - ], - "x-enum-descriptions": [ - "If unspecified, the default behavior is `START_OF_ACTIVITY_INTERRUPTS`.", - "If true, start of activity will interrupt the model's response (also called \"barge in\"). The model's current response will be cut-off in the moment of the interruption. This is the default behavior.", - "The model's response will not be interrupted." - ] - }, - "automaticActivityDetection": { - "description": "Optional. If not set, automatic activity detection is enabled by default. If automatic voice detection is disabled, the client must send activity signals.", - "$ref": "#/components/schemas/AutomaticActivityDetection" - } - }, - "description": "Configures the realtime input behavior in `BidiGenerateContent`.", - "type": "object" - }, "SafetyRating": { - "type": "object", "description": "Safety rating for a piece of content. The safety rating contains the category of harm and the harm probability level in that category for a piece of content. Content is classified for safety across a number of harm categories and the probability of the harm classification is included here.", + "type": "object", "properties": { "category": { - "type": "string", - "enumDeprecated": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ], "description": "Required. The category for this rating.", + "type": "string", "enum": [ "HARM_CATEGORY_UNSPECIFIED", "HARM_CATEGORY_DEROGATORY", @@ -3298,8 +3088,27 @@ "**Gemini** - Dangerous content.", "**Gemini** - Content that may be used to harm civic integrity. DEPRECATED: use enable_enhanced_civic_answers instead.", "**Gemini** - Prompts attempting to bypass or subvert the model's safety guidelines (jailbreak attempts)." + ], + "enumDeprecated": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false ] }, + "blocked": { + "description": "Was this content blocked because of this rating?", + "type": "boolean" + }, "probability": { "x-enum-descriptions": [ "Probability is unspecified.", @@ -3309,1587 +3118,1193 @@ "Content has a high chance of being unsafe." ], "description": "Required. The probability of harm for this content.", + "type": "string", "enum": [ "HARM_PROBABILITY_UNSPECIFIED", "NEGLIGIBLE", "LOW", "MEDIUM", "HIGH" - ], - "type": "string" - }, - "blocked": { - "description": "Was this content blocked because of this rating?", - "type": "boolean" + ] } } }, - "AutomaticActivityDetection": { - "description": "Configures automatic detection of activity.", - "type": "object", + "Schema": { "properties": { - "startOfSpeechSensitivity": { - "x-enum-descriptions": [ - "The default is START_SENSITIVITY_HIGH.", - "Automatic detection will detect the start of speech more often.", - "Automatic detection will detect the start of speech less often." - ], - "description": "Optional. Determines how likely speech is to be detected.", - "enum": [ - "START_SENSITIVITY_UNSPECIFIED", - "START_SENSITIVITY_HIGH", - "START_SENSITIVITY_LOW" - ], + "pattern": { + "description": "Optional. Pattern of the Type.STRING to restrict a string to a regular expression.", "type": "string" }, - "silenceDurationMs": { - "type": "integer", - "format": "int32", - "description": "Optional. The required duration of detected non-speech (e.g. silence) before end-of-speech is committed. The larger this value, the longer speech gaps can be without interrupting the user's activity but this will increase the model's latency." - }, - "disabled": { - "description": "Optional. If enabled (the default), detected voice and text input count as activity. If disabled, the client must send activity signals.", - "type": "boolean" - }, - "endOfSpeechSensitivity": { + "type": { + "x-enum-descriptions": [ + "Not specified, should not be used.", + "String type.", + "Number type.", + "Integer type.", + "Boolean type.", + "Array type.", + "Object type.", + "Null type." + ], + "description": "Required. Data type.", "type": "string", - "description": "Optional. Determines how likely detected speech is ended.", "enum": [ - "END_SENSITIVITY_UNSPECIFIED", - "END_SENSITIVITY_HIGH", - "END_SENSITIVITY_LOW" - ], - "x-enum-descriptions": [ - "The default is END_SENSITIVITY_HIGH.", - "Automatic detection ends speech more often.", - "Automatic detection ends speech less often." + "TYPE_UNSPECIFIED", + "STRING", + "NUMBER", + "INTEGER", + "BOOLEAN", + "ARRAY", + "OBJECT", + "NULL" ] }, - "prefixPaddingMs": { - "description": "Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives.", - "type": "integer", - "format": "int32" - } - } - }, - "GenerateContentRequest": { - "description": "Request to generate a completion from the model.", - "type": "object", - "properties": { - "systemInstruction": { - "$ref": "#/components/schemas/Content", - "description": "Optional. Developer set [system instruction(s)](https://ai.google.dev/gemini-api/docs/system-instructions). Currently, text only." + "items": { + "description": "Optional. Schema of the elements of Type.ARRAY.", + "$ref": "#/components/schemas/Schema" }, - "serviceTier": { - "x-enum-descriptions": [ - "Default service tier, which is standard.", - "Standard service tier.", - "Flex service tier.", - "Priority service tier." - ], - "description": "Optional. The service tier of the request.", - "enum": [ - "unspecified", - "standard", - "flex", - "priority" - ], + "required": { + "description": "Optional. Required properties of Type.OBJECT.", + "type": "array", + "items": { + "type": "string" + } + }, + "maxLength": { + "format": "int64", + "description": "Optional. Maximum length of the Type.STRING", "type": "string" }, - "safetySettings": { - "items": { - "$ref": "#/components/schemas/SafetySetting" - }, - "type": "array", - "description": "Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications." + "minProperties": { + "format": "int64", + "description": "Optional. Minimum number of the properties for Type.OBJECT.", + "type": "string" }, - "model": { + "maximum": { + "description": "Optional. Maximum value of the Type.INTEGER and Type.NUMBER", + "type": "number", + "format": "double" + }, + "minItems": { + "description": "Optional. Minimum number of the elements for Type.ARRAY.", "type": "string", - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`." + "format": "int64" }, - "cachedContent": { - "description": "Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}`", + "properties": { + "description": "Optional. Properties of Type.OBJECT.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/Schema" + } + }, + "description": { + "description": "Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown.", "type": "string" }, - "contents": { - "items": { - "$ref": "#/components/schemas/Content" - }, + "enum": { + "description": "Optional. Possible values of the element of Type.STRING with enum format. For example we can define an Enum Direction as : {type:STRING, format:enum, enum:[\"EAST\", NORTH\", \"SOUTH\", \"WEST\"]}", "type": "array", - "description": "Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request." + "items": { + "type": "string" + } }, - "generationConfig": { - "$ref": "#/components/schemas/GenerationConfig", - "description": "Optional. Configuration options for model generation and outputs." + "maxProperties": { + "format": "int64", + "description": "Optional. Maximum number of the properties for Type.OBJECT.", + "type": "string" }, - "tools": { - "items": { - "$ref": "#/components/schemas/Tool" - }, - "type": "array", - "description": "Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more." + "nullable": { + "description": "Optional. Indicates if the value may be null.", + "type": "boolean" }, - "toolConfig": { - "$ref": "#/components/schemas/ToolConfig", - "description": "Optional. Tool configuration for any `Tool` specified in the request. Refer to the [Function calling guide](https://ai.google.dev/gemini-api/docs/function-calling#function_calling_mode) for a usage example." + "title": { + "description": "Optional. The title of the schema.", + "type": "string" }, - "store": { - "type": "boolean", - "description": "Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config." - } - } - }, - "SlidingWindow": { - "properties": { - "targetTokens": { - "description": "The target number of tokens to keep. The default value is trigger_tokens/2. Discarding parts of the context window causes a temporary latency increase so this value should be calibrated to avoid frequent compression operations.", - "type": "string", - "format": "int64" - } - }, - "description": "The SlidingWindow method operates by discarding content at the beginning of the context window. The resulting context will always begin at the start of a USER role turn. System instructions and any `BidiGenerateContentSetup.prefix_turns` will always remain at the beginning of the result.", - "type": "object" - }, - "ToolResponse": { - "properties": { - "response": { - "description": "Optional. The tool response.", - "type": "object", - "additionalProperties": { - "description": "Properties of the object." + "example": { + "description": "Optional. Example of the object. Will only populated when the object is the root." + }, + "propertyOrdering": { + "description": "Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response.", + "type": "array", + "items": { + "type": "string" } }, - "id": { - "description": "Optional. The identifier of the tool call this response is for.", + "format": { + "description": "Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality.", "type": "string" }, - "toolType": { - "description": "Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`.", - "enum": [ - "TOOL_TYPE_UNSPECIFIED", - "GOOGLE_SEARCH_WEB", - "GOOGLE_SEARCH_IMAGE", - "URL_CONTEXT", - "GOOGLE_MAPS", - "FILE_SEARCH" - ], - "type": "string", - "x-enum-descriptions": [ - "Unspecified tool type.", - "Google search tool, maps to Tool.google_search.search_types.web_search.", - "Image search tool, maps to Tool.google_search.search_types.image_search.", - "URL context tool, maps to Tool.url_context.", - "Google maps tool, maps to Tool.google_maps.", - "File search tool, maps to Tool.file_search." - ] - } - }, - "description": "The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`.", - "type": "object" - }, - "ToolCall": { - "properties": { - "args": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object." + "anyOf": { + "items": { + "$ref": "#/components/schemas/Schema" }, - "description": "Optional. The tool call arguments. Example: {\"arg1\" : \"value1\", \"arg2\" : \"value2\" , ...}" + "description": "Optional. The value should be validated against any (one or more) of the subschemas in the list.", + "type": "array" }, - "id": { - "description": "Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`.", + "minimum": { + "description": "Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER", + "type": "number", + "format": "double" + }, + "maxItems": { + "format": "int64", + "description": "Optional. Maximum number of the elements for Type.ARRAY.", "type": "string" }, - "toolName": { - "description": "Optional. The name of the tool that was called.", + "minLength": { + "format": "int64", + "description": "Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING", "type": "string" }, - "toolType": { - "type": "string", - "description": "Required. The type of tool that was called.", - "enum": [ - "TOOL_TYPE_UNSPECIFIED", - "GOOGLE_SEARCH_WEB", - "GOOGLE_SEARCH_IMAGE", - "URL_CONTEXT", - "GOOGLE_MAPS", - "FILE_SEARCH" - ], - "x-enum-descriptions": [ - "Unspecified tool type.", - "Google search tool, maps to Tool.google_search.search_types.web_search.", - "Image search tool, maps to Tool.google_search.search_types.image_search.", - "URL context tool, maps to Tool.url_context.", - "Google maps tool, maps to Tool.google_maps.", - "File search tool, maps to Tool.file_search." - ] + "default": { + "description": "Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors." } }, - "description": "A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`.", + "description": "The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema).", "type": "object" }, - "VideoMetadata": { + "BidiGenerateContentSetup": { + "description": "Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages.", + "type": "object", "properties": { - "startOffset": { - "type": "string", - "format": "google-duration", - "description": "Optional. The start offset of the video." + "systemInstruction": { + "description": "Optional. The user provided system instructions for the model. Note: Only text should be used in parts and content in each part will be in a separate paragraph.", + "$ref": "#/components/schemas/Content" }, - "fps": { - "type": "number", - "format": "double", - "description": "Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]." + "outputAudioTranscription": { + "description": "Optional. If set, enables transcription of the model's audio output. The transcription aligns with the language code specified for the output audio, if configured.", + "$ref": "#/components/schemas/AudioTranscriptionConfig" }, - "endOffset": { - "type": "string", - "format": "google-duration", - "description": "Optional. The end offset of the video." - } - }, - "description": "Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content.", - "deprecated": true, - "type": "object" - }, - "FunctionCall": { - "properties": { - "name": { - "type": "string", - "description": "Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128." + "contextWindowCompression": { + "description": "Optional. Configures a context window compression mechanism. If included, the server will automatically reduce the size of the context when it exceeds the configured length.", + "$ref": "#/components/schemas/ContextWindowCompressionConfig" }, - "args": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Optional. The function parameters and values in JSON object format." + "model": { + "description": "Required. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`", + "type": "string" }, - "id": { - "type": "string", - "description": "Optional. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`." - } - }, - "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values.", - "type": "object" - }, - "BatchEmbedContentsResponse": { - "properties": { - "embeddings": { + "tools": { "items": { - "$ref": "#/components/schemas/ContentEmbedding" + "$ref": "#/components/schemas/Tool" }, - "readOnly": true, - "type": "array", - "description": "Output only. The embeddings for each request, in the same order as provided in the batch request." + "description": "Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model.", + "type": "array" }, - "usageMetadata": { - "description": "Output only. The usage metadata for the request.", - "readOnly": true, - "$ref": "#/components/schemas/EmbeddingUsageMetadata" - } - }, - "description": "The response to a `BatchEmbedContentsRequest`.", - "type": "object" - }, - "WhiteSpaceConfig": { - "type": "object", - "description": "Configuration for a white space chunking algorithm [white space delimited].", - "properties": { - "maxTokensPerChunk": { - "type": "integer", - "format": "int32", - "description": "Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow." + "historyConfig": { + "description": "Optional. Configures the exchange of history between the client and the server.", + "$ref": "#/components/schemas/HistoryConfig" }, - "maxOverlapTokens": { - "type": "integer", - "format": "int32", - "description": "Maximum number of overlapping tokens between two adjacent chunks." + "sessionResumption": { + "description": "Optional. Configures session resumption mechanism. If included, the server will send `SessionResumptionUpdate` messages.", + "$ref": "#/components/schemas/SessionResumptionConfig" + }, + "inputAudioTranscription": { + "description": "Optional. If set, enables transcription of voice input. The transcription aligns with the input audio language, if configured.", + "$ref": "#/components/schemas/AudioTranscriptionConfig" + }, + "generationConfig": { + "description": "Optional. Generation config. The following fields are not supported: - `response_logprobs` - `response_mime_type` - `logprobs` - `response_schema` - `response_json_schema` - `stop_sequence` - `skip_response_cache` - `routing_config` - `audio_timestamp`", + "$ref": "#/components/schemas/GenerationConfig" + }, + "realtimeInputConfig": { + "description": "Optional. Configures the handling of realtime input.", + "$ref": "#/components/schemas/RealtimeInputConfig" } } }, - "InlinedRequests": { + "SpeakerVoiceConfig": { + "description": "The configuration for a single speaker in a multi speaker setup.", + "type": "object", "properties": { - "requests": { - "items": { - "$ref": "#/components/schemas/InlinedRequest" - }, - "type": "array", - "description": "Required. The requests to be processed in the batch." + "voiceConfig": { + "description": "Required. The configuration for the voice to use.", + "$ref": "#/components/schemas/VoiceConfig" + }, + "speaker": { + "description": "Required. The name of the speaker to use. Should be the same as in the prompt.", + "type": "string" } - }, + } + }, + "CodeExecution": { + "description": "Tool that executes code generated by the model, and automatically returns the result to the model. See also `ExecutableCode` and `CodeExecutionResult` which are only generated when using this tool.", "type": "object", - "description": "The requests to be processed in the batch if provided as part of the batch creation request." + "properties": {} }, - "CachedContent": { - "description": "Content that has been preprocessed and can be used in subsequent request to GenerativeService. Cached content can be only used with model it was created for.", + "ListCorporaResponse": { + "description": "Response from `ListCorpora` containing a paginated list of `Corpora`. The results are sorted by ascending `corpus.create_time`.", "type": "object", "properties": { - "systemInstruction": { - "$ref": "#/components/schemas/Content", - "description": "Optional. Input only. Immutable. Developer set system instruction. Currently text only." - }, - "createTime": { - "description": "Output only. Creation time of the cache entry.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "name": { - "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", - "readOnly": true, - "type": "string" - }, - "model": { - "description": "Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}`", - "type": "string" - }, - "usageMetadata": { - "readOnly": true, - "$ref": "#/components/schemas/CachedContentUsageMetadata", - "description": "Output only. Metadata on the usage of the cached content." - }, - "contents": { - "description": "Optional. Input only. Immutable. The content to cache.", - "type": "array", - "items": { - "$ref": "#/components/schemas/Content" - } - }, - "ttl": { - "type": "string", - "format": "google-duration", - "description": "Input only. New TTL for this resource, input only." - }, - "expireTime": { - "type": "string", - "format": "google-datetime", - "description": "Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input." - }, - "updateTime": { - "description": "Output only. When the cache entry was last updated in UTC time.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "tools": { - "description": "Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response", + "corpora": { + "description": "The returned corpora.", "type": "array", "items": { - "$ref": "#/components/schemas/Tool" + "$ref": "#/components/schemas/Corpus" } }, - "toolConfig": { - "description": "Optional. Input only. Immutable. Tool config. This config is shared for all tools.", - "$ref": "#/components/schemas/ToolConfig" - }, - "displayName": { - "type": "string", - "description": "Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters." + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "type": "string" } } }, - "Hyperparameters": { + "ListEnvironmentsResponse": { + "description": "Response for `ListEnvironments`.", + "type": "object", "properties": { - "learningRateMultiplier": { - "type": "number", - "format": "float", - "description": "Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used." - }, - "learningRate": { - "description": "Optional. Immutable. The learning rate hyperparameter for tuning. If not set, a default of 0.001 or 0.0002 will be calculated based on the number of training examples.", - "type": "number", - "format": "float" - }, - "epochCount": { - "type": "integer", - "format": "int32", - "description": "Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used." + "nextPageToken": { + "description": "Pagination token.", + "type": "string" }, - "batchSize": { - "type": "integer", - "format": "int32", - "description": "Immutable. 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." - } - }, - "description": "Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance", - "type": "object" - }, - "ListCorporaResponse": { - "properties": { - "corpora": { + "environments": { + "description": "Environments belonging to the provided project.", "type": "array", - "description": "The returned corpora.", "items": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/Environment" } - }, - "nextPageToken": { - "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages." } - }, - "description": "Response from `ListCorpora` containing a paginated list of `Corpora`. The results are sorted by ascending `corpus.create_time`.", - "type": "object" + } }, - "V1mainMediaResolution": { + "ThinkingConfig": { "properties": { - "level": { + "thinkingBudget": { + "description": "The number of thoughts tokens that the model should generate.", + "type": "integer", + "format": "int32" + }, + "thinkingLevel": { + "description": "Optional. Controls the maximum depth of the model's internal reasoning process before it produces a response. The default value is model-dependent. Refer to the [Thinking levels guide](https://ai.google.dev/gemini-api/docs/thinking#thinking-levels) for more details. Recommended for Gemini 3 or later models. Use with earlier models results in an error.", "type": "string", - "description": "The tokenization quality used for given media. for Gemini API support .", "enum": [ - "MEDIA_RESOLUTION_UNSPECIFIED", - "MEDIA_RESOLUTION_LOW", - "MEDIA_RESOLUTION_MEDIUM", - "MEDIA_RESOLUTION_HIGH", - "MEDIA_RESOLUTION_ULTRA_HIGH" + "THINKING_LEVEL_UNSPECIFIED", + "MINIMAL", + "LOW", + "MEDIUM", + "HIGH" ], "x-enum-descriptions": [ - "Media resolution has not been set.", - "Media resolution set to low.", - "Media resolution set to medium.", - "Media resolution set to high.", - "Media resolution set to ultra high." + "Default value.", + "Little to no thinking.", + "Low thinking level.", + "Medium thinking level.", + "High thinking level." ] + }, + "includeThoughts": { + "description": "Indicates whether to include thoughts in the response. If true, thoughts are returned only when available.", + "type": "boolean" } }, - "description": "Media resolution for tokenization.", + "description": "Config for thinking features.", "type": "object" }, - "CodeExecution": { - "description": "Tool that executes code generated by the model, and automatically returns the result to the model. See also `ExecutableCode` and `CodeExecutionResult` which are only generated when using this tool.", - "type": "object", - "properties": {} - }, - "GenerateContentBatchOutput": { - "description": "The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field.", + "BatchEmbedContentsResponse": { + "description": "The response to a `BatchEmbedContentsRequest`.", "type": "object", "properties": { - "responsesFile": { + "usageMetadata": { + "description": "Output only. The usage metadata for the request.", "readOnly": true, - "type": "string", - "description": "Output only. The file ID of the file containing the responses. The file will be a JSONL file with a single response per line. The responses will be `GenerateContentResponse` messages formatted as JSON. The responses will be written in the same order as the input requests." + "$ref": "#/components/schemas/EmbeddingUsageMetadata" }, - "inlinedResponses": { - "description": "Output only. The responses to the requests in the batch. Returned when the batch was built using inlined requests. The responses will be in the same order as the input requests.", + "embeddings": { + "items": { + "$ref": "#/components/schemas/ContentEmbedding" + }, + "description": "Output only. The embeddings for each request, in the same order as provided in the batch request.", "readOnly": true, - "$ref": "#/components/schemas/InlinedResponses" + "type": "array" } } }, - "AttributionSourceId": { + "GenerateContentResponse": { + "description": "Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`.", "type": "object", - "description": "Identifier for the source contributing to this attribution.", "properties": { - "groundingPassage": { - "description": "Identifier for an inline passage.", - "$ref": "#/components/schemas/GroundingPassageId" + "candidates": { + "items": { + "$ref": "#/components/schemas/Candidate" + }, + "description": "Candidate responses from the model.", + "type": "array" }, - "semanticRetrieverChunk": { - "$ref": "#/components/schemas/SemanticRetrieverChunk", - "description": "Identifier for a `Chunk` fetched via Semantic Retriever." - } - } - }, - "GroundingChunk": { - "properties": { - "image": { - "$ref": "#/components/schemas/Image", - "description": "Optional. Grounding chunk from image search." + "modelVersion": { + "description": "Output only. The model version used to generate the response.", + "readOnly": true, + "type": "string" }, - "web": { - "description": "Grounding chunk from the web.", - "$ref": "#/components/schemas/Web" + "modelStatus": { + "description": "Output only. The current model status of this model.", + "readOnly": true, + "$ref": "#/components/schemas/ModelStatus" }, - "retrievedContext": { - "description": "Optional. Grounding chunk from context retrieved by the file search tool.", - "$ref": "#/components/schemas/RetrievedContext" + "usageMetadata": { + "description": "Output only. Metadata on the generation requests' token usage.", + "readOnly": true, + "$ref": "#/components/schemas/UsageMetadata" }, - "maps": { - "$ref": "#/components/schemas/Maps", - "description": "Optional. Grounding chunk from Google Maps." + "responseId": { + "description": "Output only. response_id is used to identify each response.", + "readOnly": true, + "type": "string" + }, + "promptFeedback": { + "description": "Returns the prompt's feedback related to the content filters.", + "$ref": "#/components/schemas/PromptFeedback" } - }, - "type": "object", - "description": "A `GroundingChunk` represents a segment of supporting evidence that grounds the model's response. It can be a chunk from the web, a retrieved context from a file, or information from Google Maps." + } }, - "SpeechConfig": { + "FunctionResponse": { "properties": { - "languageCode": { - "description": "Optional. The IETF [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language code that the user configured the app to use. Used for speech recognition and synthesis. Valid values are: `de-DE`, `en-AU`, `en-GB`, `en-IN`, `en-US`, `es-US`, `fr-FR`, `hi-IN`, `pt-BR`, `ar-XA`, `es-ES`, `fr-CA`, `id-ID`, `it-IT`, `ja-JP`, `tr-TR`, `vi-VN`, `bn-IN`, `gu-IN`, `kn-IN`, `ml-IN`, `mr-IN`, `ta-IN`, `te-IN`, `nl-NL`, `ko-KR`, `cmn-CN`, `pl-PL`, `ru-RU`, and `th-TH`.", - "type": "string" + "willContinue": { + "description": "Optional. Signals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty `response` with `will_continue=False` to signal that the function call is finished. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`.", + "type": "boolean" }, - "voiceConfig": { - "$ref": "#/components/schemas/VoiceConfig", - "description": "The configuration in case of single-voice output." + "name": { + "description": "Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128.", + "type": "string" }, - "multiSpeakerVoiceConfig": { - "$ref": "#/components/schemas/MultiSpeakerVoiceConfig", - "description": "Optional. The configuration for the multi-speaker setup. It is mutually exclusive with the voice_config field." + "scheduling": { + "description": "Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.", + "type": "string", + "enum": [ + "SCHEDULING_UNSPECIFIED", + "SILENT", + "WHEN_IDLE", + "INTERRUPT" + ], + "x-enum-descriptions": [ + "This value is unused.", + "Only add the result to the conversation context, do not interrupt or trigger generation.", + "Add the result to the conversation context, and prompt to generate output without interrupting ongoing generation.", + "Add the result to the conversation context, interrupt ongoing generation and prompt to generate output." + ] + }, + "parts": { + "items": { + "$ref": "#/components/schemas/FunctionResponsePart" + }, + "description": "Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.", + "type": "array" + }, + "id": { + "description": "Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`.", + "type": "string" + }, + "response": { + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Required. The function response in JSON object format. Callers can use any keys of their choice that fit the function's syntax to return the function output, e.g. \"output\", \"result\", etc. In particular, if the function call failed to execute, the response can have an \"error\" key to return error details to the model. Multimedia can be included by using a subobject containing a single \"$ref\" key whose value is the `inline_data.display_name` of a `FunctionResponsePart` holding the multimedia. See https://ai.google.dev/gemini-api/docs/function-calling#multimodal.", + "type": "object" } }, - "description": "Config for speech generation and transcription.", + "description": "The result output from a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model. This should contain the result of a`FunctionCall` made based on model prediction.", "type": "object" }, - "InlinedRequest": { - "description": "The request to be processed in the batch.", - "type": "object", + "ListTunedModelsResponse": { "properties": { - "request": { - "$ref": "#/components/schemas/GenerateContentRequest", - "description": "Required. The request to be processed in the batch." + "tunedModels": { + "items": { + "$ref": "#/components/schemas/TunedModel" + }, + "description": "The returned Models.", + "type": "array" + }, + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "type": "string" + } + }, + "description": "Response from `ListTunedModels` containing a paginated list of Models.", + "type": "object" + }, + "InlinedEmbedContentResponse": { + "properties": { + "response": { + "$ref": "#/components/schemas/EmbedContentResponse", + "description": "Output only. The response to the request.", + "readOnly": true }, "metadata": { + "description": "Output only. The metadata associated with the request.", + "readOnly": true, "type": "object", "additionalProperties": { "description": "Properties of the object." - }, - "description": "Optional. The metadata to be associated with the request." + } + }, + "error": { + "$ref": "#/components/schemas/Status", + "description": "Output only. The error encountered while processing the request.", + "readOnly": true } - } + }, + "description": "The response to a single request in the batch.", + "type": "object" }, - "Maps": { - "type": "object", - "description": "A grounding chunk from Google Maps. A Maps chunk corresponds to a single place.", + "Empty": { + "properties": {}, + "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }", + "type": "object" + }, + "ImageSearch": { + "properties": {}, + "description": "Image search for grounding and related configurations.", + "type": "object" + }, + "TextResponseFormat": { "properties": { - "text": { - "description": "Text description of the place answer.", - "type": "string" - }, - "placeId": { - "description": "The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place.", - "type": "string" - }, - "title": { - "description": "Title of the place.", - "type": "string" - }, - "placeAnswerSources": { - "$ref": "#/components/schemas/PlaceAnswerSources", - "description": "Sources that provide answers about the features of a given place in Google Maps." + "mimeType": { + "description": "Optional. The MIME type of the text output.", + "type": "string", + "enum": [ + "MIME_TYPE_UNSPECIFIED", + "APPLICATION_JSON", + "TEXT_PLAIN" + ], + "x-enum-descriptions": [ + "Default value. This value is unused.", + "JSON output format.", + "Plain text output format." + ] }, - "uri": { - "description": "URI reference of the place.", - "type": "string" + "schema": { + "description": "Optional. The JSON schema that the output should conform to. Only applicable when mime_type is APPLICATION_JSON." } - } + }, + "description": "Configuration for text output format.", + "type": "object" }, - "RetrievedContext": { - "description": "Chunk from context retrieved by the file search tool.", + "RetrievalConfig": { + "description": "Retrieval config.", "type": "object", "properties": { - "title": { - "type": "string", - "description": "Optional. Title of the document." - }, - "uri": { - "description": "Optional. URI reference of the semantic retrieval document.", - "type": "string" - }, - "fileSearchStore": { - "type": "string", - "description": "Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123`" - }, - "pageNumber": { - "description": "Optional. Page number of the retrieved context, if applicable.", - "type": "integer", - "format": "int32" - }, - "customMetadata": { - "items": { - "$ref": "#/components/schemas/GroundingChunkCustomMetadata" - }, - "type": "array", - "description": "Optional. User-provided metadata about the retrieved context." - }, - "mediaId": { - "description": "Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id}", - "type": "string" + "latLng": { + "description": "Optional. The location of the user.", + "$ref": "#/components/schemas/LatLng" }, - "text": { - "description": "Optional. Text of the chunk.", + "languageCode": { + "description": "Optional. The language code of the user. Language code for content. Use language tags defined by [BCP47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt).", "type": "string" } } }, - "ListFilesResponse": { - "description": "Response for `ListFiles`.", - "type": "object", + "UrlContextMetadata": { "properties": { - "nextPageToken": { - "type": "string", - "description": "A token that can be sent as a `page_token` into a subsequent `ListFiles` call." - }, - "files": { - "items": { - "$ref": "#/components/schemas/File" - }, + "urlMetadata": { + "description": "List of url context.", "type": "array", - "description": "The list of `File`s." + "items": { + "$ref": "#/components/schemas/UrlMetadata" + } } - } + }, + "description": "Metadata related to url context retrieval tool.", + "type": "object" }, - "Model": { + "EmbedContentRequest": { "properties": { - "version": { - "description": "Required. The version number of the model. This represents the major version (`1.0` or `1.5`)", + "title": { + "deprecated": true, + "description": "Optional. Deprecated: Please use EmbedContentConfig.title instead. An optional title for the text. Only applicable when TaskType is `RETRIEVAL_DOCUMENT`. Note: Specifying a `title` for `RETRIEVAL_DOCUMENT` provides better quality embeddings for retrieval.", "type": "string" }, - "outputTokenLimit": { - "description": "Maximum number of output tokens available for this model.", - "type": "integer", - "format": "int32" + "embedContentConfig": { + "description": "Optional. Configuration for the EmbedContent request.", + "$ref": "#/components/schemas/EmbedContentConfig" }, - "displayName": { + "taskType": { + "x-enum-descriptions": [ + "Unset value, which will default to one of the other enum values.", + "Specifies the given text is a query in a search/retrieval setting.", + "Specifies the given text is a document from the corpus being searched.", + "Specifies the given text will be used for STS.", + "Specifies that the given text will be classified.", + "Specifies that the embeddings will be used for clustering.", + "Specifies that the given text will be used for question answering.", + "Specifies that the given text will be used for fact verification.", + "Specifies that the given text will be used for code retrieval." + ], + "description": "Optional. Deprecated: Please use EmbedContentConfig.task_type instead. Optional task type for which the embeddings will be used. Not supported on earlier models (`models/embedding-001`).", "type": "string", - "description": "The human-readable name of the model. E.g. \"Gemini 1.5 Flash\". The name can be up to 128 characters long and can consist of any UTF-8 characters." - }, - "thinking": { - "type": "boolean", - "description": "Whether the model supports thinking." - }, - "temperature": { - "description": "Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model.", - "type": "number", - "format": "float" + "enum": [ + "TASK_TYPE_UNSPECIFIED", + "RETRIEVAL_QUERY", + "RETRIEVAL_DOCUMENT", + "SEMANTIC_SIMILARITY", + "CLASSIFICATION", + "CLUSTERING", + "QUESTION_ANSWERING", + "FACT_VERIFICATION", + "CODE_RETRIEVAL_QUERY" + ], + "deprecated": true }, - "name": { - "description": "Required. The resource name of the `Model`. Refer to [Model variants](https://ai.google.dev/gemini-api/docs/models/gemini#model-variations) for all allowed values. Format: `models/{model}` with a `{model}` naming convention of: * \"{base_model_id}-{version}\" Examples: * `models/gemini-1.5-flash-001`", + "model": { + "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`", "type": "string" }, - "inputTokenLimit": { - "description": "Maximum number of input tokens allowed for this model.", + "outputDimensionality": { + "description": "Optional. Deprecated: Please use EmbedContentConfig.output_dimensionality instead. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. Supported by newer models since 2024 only. You cannot set this value if using the earlier model (`models/embedding-001`).", "type": "integer", + "deprecated": true, "format": "int32" }, - "maxTemperature": { - "type": "number", - "format": "float", - "description": "The maximum temperature this model can use." - }, - "topP": { - "type": "number", - "format": "float", - "description": "For [Nucleus sampling](https://ai.google.dev/gemini-api/docs/prompting-strategies#top-p). Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be used by the backend while making the call to the model." - }, - "description": { - "type": "string", - "description": "A short description of the model." - }, - "baseModelId": { - "type": "string", - "description": "Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash`" - }, - "supportedGenerationMethods": { - "items": { - "type": "string" - }, - "type": "array", - "description": "The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`." - }, - "topK": { - "description": "For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter.", - "type": "integer", - "format": "int32" + "content": { + "description": "Required. The content to embed. Only the `parts.text` fields will be counted.", + "$ref": "#/components/schemas/Content" } }, - "description": "Information about a Generative Language Model.", + "description": "Request containing the `Content` for the model to embed.", "type": "object" }, - "TunedModel": { - "description": "A fine-tuned model created using ModelService.CreateTunedModel.", - "type": "object", + "Corpus": { "properties": { - "baseModel": { - "description": "Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001`", + "displayName": { + "description": "Optional. The human-readable display name for the `Corpus`. The display name must be no more than 512 characters in length, including spaces. Example: \"Docs on Semantic Retriever\"", "type": "string" }, - "state": { - "description": "Output only. The state of the tuned model.", - "enum": [ - "STATE_UNSPECIFIED", - "CREATING", - "ACTIVE", - "FAILED" - ], + "updateTime": { + "format": "google-datetime", + "description": "Output only. The Timestamp of when the `Corpus` was last updated.", "readOnly": true, - "x-enum-descriptions": [ - "The default value. This value is unused.", - "The model is being created.", - "The model is ready to be used.", - "The model failed to be created." - ], - "type": "string" - }, - "topK": { - "description": "Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model.", - "type": "integer", - "format": "int32" - }, - "readerProjectNumbers": { - "items": { - "type": "string", - "format": "int64" - }, - "type": "array", - "description": "Optional. List of project numbers that have read access to the tuned model." - }, - "topP": { - "type": "number", - "format": "float", - "description": "Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model." - }, - "tuningTask": { - "description": "Required. The tuning task that creates the tuned model.", - "$ref": "#/components/schemas/TuningTask" - }, - "tunedModelSource": { - "$ref": "#/components/schemas/TunedModelSource", - "description": "Optional. TunedModel to use as the starting point for training the new model." - }, - "description": { - "description": "Optional. A short description of this model.", "type": "string" }, - "updateTime": { + "name": { + "description": "Output only. Immutable. Identifier. The `Corpus` resource name. The ID (name excluding the \"corpora/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `corpora/my-awesome-corpora-123a456b789c`", "readOnly": true, - "type": "string", - "format": "google-datetime", - "description": "Output only. The timestamp when this model was updated." + "type": "string" }, "createTime": { + "description": "Output only. The Timestamp of when the `Corpus` was created.", "readOnly": true, "type": "string", - "format": "google-datetime", - "description": "Output only. The timestamp when this model was created." - }, - "temperature": { - "type": "number", + "format": "google-datetime" + } + }, + "description": "A `Corpus` is a collection of `Document`s. A project can create up to 10 corpora.", + "type": "object" + }, + "PrebuiltVoiceConfig": { + "properties": { + "voiceName": { + "description": "The name of the preset voice to use.", + "type": "string" + } + }, + "description": "The configuration for the prebuilt speaker to use.", + "type": "object" + }, + "DynamicRetrievalConfig": { + "properties": { + "dynamicThreshold": { "format": "float", - "description": "Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model." + "description": "The threshold to be used in dynamic retrieval. If not set, a system default value is used.", + "type": "number" }, - "name": { - "description": "Output only. The tuned model name. A unique name will be generated on create. Example: `tunedModels/az2mb0bpw6i` If display_name is set on create, the id portion of the name will be set by concatenating the words of the display_name with hyphens and adding a random portion for uniqueness. Example: * display_name = `Sentence Translator` * name = `tunedModels/sentence-translator-u3b7m`", + "mode": { + "description": "The mode of the predictor to be used in dynamic retrieval.", + "type": "string", + "enum": [ + "MODE_UNSPECIFIED", + "MODE_DYNAMIC" + ], + "x-enum-descriptions": [ + "Always trigger retrieval.", + "Run retrieval only when system decides it is necessary." + ] + } + }, + "description": "Describes the options to customize dynamic retrieval.", + "type": "object" + }, + "HistoryConfig": { + "description": "History configuration. This message is included in the session configuration as `BidiGenerateContentSetup.history_config`. Configures the exchange of history messages.", + "type": "object", + "properties": { + "initialHistoryInClientContent": { + "description": "Optional. If true, after sending `setup_complete`, the server will wait and at first process `client_content` messages until `turn_complete` is `true`. This initial history will not trigger a model call and may end with role `MODEL`. After `turn_complete` is `true`, the client can start the realtime conversation via `realtime_input`.", + "type": "boolean" + } + } + }, + "EmbedContentBatchOutput": { + "properties": { + "responsesFile": { + "description": "Output only. The file ID of the file containing the responses. The file will be a JSONL file with a single response per line. The responses will be `EmbedContentResponse` messages formatted as JSON. The responses will be written in the same order as the input requests.", "readOnly": true, "type": "string" }, - "displayName": { - "description": "Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces.", - "type": "string" + "inlinedResponses": { + "$ref": "#/components/schemas/InlinedEmbedContentResponses", + "description": "Output only. The responses to the requests in the batch. Returned when the batch was built using inlined requests. The responses will be in the same order as the input requests.", + "readOnly": true } - } + }, + "description": "The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field.", + "type": "object" }, - "Status": { + "CreateFileRequest": { + "description": "Request for `CreateFile`.", "type": "object", - "description": "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).", "properties": { - "code": { - "description": "The status code, which should be an enum value of google.rpc.Code.", - "type": "integer", - "format": "int32" + "file": { + "description": "Optional. Metadata for the file to create.", + "$ref": "#/components/schemas/File" + } + } + }, + "GoogleSearch": { + "properties": { + "searchTypes": { + "description": "Optional. The set of search types to enable. If not set, web search is enabled by default.", + "$ref": "#/components/schemas/SearchTypes" }, - "message": { - "type": "string", - "description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client." + "timeRangeFilter": { + "description": "Optional. Filter search results to a specific time range. If customers set a start time, they must set an end time (and vice versa).", + "$ref": "#/components/schemas/Interval" + } + }, + "description": "GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", + "type": "object" + }, + "ContextWindowCompressionConfig": { + "properties": { + "slidingWindow": { + "description": "A sliding-window mechanism.", + "$ref": "#/components/schemas/SlidingWindow" }, - "details": { + "triggerTokens": { + "format": "int64", + "description": "The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response.", + "type": "string" + } + }, + "description": "Enables context window compression \u2014 a mechanism for managing the model's context window so that it does not exceed a given length.", + "type": "object" + }, + "FileSearch": { + "description": "The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API.", + "type": "object", + "properties": { + "fileSearchStoreNames": { "items": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." - } + "type": "string" }, - "type": "array", - "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use." + "description": "Required. The names of the file_search_stores to retrieve from. Example: `fileSearchStores/my-file-search-store-123`", + "type": "array" + }, + "metadataFilter": { + "description": "Optional. Metadata filter to apply to the semantic retrieval documents and chunks.", + "type": "string" + }, + "topK": { + "description": "Optional. The number of semantic retrieval chunks to retrieve.", + "type": "integer", + "format": "int32" } } }, - "GroundingChunkStringList": { + "BatchGenerateContentRequest": { + "properties": { + "batch": { + "description": "Required. The batch to create.", + "$ref": "#/components/schemas/GenerateContentBatch" + } + }, + "description": "Request for a `BatchGenerateContent` operation.", + "type": "object" + }, + "SpeechConfig": { + "description": "Config for speech generation and transcription.", "type": "object", - "description": "A list of string values.", "properties": { - "values": { - "description": "The string values of the list.", - "type": "array", - "items": { - "type": "string" - } + "languageCode": { + "description": "Optional. The IETF [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language code that the user configured the app to use. Used for speech recognition and synthesis. Valid values are: `de-DE`, `en-AU`, `en-GB`, `en-IN`, `en-US`, `es-US`, `fr-FR`, `hi-IN`, `pt-BR`, `ar-XA`, `es-ES`, `fr-CA`, `id-ID`, `it-IT`, `ja-JP`, `tr-TR`, `vi-VN`, `bn-IN`, `gu-IN`, `kn-IN`, `ml-IN`, `mr-IN`, `ta-IN`, `te-IN`, `nl-NL`, `ko-KR`, `cmn-CN`, `pl-PL`, `ru-RU`, and `th-TH`.", + "type": "string" + }, + "multiSpeakerVoiceConfig": { + "description": "Optional. The configuration for the multi-speaker setup. It is mutually exclusive with the voice_config field.", + "$ref": "#/components/schemas/MultiSpeakerVoiceConfig" + }, + "voiceConfig": { + "description": "The configuration in case of single-voice output.", + "$ref": "#/components/schemas/VoiceConfig" } } }, - "CountTokensRequest": { - "description": "Counts the number of tokens in the `prompt` sent to a model. Models may tokenize text differently, so each model may return a different `token_count`.", + "EmbedContentResponse": { + "description": "The response to an `EmbedContentRequest`.", "type": "object", "properties": { - "contents": { - "type": "array", - "description": "Optional. The input given to the model as a prompt. This field is ignored when `generate_content_request` is set.", - "items": { - "$ref": "#/components/schemas/Content" - } + "embedding": { + "description": "Output only. The embedding generated from the input content.", + "readOnly": true, + "$ref": "#/components/schemas/ContentEmbedding" }, - "generateContentRequest": { - "description": "Optional. The overall input given to the `Model`. This includes the prompt as well as other model steering information like [system instructions](https://ai.google.dev/gemini-api/docs/system-instructions), and/or function declarations for [function calling](https://ai.google.dev/gemini-api/docs/function-calling). `Model`s/`Content`s and `generate_content_request`s are mutually exclusive. You can either send `Model` + `Content`s or a `generate_content_request`, but never both.", - "$ref": "#/components/schemas/GenerateContentRequest" + "usageMetadata": { + "description": "Output only. The usage metadata for the request.", + "readOnly": true, + "$ref": "#/components/schemas/EmbeddingUsageMetadata" } } }, "TuningExamples": { "properties": { "examples": { - "description": "The examples. Example input can be for text or discuss, but all examples in a set must be of the same type.", - "type": "array", "items": { "$ref": "#/components/schemas/TuningExample" - } + }, + "description": "The examples. Example input can be for text or discuss, but all examples in a set must be of the same type.", + "type": "array" } }, "description": "A set of tuning examples. Can be training or validation data.", "type": "object" }, - "Source": { - "description": "A source to be mounted into the environment.", - "type": "object", + "TuningTask": { "properties": { - "target": { - "type": "string", - "description": "Where the source should appear in the environment." + "hyperparameters": { + "description": "Immutable. Hyperparameters controlling the tuning process. If not provided, default values will be used.", + "$ref": "#/components/schemas/Hyperparameters" }, - "type": { - "x-enum-descriptions": [ - "", - "A GCS bucket.", - "Inline content.", - "A generic repository. The protocol prefix in the source URL identifies the provider (e.g., github://, gcs://)." - ], - "type": "string", - "enum": [ - "TYPE_UNSPECIFIED", - "GCS", - "INLINE", - "REPOSITORY" - ] - }, - "encoding": { - "type": "string", - "description": "Optional encoding for inline content (e.g. `base64`)." - }, - "source": { - "description": "The source of the environment. For GCS, this is the GCS path. For GitHub, this is the GitHub path.", - "type": "string" - }, - "content": { - "type": "string", - "description": "The inline content if `type` is `INLINE`." - } - } - }, - "Document": { - "properties": { - "createTime": { - "readOnly": true, - "type": "string", + "completeTime": { "format": "google-datetime", - "description": "Output only. The Timestamp of when the `Document` was created." - }, - "sizeBytes": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The size of raw bytes ingested into the Document." - }, - "customMetadata": { - "items": { - "$ref": "#/components/schemas/CustomMetadata" - }, - "type": "array", - "description": "Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`." - }, - "state": { + "description": "Output only. The timestamp when tuning this model completed.", "readOnly": true, - "description": "Output only. Current state of the `Document`.", - "enum": [ - "STATE_UNSPECIFIED", - "STATE_PENDING", - "STATE_ACTIVE", - "STATE_FAILED" - ], - "x-enum-descriptions": [ - "The default value. This value is used if the state is omitted.", - "Some `Chunks` of the `Document` are being processed (embedding and vector storage).", - "All `Chunks` of the `Document` is processed and available for querying.", - "Some `Chunks` of the `Document` failed processing." - ], "type": "string" }, - "name": { - "description": "Immutable. Identifier. The `Document` resource name. The ID (name excluding the \"fileSearchStores/*/documents/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c`", - "type": "string" - }, - "updateTime": { - "readOnly": true, - "type": "string", + "startTime": { "format": "google-datetime", - "description": "Output only. The Timestamp of when the `Document` was last updated." + "description": "Output only. The timestamp when tuning this model started.", + "readOnly": true, + "type": "string" }, - "mimeType": { + "snapshots": { + "description": "Output only. Metrics collected during tuning.", "readOnly": true, - "type": "string", - "description": "Output only. The mime type of the Document." + "type": "array", + "items": { + "$ref": "#/components/schemas/TuningSnapshot" + } }, - "displayName": { - "type": "string", - "description": "Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: \"Semantic Retriever Documentation\"" + "trainingData": { + "description": "Required. Input only. Immutable. The model training data.", + "$ref": "#/components/schemas/Dataset" } }, - "type": "object", - "description": "A `Document` is a collection of `Chunk`s." + "description": "Tuning tasks that create tuned models.", + "type": "object" }, - "GroundingPassageId": { + "SlidingWindow": { + "description": "The SlidingWindow method operates by discarding content at the beginning of the context window. The resulting context will always begin at the start of a USER role turn. System instructions and any `BidiGenerateContentSetup.prefix_turns` will always remain at the beginning of the result.", + "type": "object", "properties": { - "passageId": { - "readOnly": true, + "targetTokens": { + "description": "The target number of tokens to keep. The default value is trigger_tokens/2. Discarding parts of the context window causes a temporary latency increase so this value should be calibrated to avoid frequent compression operations.", "type": "string", - "description": "Output only. ID of the passage matching the `GenerateAnswerRequest`'s `GroundingPassage.id`." - }, - "partIndex": { - "readOnly": true, - "type": "integer", - "format": "int32", - "description": "Output only. Index of the part within the `GenerateAnswerRequest`'s `GroundingPassage.content`." + "format": "int64" } - }, - "type": "object", - "description": "Identifier for a part within a `GroundingPassage`." + } }, - "InlinedEmbedContentRequest": { + "Interval": { "properties": { - "request": { - "$ref": "#/components/schemas/EmbedContentRequest", - "description": "Required. The request to be processed in the batch." + "startTime": { + "format": "google-datetime", + "description": "Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.", + "type": "string" }, - "metadata": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Optional. The metadata to be associated with the request." + "endTime": { + "description": "Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.", + "type": "string", + "format": "google-datetime" } }, - "description": "The request to be processed in the batch.", + "description": "Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.", "type": "object" }, "ListGeneratedFilesResponse": { "properties": { "generatedFiles": { + "description": "The list of `GeneratedFile`s.", + "type": "array", "items": { "$ref": "#/components/schemas/GeneratedFile" - }, - "description": "The list of `GeneratedFile`s.", - "type": "array" + } }, "nextPageToken": { "description": "A token that can be sent as a `page_token` into a subsequent `ListGeneratedFiles` call.", "type": "string" } }, - "type": "object", - "description": "Response for `ListGeneratedFiles`." - }, - "SpeakerVoiceConfig": { - "properties": { - "speaker": { - "description": "Required. The name of the speaker to use. Should be the same as in the prompt.", - "type": "string" - }, - "voiceConfig": { - "description": "Required. The configuration for the voice to use.", - "$ref": "#/components/schemas/VoiceConfig" - } - }, - "description": "The configuration for a single speaker in a multi speaker setup.", + "description": "Response for `ListGeneratedFiles`.", "type": "object" }, - "UrlContextMetadata": { - "type": "object", - "description": "Metadata related to url context retrieval tool.", - "properties": { - "urlMetadata": { - "items": { - "$ref": "#/components/schemas/UrlMetadata" - }, - "type": "array", - "description": "List of url context." - } - } - }, - "CreateFileRequest": { + "ChunkingConfig": { "properties": { - "file": { - "description": "Optional. Metadata for the file to create.", - "$ref": "#/components/schemas/File" + "whiteSpaceConfig": { + "description": "White space chunking configuration.", + "$ref": "#/components/schemas/WhiteSpaceConfig" } }, - "description": "Request for `CreateFile`.", + "description": "Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto", "type": "object" }, - "Blob": { - "properties": { - "data": { - "type": "string", - "format": "byte", - "description": "Raw bytes for media formats." - }, - "mimeType": { - "description": "The IANA standard MIME type of the source data. Examples of supported types: - Images: image/png, image/jpeg, image/jpg, image/webp, image/heic, image/heif, image/gif, image/avif - Audio: audio/*, video/audio/s16le, video/audio/wav - Video: video/* - Text: text/plain, text/html, text/css, text/javascript, text/x-typescript, text/csv, text/markdown, text/x-python, text/xml, text/rtf, video/text/timestamp - Applications: application/x-javascript, application/x-typescript, application/x-python-code, application/json, application/x-ipynb+json, application/rtf, application/pdf For additional context, see [Supported file formats](https://ai.google.dev/gemini-api/docs/file-input-methods#supported-content-types). //", - "type": "string" - } - }, - "type": "object", - "description": "Raw media bytes. Text should not be sent as raw bytes, use the 'text' field." - }, - "ListDocumentsResponse": { + "GroundingMetadata": { "properties": { - "documents": { + "groundingSupports": { + "description": "List of grounding support.", "type": "array", - "description": "The returned `Document`s.", "items": { - "$ref": "#/components/schemas/Document" + "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaGroundingSupport" } }, - "nextPageToken": { - "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages." - } - }, - "description": "Response from `ListDocuments` containing a paginated list of `Document`s. The `Document`s are sorted by ascending `document.create_time`.", - "type": "object" - }, - "EgressRule": { - "type": "object", - "description": "A network egress rule that controls which external domains the environment is allowed to reach. Each rule identifies a target domain and, optionally, a set of HTTP headers to inject into every matching outbound request.", - "properties": { - "domain": { - "type": "string", - "description": "The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains." - }, - "transform": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Headers to inject into requests matching this rule. Key: header name (e.g., \"Authorization\"). Value: header value (e.g., \"Bearer your-token\")." - } - } - }, - "Candidate": { - "properties": { - "index": { - "readOnly": true, - "type": "integer", - "format": "int32", - "description": "Output only. Index of the candidate in the list of response candidates." - }, - "tokenCount": { - "description": "Output only. Token count for this candidate.", - "readOnly": true, - "type": "integer", - "format": "int32" - }, - "logprobsResult": { - "description": "Output only. Log-likelihood scores for the response tokens and top tokens", - "readOnly": true, - "$ref": "#/components/schemas/LogprobsResult" - }, - "content": { - "description": "Output only. Generated content returned from the model.", - "readOnly": true, - "$ref": "#/components/schemas/Content" + "retrievalMetadata": { + "description": "Metadata related to retrieval in the grounding flow.", + "$ref": "#/components/schemas/RetrievalMetadata" }, - "finishMessage": { - "description": "Optional. Output only. Details the reason why the model stopped generating tokens. This is populated only when `finish_reason` is set.", - "readOnly": true, + "googleMapsWidgetContextToken": { + "description": "Optional. Resource name of the Google Maps widget context token that can be used with the PlacesContextElement widget in order to render contextual data. Only populated in the case that grounding with Google Maps is enabled.", "type": "string" }, - "groundingMetadata": { - "readOnly": true, - "$ref": "#/components/schemas/GroundingMetadata", - "description": "Output only. Grounding metadata for the candidate. This field is populated for `GenerateContent` calls." + "searchEntryPoint": { + "description": "Optional. Google search entry for the following-up web searches.", + "$ref": "#/components/schemas/SearchEntryPoint" }, - "safetyRatings": { + "groundingChunks": { "items": { - "$ref": "#/components/schemas/SafetyRating" + "$ref": "#/components/schemas/GroundingChunk" }, - "type": "array", - "description": "List of ratings for the safety of a response candidate. There is at most one rating per category." - }, - "citationMetadata": { - "readOnly": true, - "$ref": "#/components/schemas/CitationMetadata", - "description": "Output only. Citation information for model-generated candidate. This field may be populated with recitation information for any text included in the `content`. These are passages that are \"recited\" from copyrighted material in the foundational LLM's training data." - }, - "avgLogprobs": { - "description": "Output only. Average log probability score of the candidate.", - "readOnly": true, - "type": "number", - "format": "double" + "description": "List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses.", + "type": "array" }, - "groundingAttributions": { - "description": "Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.", - "readOnly": true, + "webSearchQueries": { + "description": "Web search queries for the following-up web search.", "type": "array", "items": { - "$ref": "#/components/schemas/GroundingAttribution" + "type": "string" } }, - "urlContextMetadata": { - "description": "Output only. Metadata related to url context retrieval tool.", - "readOnly": true, - "$ref": "#/components/schemas/UrlContextMetadata" - }, - "finishReason": { - "x-enum-descriptions": [ - "Default value. This value is unused.", - "Natural stop point of the model or provided stop sequence.", - "The maximum number of tokens as specified in the request was reached.", - "The response candidate content was flagged for safety reasons.", - "The response candidate content was flagged for recitation reasons.", - "The response candidate content was flagged for using an unsupported language.", - "Unknown reason.", - "Token generation stopped because the content contains forbidden terms.", - "Token generation stopped for potentially containing prohibited content.", - "Token generation stopped because the content potentially contains Sensitive Personally Identifiable Information (SPII).", - "The function call generated by the model is invalid.", - "Token generation stopped because generated images contain safety violations.", - "Image generation stopped because generated images has other prohibited content.", - "Image generation stopped because of other miscellaneous issue.", - "The model was expected to generate an image, but none was generated.", - "Image generation stopped due to recitation.", - "Model generated a tool call but no tools were enabled in the request.", - "Model called too many tools consecutively, thus the system exited execution.", - "Request has at least one thought signature missing.", - "Finished due to malformed response.", - "Request was filtered by an escalation rule." - ], - "readOnly": true, - "description": "Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.", - "enum": [ - "FINISH_REASON_UNSPECIFIED", - "STOP", - "MAX_TOKENS", - "SAFETY", - "RECITATION", - "LANGUAGE", - "OTHER", - "BLOCKLIST", - "PROHIBITED_CONTENT", - "SPII", - "MALFORMED_FUNCTION_CALL", - "IMAGE_SAFETY", - "IMAGE_PROHIBITED_CONTENT", - "IMAGE_OTHER", - "NO_IMAGE", - "IMAGE_RECITATION", - "UNEXPECTED_TOOL_CALL", - "TOO_MANY_TOOL_CALLS", - "MISSING_THOUGHT_SIGNATURE", - "MALFORMED_RESPONSE", - "ESCALATION" - ], - "type": "string" + "imageSearchQueries": { + "description": "Image search queries used for grounding.", + "type": "array", + "items": { + "type": "string" + } } }, - "type": "object", - "description": "A response candidate generated from the model." + "description": "Metadata returned to client when grounding is enabled.", + "type": "object" }, - "AudioResponseFormat": { - "description": "Configuration for audio output format.", + "SafetySetting": { + "description": "Safety setting, affecting the safety-blocking behavior. Passing a safety setting for a category changes the allowed probability that content is blocked.", "type": "object", "properties": { - "mimeType": { - "x-enum-descriptions": [ - "Default value. This value is unused.", - "MP3 audio format.", - "OGG Opus audio format.", - "Raw PCM (L16) audio format.", - "WAV audio format.", - "A-law audio format.", - "Mu-law audio format." + "category": { + "enumDeprecated": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false ], + "description": "Required. The category for this setting.", "type": "string", - "description": "Optional. The MIME type of the audio output.", "enum": [ - "MIME_TYPE_UNSPECIFIED", - "AUDIO_MP3", - "AUDIO_OGG_OPUS", - "AUDIO_L16", - "AUDIO_WAV", - "AUDIO_ALAW", - "AUDIO_MULAW" + "HARM_CATEGORY_UNSPECIFIED", + "HARM_CATEGORY_DEROGATORY", + "HARM_CATEGORY_TOXICITY", + "HARM_CATEGORY_VIOLENCE", + "HARM_CATEGORY_SEXUAL", + "HARM_CATEGORY_MEDICAL", + "HARM_CATEGORY_DANGEROUS", + "HARM_CATEGORY_HARASSMENT", + "HARM_CATEGORY_HATE_SPEECH", + "HARM_CATEGORY_SEXUALLY_EXPLICIT", + "HARM_CATEGORY_DANGEROUS_CONTENT", + "HARM_CATEGORY_CIVIC_INTEGRITY", + "HARM_CATEGORY_JAILBREAK" + ], + "x-enum-descriptions": [ + "Category is unspecified.", + "**PaLM** - Negative or harmful comments targeting identity and/or protected attribute.", + "**PaLM** - Content that is rude, disrespectful, or profane.", + "**PaLM** - Describes scenarios depicting violence against an individual or group, or general descriptions of gore.", + "**PaLM** - Contains references to sexual acts or other lewd content.", + "**PaLM** - Promotes unchecked medical advice.", + "**PaLM** - Dangerous content that promotes, facilitates, or encourages harmful acts.", + "**Gemini** - Harassment content.", + "**Gemini** - Hate speech and content.", + "**Gemini** - Sexually explicit content.", + "**Gemini** - Dangerous content.", + "**Gemini** - Content that may be used to harm civic integrity. DEPRECATED: use enable_enhanced_civic_answers instead.", + "**Gemini** - Prompts attempting to bypass or subvert the model's safety guidelines (jailbreak attempts)." ] }, - "sampleRate": { - "type": "integer", - "format": "int32", - "description": "Optional. Sample rate in Hz." - }, - "delivery": { + "threshold": { + "description": "Required. Controls the probability threshold at which harm is blocked.", "type": "string", - "description": "Optional. The delivery mode for the audio output.", "enum": [ - "DELIVERY_UNSPECIFIED", - "INLINE", - "URI" + "HARM_BLOCK_THRESHOLD_UNSPECIFIED", + "BLOCK_LOW_AND_ABOVE", + "BLOCK_MEDIUM_AND_ABOVE", + "BLOCK_ONLY_HIGH", + "BLOCK_NONE", + "OFF" ], "x-enum-descriptions": [ - "Default value. This value is unused.", - "Audio data is returned inline in the response.", - "Audio data is returned as a URI." + "Threshold is unspecified.", + "Content with NEGLIGIBLE will be allowed.", + "Content with NEGLIGIBLE and LOW will be allowed.", + "Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed.", + "All content will be allowed.", + "Turn off the safety filter." ] - }, - "bitRate": { - "type": "integer", - "format": "int32", - "description": "Optional. Bit rate in bits per second (bps). Only applicable for compressed formats (MP3, Opus)." } } }, - "TuningTask": { - "description": "Tuning tasks that create tuned models.", - "type": "object", + "TransferOwnershipRequest": { "properties": { - "hyperparameters": { - "description": "Immutable. Hyperparameters controlling the tuning process. If not provided, default values will be used.", - "$ref": "#/components/schemas/Hyperparameters" - }, - "trainingData": { - "description": "Required. Input only. Immutable. The model training data.", - "$ref": "#/components/schemas/Dataset" + "emailAddress": { + "description": "Required. The email address of the user to whom the tuned model is being transferred to.", + "type": "string" + } + }, + "description": "Request to transfer the ownership of the tuned model.", + "type": "object" + }, + "Hyperparameters": { + "properties": { + "learningRate": { + "description": "Optional. Immutable. The learning rate hyperparameter for tuning. If not set, a default of 0.001 or 0.0002 will be calculated based on the number of training examples.", + "type": "number", + "format": "float" }, - "snapshots": { - "description": "Output only. Metrics collected during tuning.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/TuningSnapshot" - } + "learningRateMultiplier": { + "description": "Optional. Immutable. The learning rate multiplier is used to calculate a final learning_rate based on the default (recommended) value. Actual learning rate := learning_rate_multiplier * default learning rate Default learning rate is dependent on base model and dataset size. If not set, a default of 1.0 will be used.", + "type": "number", + "format": "float" }, - "startTime": { - "description": "Output only. The timestamp when tuning this model started.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "batchSize": { + "description": "Immutable. 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.", + "type": "integer", + "format": "int32" }, - "completeTime": { - "description": "Output only. The timestamp when tuning this model completed.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "epochCount": { + "format": "int32", + "description": "Immutable. The number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 will be used.", + "type": "integer" } - } + }, + "description": "Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance", + "type": "object" }, - "FunctionDeclaration": { - "type": "object", - "description": "Structured representation of a function declaration as defined by the [OpenAPI 3.03 specification](https://spec.openapis.org/oas/v3.0.3). Included in this declaration are the function name and parameters. This FunctionDeclaration is a representation of a block of code that can be used as a `Tool` by the model and executed by the client.", + "Environment": { "properties": { - "parameters": { - "description": "Optional. Describes the parameters to this function. Reflects the Open API 3.03 Parameter Object string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter.", - "$ref": "#/components/schemas/Schema" - }, - "parametersJsonSchema": { - "description": "Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"age\": { \"type\": \"integer\" } }, \"additionalProperties\": false, \"required\": [\"name\", \"age\"], \"propertyOrdering\": [\"name\", \"age\"] } ``` This field is mutually exclusive with `parameters`." - }, - "name": { - "description": "Required. The name of the function. Must be a-z, A-Z, 0-9, or contain underscores, colons, dots, and dashes, with a maximum length of 128.", - "type": "string" + "status": { + "description": "Output only. The status of the environment container.", + "type": "string", + "enum": [ + "STATUS_UNSPECIFIED", + "ACTIVE", + "EXPIRED" + ], + "x-enum-descriptions": [ + "", + "", + "" + ], + "readOnly": true }, - "description": { - "description": "Required. A brief description of the function.", + "created": { + "description": "Output only. The time at which the environment was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", + "readOnly": true, "type": "string" }, - "response": { - "description": "Optional. Describes the output from this function in JSON Schema format. Reflects the Open API 3.03 Response Object. The Schema defines the type used for the response value of the function.", - "$ref": "#/components/schemas/Schema" - }, - "behavior": { - "description": "Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method.", + "network_mode": { + "description": "Network egress mode.", + "type": "string", "enum": [ - "UNSPECIFIED", - "BLOCKING", - "NON_BLOCKING" + "NETWORK_MODE_UNSPECIFIED", + "DISABLED" ], - "type": "string", "x-enum-descriptions": [ - "This value is unused.", - "If set, the system will wait to receive the function response before continuing the conversation.", - "If set, the system will not wait to receive the function response. Instead, it will attempt to handle function responses as they become available while maintaining the conversation between the user and the model." + "Default value. Unused.", + "All network egress is blocked." ] }, - "responseJsonSchema": { - "description": "Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`." - } - } - }, - "ToolConfig": { - "type": "object", - "description": "The Tool configuration containing parameters for specifying `Tool` use in the request.", - "properties": { - "functionCallingConfig": { - "$ref": "#/components/schemas/FunctionCallingConfig", - "description": "Optional. Function calling config." + "sources": { + "description": "Sources to be mounted into the environment.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Source" + } }, - "retrievalConfig": { - "description": "Optional. Retrieval config.", - "$ref": "#/components/schemas/RetrievalConfig" + "network_allowlist": { + "description": "Allow only specific domains.", + "$ref": "#/components/schemas/EnvironmentNetworkEgressAllowlist" }, - "includeServerSideToolInvocations": { - "description": "Optional. If true, the API response will include the server-side tool calls and responses within the `Content` message. This allows clients to observe the server's tool interactions.", - "type": "boolean" - } - } - }, - "Web": { - "properties": { - "title": { + "lastAccessed": { + "description": "Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", "readOnly": true, - "type": "string", - "description": "Output only. Title of the chunk." + "type": "string" }, - "uri": { + "fileCount": { + "format": "int64", + "description": "Output only. The number of files in the environment, output only.", "readOnly": true, - "type": "string", - "description": "Output only. URI reference of the chunk." - } - }, - "description": "Chunk from the web.", - "type": "object" - }, - "CustomMetadata": { - "properties": { - "stringValue": { - "type": "string", - "description": "The string value of the metadata to store." + "type": "string" }, - "key": { - "description": "Required. The key of the metadata to store.", + "sizeBytes": { + "format": "int64", + "description": "Output only. The total size of the environment files in bytes, output only.", + "readOnly": true, "type": "string" }, - "stringListValue": { - "description": "The StringList value of the metadata to store.", - "$ref": "#/components/schemas/StringList" + "id": { + "description": "Required. Output only. The ID of the environment.", + "readOnly": true, + "type": "string" }, - "numericValue": { - "description": "The numeric value of the metadata to store.", - "type": "number", - "format": "float" + "updated": { + "description": "Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", + "readOnly": true, + "type": "string" } }, - "description": "User provided metadata stored as key-value pairs.", + "description": "An execution environment for an agent.", "type": "object" }, - "EmbedContentResponse": { + "ToolCall": { + "description": "A predicted server-side `ToolCall` returned from the model. This message contains information about a tool that the model wants to invoke. The client is NOT expected to execute this `ToolCall`. Instead, the client should pass this `ToolCall` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolResponse`.", "type": "object", - "description": "The response to an `EmbedContentRequest`.", "properties": { - "embedding": { - "description": "Output only. The embedding generated from the input content.", - "readOnly": true, - "$ref": "#/components/schemas/ContentEmbedding" + "toolName": { + "description": "Optional. The name of the tool that was called.", + "type": "string" }, - "usageMetadata": { - "readOnly": true, - "$ref": "#/components/schemas/EmbeddingUsageMetadata", - "description": "Output only. The usage metadata for the request." - } - } - }, - "ImageConfig": { - "description": "Config for image generation features.", - "type": "object", - "properties": { - "aspectRatio": { + "toolType": { + "x-enum-descriptions": [ + "Unspecified tool type.", + "Google search tool, maps to Tool.google_search.search_types.web_search.", + "Image search tool, maps to Tool.google_search.search_types.image_search.", + "URL context tool, maps to Tool.url_context.", + "Google maps tool, maps to Tool.google_maps.", + "File search tool, maps to Tool.file_search." + ], + "description": "Required. The type of tool that was called.", "type": "string", - "description": "Optional. The aspect ratio of the image to generate. Supported aspect ratios: `1:1`, `1:4`, `4:1`, `1:8`, `8:1`, `2:3`, `3:2`, `3:4`, `4:3`, `4:5`, `5:4`, `9:16`, `16:9`, or `21:9`. If not specified, the model will choose a default aspect ratio based on any reference images provided." + "enum": [ + "TOOL_TYPE_UNSPECIFIED", + "GOOGLE_SEARCH_WEB", + "GOOGLE_SEARCH_IMAGE", + "URL_CONTEXT", + "GOOGLE_MAPS", + "FILE_SEARCH" + ] }, - "imageSize": { - "type": "string", - "description": "Optional. Specifies the size of generated images. Supported values are `512`, `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`." - } - } - }, - "VideoFileMetadata": { - "properties": { - "videoDuration": { - "description": "Duration of the video.", - "type": "string", - "format": "google-duration" - } - }, - "description": "Metadata for a video `File`.", - "type": "object" - }, - "MultiSpeakerVoiceConfig": { - "properties": { - "speakerVoiceConfigs": { - "items": { - "$ref": "#/components/schemas/SpeakerVoiceConfig" + "args": { + "additionalProperties": { + "description": "Properties of the object." }, - "description": "Required. All the enabled speaker voices.", - "type": "array" + "description": "Optional. The tool call arguments. Example: {\"arg1\" : \"value1\", \"arg2\" : \"value2\" , ...}", + "type": "object" + }, + "id": { + "description": "Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`.", + "type": "string" } - }, - "type": "object", - "description": "The configuration for the multi-speaker setup." + } }, - "FileSearchStore": { + "McpServer": { + "description": "A MCPServer is a server that can be called by the model to perform actions. It is a server that implements the MCP protocol. Next ID: 6", "type": "object", - "description": "A `FileSearchStore` is a collection of `Document`s.", "properties": { - "displayName": { - "type": "string", - "description": "Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: \"Docs on Semantic Retriever\"" - }, - "updateTime": { - "description": "Output only. The Timestamp of when the `FileSearchStore` was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "sizeBytes": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`." - }, - "activeDocumentsCount": { - "description": "Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.", - "readOnly": true, - "type": "string", - "format": "int64" - }, - "pendingDocumentsCount": { - "description": "Output only. The number of documents in the `FileSearchStore` that are being processed.", - "readOnly": true, - "type": "string", - "format": "int64" + "streamableHttpTransport": { + "description": "A transport that can stream HTTP requests and responses.", + "$ref": "#/components/schemas/StreamableHttpTransport" }, "name": { - "readOnly": true, - "type": "string", - "description": "Output only. Immutable. Identifier. The `FileSearchStore` resource name. It is an ID (name excluding the \"fileSearchStores/\" prefix) that can contain up to 40 characters that are lowercase alphanumeric or dashes (-). It is output only. The unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/my-awesome-file-search-store-123a456b789c` If `display_name` is not provided, the name will be randomly generated." - }, - "embeddingModel": { - "type": "string", - "description": "Optional. The embedding model to use for the `FileSearchStore`. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`. If not specified, the default embedding model will be used." - }, - "failedDocumentsCount": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The number of documents in the `FileSearchStore` that have failed processing." - }, - "createTime": { - "description": "Output only. The Timestamp of when the `FileSearchStore` was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "description": "The name of the MCPServer.", + "type": "string" } } }, - "VoiceConfig": { - "properties": { - "prebuiltVoiceConfig": { - "description": "The configuration for the prebuilt voice to use.", - "$ref": "#/components/schemas/PrebuiltVoiceConfig" - } - }, - "description": "The configuration for the voice to use.", - "type": "object" - }, - "TranslationConfig": { - "description": "Config for translation features.", + "CitationMetadata": { + "description": "A collection of source attributions for a piece of content.", "type": "object", "properties": { - "echoTargetLanguage": { - "type": "boolean", - "description": "Optional. If true, the model will generate audio when the target language is spoken, essentially it will parrot the input. If false, we will not produce audio for the target language." - }, - "targetLanguageCode": { - "description": "Required. The target language for translation. Supported values are BCP-47 language codes (e.g. \"en\", \"es\", \"fr\").", - "type": "string" + "citationSources": { + "items": { + "$ref": "#/components/schemas/CitationSource" + }, + "description": "Citations to sources for a specific response.", + "type": "array" } } }, - "UploadToFileSearchStoreRequest": { + "CountTokensRequest": { + "description": "Counts the number of tokens in the `prompt` sent to a model. Models may tokenize text differently, so each model may return a different `token_count`.", "type": "object", - "description": "Request for `UploadToFileSearchStore`.", "properties": { - "displayName": { - "type": "string", - "description": "Optional. Display name of the created document." - }, - "customMetadata": { + "contents": { "items": { - "$ref": "#/components/schemas/CustomMetadata" + "$ref": "#/components/schemas/Content" }, - "description": "Custom metadata to be associated with the data.", + "description": "Optional. The input given to the model as a prompt. This field is ignored when `generate_content_request` is set.", "type": "array" }, - "chunkingConfig": { - "description": "Optional. Config for telling the service how to chunk the data. If not provided, the service will use default parameters.", - "$ref": "#/components/schemas/ChunkingConfig" - }, - "mimeType": { - "description": "Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content.", - "type": "string" + "generateContentRequest": { + "description": "Optional. The overall input given to the `Model`. This includes the prompt as well as other model steering information like [system instructions](https://ai.google.dev/gemini-api/docs/system-instructions), and/or function declarations for [function calling](https://ai.google.dev/gemini-api/docs/function-calling). `Model`s/`Content`s and `generate_content_request`s are mutually exclusive. You can either send `Model` + `Content`s or a `generate_content_request`, but never both.", + "$ref": "#/components/schemas/GenerateContentRequest" } } }, - "CachedContentUsageMetadata": { - "description": "Metadata on the usage of the cached content.", - "type": "object", + "InlinedRequests": { "properties": { - "totalTokenCount": { - "description": "Total number of tokens that the cached content consumes.", - "type": "integer", - "format": "int32" + "requests": { + "items": { + "$ref": "#/components/schemas/InlinedRequest" + }, + "description": "Required. The requests to be processed in the batch.", + "type": "array" } - } + }, + "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "type": "object" }, "EmbedContentConfig": { "properties": { "autoTruncate": { - "type": "boolean", - "description": "Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length." + "description": "Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length.", + "type": "boolean" }, "outputDimensionality": { + "description": "Optional. Reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end.", "type": "integer", - "format": "int32", - "description": "Optional. Reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end." + "format": "int32" }, "documentOcr": { "description": "Optional. Whether to enable OCR for document content.", "type": "boolean" }, "audioTrackExtraction": { - "type": "boolean", - "description": "Optional. Whether to extract audio from video content." - }, - "title": { - "description": "Optional. The title for the text.", - "type": "string" + "description": "Optional. Whether to extract audio from video content.", + "type": "boolean" }, "taskType": { - "x-enum-descriptions": [ - "Unset value, which will default to one of the other enum values.", - "Specifies the given text is a query in a search/retrieval setting.", - "Specifies the given text is a document from the corpus being searched.", - "Specifies the given text will be used for STS.", - "Specifies that the given text will be classified.", - "Specifies that the embeddings will be used for clustering.", - "Specifies that the given text will be used for question answering.", - "Specifies that the given text will be used for fact verification.", - "Specifies that the given text will be used for code retrieval." - ], "description": "Optional. The task type of the embedding.", + "type": "string", "enum": [ "TASK_TYPE_UNSPECIFIED", "RETRIEVAL_QUERY", @@ -4901,33 +4316,6 @@ "FACT_VERIFICATION", "CODE_RETRIEVAL_QUERY" ], - "type": "string" - } - }, - "type": "object", - "description": "Configurations for the EmbedContent request." - }, - "EmbedContentRequest": { - "type": "object", - "description": "Request containing the `Content` for the model to embed.", - "properties": { - "model": { - "type": "string", - "description": "Required. The model's resource name. This serves as an ID for the Model to use. This name should match a model name returned by the `ListModels` method. Format: `models/{model}`" - }, - "outputDimensionality": { - "description": "Optional. Deprecated: Please use EmbedContentConfig.output_dimensionality instead. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. Supported by newer models since 2024 only. You cannot set this value if using the earlier model (`models/embedding-001`).", - "deprecated": true, - "type": "integer", - "format": "int32" - }, - "content": { - "description": "Required. The content to embed. Only the `parts.text` fields will be counted.", - "$ref": "#/components/schemas/Content" - }, - "taskType": { - "deprecated": true, - "type": "string", "x-enum-descriptions": [ "Unset value, which will default to one of the other enum values.", "Specifies the given text is a query in a search/retrieval setting.", @@ -4938,102 +4326,110 @@ "Specifies that the given text will be used for question answering.", "Specifies that the given text will be used for fact verification.", "Specifies that the given text will be used for code retrieval." - ], - "description": "Optional. Deprecated: Please use EmbedContentConfig.task_type instead. Optional task type for which the embeddings will be used. Not supported on earlier models (`models/embedding-001`).", - "enum": [ - "TASK_TYPE_UNSPECIFIED", - "RETRIEVAL_QUERY", - "RETRIEVAL_DOCUMENT", - "SEMANTIC_SIMILARITY", - "CLASSIFICATION", - "CLUSTERING", - "QUESTION_ANSWERING", - "FACT_VERIFICATION", - "CODE_RETRIEVAL_QUERY" ] }, "title": { - "description": "Optional. Deprecated: Please use EmbedContentConfig.title instead. An optional title for the text. Only applicable when TaskType is `RETRIEVAL_DOCUMENT`. Note: Specifying a `title` for `RETRIEVAL_DOCUMENT` provides better quality embeddings for retrieval.", - "deprecated": true, + "description": "Optional. The title for the text.", "type": "string" - }, - "embedContentConfig": { - "$ref": "#/components/schemas/EmbedContentConfig", - "description": "Optional. Configuration for the EmbedContent request." } - } + }, + "description": "Configurations for the EmbedContent request.", + "type": "object" }, - "ExecutableCode": { + "ModalityTokenCount": { + "description": "Represents token counting info for a single modality.", "type": "object", - "description": "Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated.", "properties": { - "language": { + "modality": { "x-enum-descriptions": [ - "Unspecified language. This value should not be used.", - "Python >= 3.10, with numpy and simpy available. Python is the default language." + "Unspecified modality.", + "Plain text.", + "Image.", + "Video.", + "Audio.", + "Document, e.g. PDF." ], - "description": "Required. Programming language of the `code`.", + "description": "The modality associated with this token count.", + "type": "string", "enum": [ - "LANGUAGE_UNSPECIFIED", - "PYTHON" - ], - "type": "string" - }, - "id": { - "description": "Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`.", - "type": "string" + "MODALITY_UNSPECIFIED", + "TEXT", + "IMAGE", + "VIDEO", + "AUDIO", + "DOCUMENT" + ] }, - "code": { - "description": "Required. The code to be executed.", - "type": "string" + "tokenCount": { + "description": "Number of tokens.", + "type": "integer", + "format": "int32" } } }, - "FunctionResponse": { - "description": "The result output from a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model. This should contain the result of a`FunctionCall` made based on model prediction.", + "RegisterFilesResponse": { + "properties": { + "files": { + "items": { + "$ref": "#/components/schemas/File" + }, + "description": "The registered files to be used when calling GenerateContent.", + "type": "array" + } + }, + "description": "Response for `RegisterFiles`.", + "type": "object" + }, + "ImportFileRequest": { + "description": "Request for `ImportFile` to import a File API file with a `FileSearchStore`.", "type": "object", "properties": { - "name": { - "type": "string", - "description": "Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128." - }, - "id": { - "type": "string", - "description": "Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`." - }, - "willContinue": { - "type": "boolean", - "description": "Optional. Signals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty `response` with `will_continue=False` to signal that the function call is finished. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`." + "customMetadata": { + "items": { + "$ref": "#/components/schemas/CustomMetadata" + }, + "description": "Custom metadata to be associated with the file.", + "type": "array" }, - "scheduling": { - "x-enum-descriptions": [ - "This value is unused.", - "Only add the result to the conversation context, do not interrupt or trigger generation.", - "Add the result to the conversation context, and prompt to generate output without interrupting ongoing generation.", - "Add the result to the conversation context, interrupt ongoing generation and prompt to generate output." - ], - "description": "Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.", - "enum": [ - "SCHEDULING_UNSPECIFIED", - "SILENT", - "WHEN_IDLE", - "INTERRUPT" - ], + "fileName": { + "description": "Required. The name of the `File` to import. Example: `files/abc-123`", "type": "string" }, + "chunkingConfig": { + "description": "Optional. Config for telling the service how to chunk the file. If not provided, the service will use default parameters.", + "$ref": "#/components/schemas/ChunkingConfig" + } + } + }, + "Operation": { + "description": "This resource represents a long-running operation that is the result of a network API call.", + "type": "object", + "properties": { "response": { + "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.", "type": "object", "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Required. The function response in JSON object format. Callers can use any keys of their choice that fit the function's syntax to return the function output, e.g. \"output\", \"result\", etc. In particular, if the function call failed to execute, the response can have an \"error\" key to return error details to the model. Multimedia can be included by using a subobject containing a single \"$ref\" key whose value is the `inline_data.display_name` of a `FunctionResponsePart` holding the multimedia. See https://ai.google.dev/gemini-api/docs/function-calling#multimodal." + "description": "Properties of the object. Contains field @type with type URL." + } }, - "parts": { - "type": "array", - "description": "Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.", - "items": { - "$ref": "#/components/schemas/FunctionResponsePart" + "name": { + "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.", + "type": "string" + }, + "metadata": { + "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object. Contains field @type with type URL." } + }, + "done": { + "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.", + "type": "boolean" + }, + "error": { + "description": "The error result of the operation in case of failure or cancellation.", + "$ref": "#/components/schemas/Status" } } }, @@ -5041,586 +4437,651 @@ "description": "Response from `ListFileSearchStores` containing a paginated list of `FileSearchStores`. The results are sorted by ascending `file_search_store.create_time`.", "type": "object", "properties": { + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "type": "string" + }, "fileSearchStores": { "description": "The returned rag_stores.", "type": "array", "items": { "$ref": "#/components/schemas/FileSearchStore" } - }, - "nextPageToken": { - "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages." } } }, - "PromptFeedback": { - "type": "object", - "description": "A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`.", + "Document": { "properties": { - "safetyRatings": { - "type": "array", - "description": "Ratings for safety of the prompt. There is at most one rating per category.", - "items": { - "$ref": "#/components/schemas/SafetyRating" - } + "name": { + "description": "Immutable. Identifier. The `Document` resource name. The ID (name excluding the \"fileSearchStores/*/documents/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/{file_search_store_id}/documents/my-awesome-doc-123a456b789c`", + "type": "string" }, - "blockReason": { - "description": "Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt.", - "enum": [ - "BLOCK_REASON_UNSPECIFIED", - "SAFETY", - "OTHER", - "BLOCKLIST", - "PROHIBITED_CONTENT", - "IMAGE_SAFETY" - ], + "createTime": { + "format": "google-datetime", + "description": "Output only. The Timestamp of when the `Document` was created.", + "readOnly": true, + "type": "string" + }, + "sizeBytes": { + "description": "Output only. The size of raw bytes ingested into the Document.", + "readOnly": true, "type": "string", + "format": "int64" + }, + "displayName": { + "description": "Optional. The human-readable display name for the `Document`. The display name must be no more than 512 characters in length, including spaces. Example: \"Semantic Retriever Documentation\"", + "type": "string" + }, + "updateTime": { + "description": "Output only. The Timestamp of when the `Document` was last updated.", + "readOnly": true, + "type": "string", + "format": "google-datetime" + }, + "customMetadata": { + "items": { + "$ref": "#/components/schemas/CustomMetadata" + }, + "description": "Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`.", + "type": "array" + }, + "state": { "x-enum-descriptions": [ - "Default value. This value is unused.", - "Prompt was blocked due to safety reasons. Inspect `safety_ratings` to understand which safety category blocked it.", - "Prompt was blocked due to unknown reasons.", - "Prompt was blocked due to the terms which are included from the terminology blocklist.", - "Prompt was blocked due to prohibited content.", - "Candidates blocked due to unsafe image generation content." - ] - } - } - }, - "DynamicRetrievalConfig": { - "description": "Describes the options to customize dynamic retrieval.", - "type": "object", - "properties": { - "mode": { - "x-enum-descriptions": [ - "Always trigger retrieval.", - "Run retrieval only when system decides it is necessary." + "The default value. This value is used if the state is omitted.", + "Some `Chunks` of the `Document` are being processed (embedding and vector storage).", + "All `Chunks` of the `Document` is processed and available for querying.", + "Some `Chunks` of the `Document` failed processing." ], + "description": "Output only. Current state of the `Document`.", "type": "string", - "description": "The mode of the predictor to be used in dynamic retrieval.", "enum": [ - "MODE_UNSPECIFIED", - "MODE_DYNAMIC" - ] + "STATE_UNSPECIFIED", + "STATE_PENDING", + "STATE_ACTIVE", + "STATE_FAILED" + ], + "readOnly": true }, - "dynamicThreshold": { - "description": "The threshold to be used in dynamic retrieval. If not set, a system default value is used.", - "type": "number", - "format": "float" + "mimeType": { + "description": "Output only. The mime type of the Document.", + "readOnly": true, + "type": "string" } - } + }, + "description": "A `Document` is a collection of `Chunk`s.", + "type": "object" }, - "CitationMetadata": { - "type": "object", - "description": "A collection of source attributions for a piece of content.", + "Status": { "properties": { - "citationSources": { + "message": { + "description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.", + "type": "string" + }, + "details": { + "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use.", + "type": "array", "items": { - "$ref": "#/components/schemas/CitationSource" - }, - "description": "Citations to sources for a specific response.", - "type": "array" + "type": "object", + "additionalProperties": { + "description": "Properties of the object. Contains field @type with type URL." + } + } + }, + "code": { + "description": "The status code, which should be an enum value of google.rpc.Code.", + "type": "integer", + "format": "int32" } - } + }, + "description": "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).", + "type": "object" }, - "File": { + "Part": { "properties": { + "codeExecutionResult": { + "description": "Result of executing the `ExecutableCode`.", + "$ref": "#/components/schemas/CodeExecutionResult" + }, + "text": { + "description": "Inline text.", + "type": "string" + }, + "thoughtSignature": { + "format": "byte", + "description": "Optional. An opaque signature for the thought so it can be reused in subsequent requests.", + "type": "string" + }, + "partMetadata": { + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Custom metadata associated with the Part. Agents using genai.Part as content representation may need to keep track of the additional information. For example it can be name of a file/source from which the Part originates or a way to multiplex multiple Part streams.", + "type": "object" + }, + "inlineData": { + "description": "Inline media bytes.", + "$ref": "#/components/schemas/Blob" + }, + "functionCall": { + "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values.", + "$ref": "#/components/schemas/FunctionCall" + }, + "fileData": { + "description": "URI based data.", + "$ref": "#/components/schemas/FileData" + }, "videoMetadata": { - "description": "Output only. Metadata for a video.", - "readOnly": true, - "$ref": "#/components/schemas/VideoFileMetadata" + "description": "Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data.", + "$ref": "#/components/schemas/VideoMetadata" }, - "sha256Hash": { - "description": "Output only. SHA-256 hash of the uploaded bytes.", - "readOnly": true, - "type": "string", - "format": "byte" + "thought": { + "description": "Optional. Indicates if the part is thought from the model.", + "type": "boolean" + }, + "toolCall": { + "description": "Server-side tool call. This field is populated when the model predicts a tool invocation that should be executed on the server. The client is expected to echo this message back to the API.", + "$ref": "#/components/schemas/ToolCall" + }, + "toolResponse": { + "description": "The output from a server-side `ToolCall` execution. This field is populated by the client with the results of executing the corresponding `ToolCall`.", + "$ref": "#/components/schemas/ToolResponse" + }, + "executableCode": { + "description": "Code generated by the model that is meant to be executed.", + "$ref": "#/components/schemas/ExecutableCode" + }, + "functionResponse": { + "description": "The result output of a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model.", + "$ref": "#/components/schemas/FunctionResponse" }, + "mediaResolution": { + "description": "Optional. Media resolution for the input media.", + "$ref": "#/components/schemas/V1mainMediaResolution" + } + }, + "description": "A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if the `inline_data` field is filled with raw bytes.", + "type": "object" + }, + "TunedModel": { + "properties": { "state": { "readOnly": true, - "description": "Output only. Processing state of the File.", + "description": "Output only. The state of the tuned model.", + "type": "string", "enum": [ "STATE_UNSPECIFIED", - "PROCESSING", + "CREATING", "ACTIVE", "FAILED" ], "x-enum-descriptions": [ - "The default value. This value is used if the state is omitted.", - "File is being processed and cannot be used for inference yet.", - "File is processed and available for inference.", - "File failed processing." - ], - "type": "string" + "The default value. This value is unused.", + "The model is being created.", + "The model is ready to be used.", + "The model failed to be created." + ] }, - "mimeType": { - "readOnly": true, - "type": "string", - "description": "Output only. MIME type of the file." + "baseModel": { + "description": "Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001`", + "type": "string" }, - "updateTime": { - "readOnly": true, - "type": "string", - "format": "google-datetime", - "description": "Output only. The timestamp of when the `File` was last updated." + "topK": { + "format": "int32", + "description": "Optional. For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. This value specifies default to be the one used by the base model while creating the model.", + "type": "integer" }, - "downloadUri": { - "description": "Output only. The download uri of the `File`.", - "readOnly": true, - "type": "string" + "tuningTask": { + "description": "Required. The tuning task that creates the tuned model.", + "$ref": "#/components/schemas/TuningTask" }, - "error": { - "readOnly": true, - "$ref": "#/components/schemas/Status", - "description": "Output only. Error status if File processing failed." + "topP": { + "description": "Optional. For Nucleus sampling. Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be the one used by the base model while creating the model.", + "type": "number", + "format": "float" }, - "uri": { - "description": "Output only. The uri of the `File`.", + "createTime": { + "format": "google-datetime", + "description": "Output only. The timestamp when this model was created.", "readOnly": true, "type": "string" }, - "name": { - "type": "string", - "description": "Immutable. Identifier. The `File` resource name. The ID (name excluding the \"files/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456`" + "tunedModelSource": { + "description": "Optional. TunedModel to use as the starting point for training the new model.", + "$ref": "#/components/schemas/TunedModelSource" }, - "expirationTime": { - "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "temperature": { + "format": "float", + "description": "Optional. Controls the randomness of the output. Values can range over `[0.0,1.0]`, inclusive. A value closer to `1.0` will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be the one used by the base model while creating the model.", + "type": "number" }, - "createTime": { - "description": "Output only. The timestamp of when the `File` was created.", + "name": { + "description": "Output only. The tuned model name. A unique name will be generated on create. Example: `tunedModels/az2mb0bpw6i` If display_name is set on create, the id portion of the name will be set by concatenating the words of the display_name with hyphens and adding a random portion for uniqueness. Example: * display_name = `Sentence Translator` * name = `tunedModels/sentence-translator-u3b7m`", "readOnly": true, - "type": "string", - "format": "google-datetime" + "type": "string" }, "displayName": { - "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: \"Welcome Image\"", + "description": "Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces.", "type": "string" }, - "source": { - "description": "Source of the File.", - "enum": [ - "SOURCE_UNSPECIFIED", - "UPLOADED", - "GENERATED", - "REGISTERED" - ], - "type": "string", - "x-enum-descriptions": [ - "Used if source is not specified.", - "Indicates the file is uploaded by the user.", - "Indicates the file is generated by Google.", - "Indicates the file is a registered, i.e. a Google Cloud Storage file." - ] - }, - "sizeBytes": { - "description": "Output only. Size of the file in bytes.", - "readOnly": true, - "type": "string", - "format": "int64" - } - }, - "type": "object", - "description": "A file uploaded to the API. Next ID: 15" - }, - "ListPermissionsResponse": { - "properties": { - "permissions": { + "readerProjectNumbers": { + "description": "Optional. List of project numbers that have read access to the tuned model.", "type": "array", - "description": "Returned permissions.", "items": { - "$ref": "#/components/schemas/Permission" + "type": "string", + "format": "int64" } }, - "nextPageToken": { - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "description": { + "description": "Optional. A short description of this model.", "type": "string" - } - }, - "type": "object", - "description": "Response from `ListPermissions` containing a paginated list of permissions." - }, - "TransferOwnershipResponse": { - "description": "Response from `TransferOwnership`.", - "type": "object", - "properties": {} - }, - "PrebuiltVoiceConfig": { - "properties": { - "voiceName": { - "description": "The name of the preset voice to use.", + }, + "updateTime": { + "format": "google-datetime", + "description": "Output only. The timestamp when this model was updated.", + "readOnly": true, "type": "string" } }, - "type": "object", - "description": "The configuration for the prebuilt speaker to use." + "description": "A fine-tuned model created using ModelService.CreateTunedModel.", + "type": "object" }, - "SearchEntryPoint": { - "description": "Google search entry point.", + "TuningExample": { + "description": "A single example for tuning.", "type": "object", "properties": { - "sdkBlob": { - "type": "string", - "format": "byte", - "description": "Optional. Base64 encoded JSON representing array of tuple." + "textInput": { + "description": "Optional. Text model input.", + "type": "string" }, - "renderedContent": { - "description": "Optional. Web content snippet that can be embedded in a web page or an app webview.", + "output": { + "description": "Required. The expected model output.", "type": "string" } } }, - "BatchEmbedContentsRequest": { - "type": "object", - "description": "Batch request to get embeddings from the model for a list of prompts.", - "properties": { - "requests": { - "items": { - "$ref": "#/components/schemas/EmbedContentRequest" - }, - "description": "Required. Embed requests for the batch. The model in each of these requests must match the model specified `BatchEmbedContentsRequest.model`.", - "type": "array" - } - } - }, - "Image": { + "Model": { "properties": { - "title": { - "description": "The title of the web page that the image is from.", + "description": { + "description": "A short description of the model.", "type": "string" }, - "sourceUri": { - "description": "The web page URI for attribution.", + "version": { + "description": "Required. The version number of the model. This represents the major version (`1.0` or `1.5`)", "type": "string" }, - "domain": { - "type": "string", - "description": "The root domain of the web page that the image is from, e.g. \"example.com\"." + "outputTokenLimit": { + "description": "Maximum number of output tokens available for this model.", + "type": "integer", + "format": "int32" }, - "imageUri": { - "type": "string", - "description": "The image asset URL." + "name": { + "description": "Required. The resource name of the `Model`. Refer to [Model variants](https://ai.google.dev/gemini-api/docs/models/gemini#model-variations) for all allowed values. Format: `models/{model}` with a `{model}` naming convention of: * \"{base_model_id}-{version}\" Examples: * `models/gemini-1.5-flash-001`", + "type": "string" + }, + "inputTokenLimit": { + "description": "Maximum number of input tokens allowed for this model.", + "type": "integer", + "format": "int32" + }, + "displayName": { + "description": "The human-readable name of the model. E.g. \"Gemini 1.5 Flash\". The name can be up to 128 characters long and can consist of any UTF-8 characters.", + "type": "string" + }, + "temperature": { + "format": "float", + "description": "Controls the randomness of the output. Values can range over `[0.0,max_temperature]`, inclusive. A higher value will produce responses that are more varied, while a value closer to `0.0` will typically result in less surprising responses from the model. This value specifies default to be used by the backend while making the call to the model.", + "type": "number" + }, + "maxTemperature": { + "format": "float", + "description": "The maximum temperature this model can use.", + "type": "number" + }, + "thinking": { + "description": "Whether the model supports thinking.", + "type": "boolean" + }, + "topP": { + "description": "For [Nucleus sampling](https://ai.google.dev/gemini-api/docs/prompting-strategies#top-p). Nucleus sampling considers the smallest set of tokens whose probability sum is at least `top_p`. This value specifies default to be used by the backend while making the call to the model.", + "type": "number", + "format": "float" + }, + "topK": { + "description": "For Top-k sampling. Top-k sampling considers the set of `top_k` most probable tokens. This value specifies default to be used by the backend while making the call to the model. If empty, indicates the model doesn't use top-k sampling, and `top_k` isn't allowed as a generation parameter.", + "type": "integer", + "format": "int32" + }, + "baseModelId": { + "description": "Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash`", + "type": "string" + }, + "supportedGenerationMethods": { + "items": { + "type": "string" + }, + "description": "The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`.", + "type": "array" } }, - "description": "Chunk from image search.", + "description": "Information about a Generative Language Model.", "type": "object" }, - "PlaceAnswerSources": { + "CreateFileResponse": { "properties": { - "reviewSnippets": { - "items": { - "$ref": "#/components/schemas/ReviewSnippet" - }, - "description": "Snippets of reviews that are used to generate answers about the features of a given place in Google Maps.", - "type": "array" + "file": { + "description": "Metadata for the created file.", + "$ref": "#/components/schemas/File" } }, - "description": "Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: \"does Bar Foo have Wifi\" or \"is Foo Bar wheelchair accessible?\"). Currently we only support review snippets as sources.", + "description": "Response for `CreateFile`.", "type": "object" }, - "FunctionCallingConfig": { + "GroundingPassageId": { "properties": { - "mode": { - "description": "Optional. Specifies the mode in which function calling should execute. If unspecified, the default value will be set to AUTO.", - "enum": [ - "MODE_UNSPECIFIED", - "AUTO", - "ANY", - "NONE", - "VALIDATED" - ], - "type": "string", - "x-enum-descriptions": [ - "Unspecified function calling mode. This value should not be used.", - "Default model behavior, model decides to predict either a function call or a natural language response.", - "Model is constrained to always predicting a function call only. If \"allowed_function_names\" are set, the predicted function call will be limited to any one of \"allowed_function_names\", else the predicted function call will be any one of the provided \"function_declarations\".", - "Model will not predict any function call. Model behavior is same as when not passing any function declarations.", - "Model decides to predict either a function call or a natural language response, but will validate function calls with constrained decoding. If \"allowed_function_names\" are set, the predicted function call will be limited to any one of \"allowed_function_names\", else the predicted function call will be any one of the provided \"function_declarations\"." - ] + "passageId": { + "description": "Output only. ID of the passage matching the `GenerateAnswerRequest`'s `GroundingPassage.id`.", + "readOnly": true, + "type": "string" }, - "allowedFunctionNames": { - "type": "array", - "description": "Optional. A set of function names that, when provided, limits the functions the model will call. This should only be set when the Mode is ANY or VALIDATED. Function names should match [FunctionDeclaration.name]. When set, model will predict a function call from only allowed function names.", - "items": { - "type": "string" - } + "partIndex": { + "format": "int32", + "description": "Output only. Index of the part within the `GenerateAnswerRequest`'s `GroundingPassage.content`.", + "readOnly": true, + "type": "integer" } }, - "type": "object", - "description": "Configuration for specifying function calling behavior." + "description": "Identifier for a part within a `GroundingPassage`.", + "type": "object" }, - "HistoryConfig": { + "Blob": { "properties": { - "initialHistoryInClientContent": { - "description": "Optional. If true, after sending `setup_complete`, the server will wait and at first process `client_content` messages until `turn_complete` is `true`. This initial history will not trigger a model call and may end with role `MODEL`. After `turn_complete` is `true`, the client can start the realtime conversation via `realtime_input`.", - "type": "boolean" + "mimeType": { + "description": "The IANA standard MIME type of the source data. Examples of supported types: - Images: image/png, image/jpeg, image/jpg, image/webp, image/heic, image/heif, image/gif, image/avif - Audio: audio/*, video/audio/s16le, video/audio/wav - Video: video/* - Text: text/plain, text/html, text/css, text/javascript, text/x-typescript, text/csv, text/markdown, text/x-python, text/xml, text/rtf, video/text/timestamp - Applications: application/x-javascript, application/x-typescript, application/x-python-code, application/json, application/x-ipynb+json, application/rtf, application/pdf For additional context, see [Supported file formats](https://ai.google.dev/gemini-api/docs/file-input-methods#supported-content-types). //", + "type": "string" + }, + "data": { + "format": "byte", + "description": "Raw bytes for media formats.", + "type": "string" } }, - "type": "object", - "description": "History configuration. This message is included in the session configuration as `BidiGenerateContentSetup.history_config`. Configures the exchange of history messages." + "description": "Raw media bytes. Text should not be sent as raw bytes, use the 'text' field.", + "type": "object" }, - "GoogleSearch": { - "type": "object", - "description": "GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", + "InputConfig": { "properties": { - "timeRangeFilter": { - "description": "Optional. Filter search results to a specific time range. If customers set a start time, they must set an end time (and vice versa).", - "$ref": "#/components/schemas/Interval" + "requests": { + "description": "The requests to be processed in the batch.", + "$ref": "#/components/schemas/InlinedRequests" }, - "searchTypes": { - "$ref": "#/components/schemas/SearchTypes", - "description": "Optional. The set of search types to enable. If not set, web search is enabled by default." + "fileName": { + "description": "The name of the `File` containing the input requests.", + "type": "string" } - } + }, + "description": "Configures the input to the batch request.", + "type": "object" }, - "Operation": { + "AudioTranscriptionConfig": { + "description": "The audio transcription configuration.", + "type": "object", "properties": { - "done": { - "type": "boolean", - "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available." + "adaptationPhrases": { + "items": { + "type": "string" + }, + "description": "Optional. A list of phrases used for speech adaptation, which biases the ASR model to improve recognition of these specific terms.", + "type": "array", + "deprecated": true }, - "name": { - "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.", - "type": "string" + "diarization": { + "description": "Optional. Configures speaker diarization.", + "type": "boolean" }, - "response": { - "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.", - "type": "object", - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." + "languageAuto": { + "deprecated": true, + "description": "Optional. The model will detect the language automatically.", + "$ref": "#/components/schemas/LanguageAuto" + }, + "languageHints": { + "$ref": "#/components/schemas/LanguageHints", + "deprecated": true, + "description": "Optional. Specifies one or more languages in the audio." + }, + "languageCodes": { + "description": "Optional. BCP-47 language codes providing hints about the languages present in the audio. If omitted or empty, defaults to automatic language detection.", + "type": "array", + "items": { + "type": "string" } }, - "metadata": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." + "wordTimestamp": { + "description": "Optional. Configures word-level timestamp generation.", + "type": "boolean" + }, + "customVocabulary": { + "description": "Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon).", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "ContentEmbedding": { + "description": "A list of floats representing an embedding.", + "type": "object", + "properties": { + "values": { + "items": { + "type": "number", + "format": "float" }, - "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any." + "description": "The embedding values. This is for 3P users only and will not be populated for 1P calls.", + "type": "array" }, - "error": { - "description": "The error result of the operation in case of failure or cancellation.", - "$ref": "#/components/schemas/Status" + "shape": { + "description": "This field stores the soft tokens tensor frame shape (e.g. [1, 1, 256, 2048]).", + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + } + } + }, + "TunedModelSource": { + "properties": { + "tunedModel": { + "description": "Immutable. The name of the `TunedModel` to use as the starting point for training the new model. Example: `tunedModels/my-tuned-model`", + "type": "string" + }, + "baseModel": { + "description": "Output only. The name of the base `Model` this `TunedModel` was tuned from. Example: `models/gemini-1.5-flash-001`", + "readOnly": true, + "type": "string" } }, - "description": "This resource represents a long-running operation that is the result of a network API call.", + "description": "Tuned model as a source for training a new model.", "type": "object" }, - "EmbedContentBatch": { + "SearchEntryPoint": { + "description": "Google search entry point.", + "type": "object", "properties": { - "updateTime": { - "description": "Output only. The time at which the batch was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "inputConfig": { - "description": "Required. Input configuration of the instances on which batch processing are performed.", - "$ref": "#/components/schemas/InputEmbedContentConfig" - }, - "displayName": { - "type": "string", - "description": "Required. The user-defined name of this batch." - }, - "priority": { - "description": "Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0.", - "type": "string", - "format": "int64" - }, - "model": { - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "renderedContent": { + "description": "Optional. Web content snippet that can be embedded in a web page or an app webview.", "type": "string" }, - "name": { - "readOnly": true, + "sdkBlob": { + "description": "Optional. Base64 encoded JSON representing array of tuple.", "type": "string", - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`." - }, - "batchStats": { - "description": "Output only. Stats about the batch.", - "readOnly": true, - "$ref": "#/components/schemas/EmbedContentBatchStats" - }, - "output": { - "readOnly": true, - "$ref": "#/components/schemas/EmbedContentBatchOutput", - "description": "Output only. The output of the batch request." - }, - "createTime": { - "description": "Output only. The time at which the batch was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "endTime": { - "description": "Output only. The time at which the batch processing completed.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "state": { - "type": "string", - "x-enum-descriptions": [ - "The batch state is unspecified.", - "The service is preparing to run the batch.", - "The batch is in progress.", - "The batch completed successfully.", - "The batch failed.", - "The batch has been cancelled.", - "The batch has expired." - ], - "description": "Output only. The state of the batch.", - "enum": [ - "BATCH_STATE_UNSPECIFIED", - "BATCH_STATE_PENDING", - "BATCH_STATE_RUNNING", - "BATCH_STATE_SUCCEEDED", - "BATCH_STATE_FAILED", - "BATCH_STATE_CANCELLED", - "BATCH_STATE_EXPIRED" - ], - "readOnly": true + "format": "byte" } - }, + } + }, + "GroundingChunkStringList": { + "description": "A list of string values.", "type": "object", - "description": "A resource representing a batch of `EmbedContent` requests." + "properties": { + "values": { + "description": "The string values of the list.", + "type": "array", + "items": { + "type": "string" + } + } + } }, - "Dataset": { + "FileData": { "properties": { - "examples": { - "$ref": "#/components/schemas/TuningExamples", - "description": "Optional. Inline examples with simple input/output text." + "mimeType": { + "description": "Optional. The IANA standard MIME type of the source data.", + "type": "string" + }, + "fileUri": { + "description": "Required. URI.", + "type": "string" } }, - "type": "object", - "description": "Dataset for training or validation." + "description": "URI based data.", + "type": "object" }, - "TuningSnapshot": { + "FunctionResponseBlob": { + "description": "Raw media bytes for function response. Text should not be sent as raw bytes, use the 'FunctionResponse.response' field.", "type": "object", - "description": "Record for a single tuning step.", "properties": { - "epoch": { - "readOnly": true, - "type": "integer", - "format": "int32", - "description": "Output only. The epoch this step was part of." + "mimeType": { + "description": "The IANA standard MIME type of the source data. Examples: - image/png - image/jpeg If an unsupported MIME type is provided, an error will be returned. For a complete list of supported types, see [Supported file formats](https://ai.google.dev/gemini-api/docs/prompting_with_media#supported_file_formats).", + "type": "string" }, - "meanLoss": { - "description": "Output only. The mean loss of the training examples for this step.", - "readOnly": true, + "data": { + "description": "Raw bytes for media formats.", + "type": "string", + "format": "byte" + } + } + }, + "VideoMetadata": { + "description": "Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content.", + "type": "object", + "deprecated": true, + "properties": { + "fps": { + "description": "Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0].", "type": "number", - "format": "float" - }, - "step": { - "readOnly": true, - "type": "integer", - "format": "int32", - "description": "Output only. The tuning step." + "format": "double" }, - "computeTime": { - "readOnly": true, + "startOffset": { + "description": "Optional. The start offset of the video.", "type": "string", - "format": "google-datetime", - "description": "Output only. The timestamp when this metric was computed." + "format": "google-duration" + }, + "endOffset": { + "format": "google-duration", + "description": "Optional. The end offset of the video.", + "type": "string" } } }, - "ContentEmbedding": { - "type": "object", - "description": "A list of floats representing an embedding.", + "InlinedEmbedContentResponses": { "properties": { - "values": { + "inlinedResponses": { "items": { - "type": "number", - "format": "float" + "$ref": "#/components/schemas/InlinedEmbedContentResponse" }, - "description": "The embedding values. This is for 3P users only and will not be populated for 1P calls.", + "description": "Output only. The responses to the requests in the batch.", + "readOnly": true, "type": "array" + } + }, + "description": "The responses to the requests in the batch.", + "type": "object" + }, + "SemanticRetrieverChunk": { + "description": "Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`.", + "type": "object", + "properties": { + "source": { + "description": "Output only. Name of the source matching the request's `SemanticRetrieverConfig.source`. Example: `corpora/123` or `corpora/123/documents/abc`", + "readOnly": true, + "type": "string" }, - "shape": { - "description": "This field stores the soft tokens tensor frame shape (e.g. [1, 1, 256, 2048]).", - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } + "chunk": { + "description": "Output only. Name of the `Chunk` containing the attributed text. Example: `corpora/123/documents/abc/chunks/xyz`", + "readOnly": true, + "type": "string" } } }, - "Tool": { + "GeneratedFile": { + "description": "A file generated on behalf of a user.", "type": "object", - "description": "Tool details that the model may use to generate response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. Next ID: 16", "properties": { - "googleSearch": { - "description": "Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", - "$ref": "#/components/schemas/GoogleSearch" - }, - "googleSearchRetrieval": { - "$ref": "#/components/schemas/GoogleSearchRetrieval", - "description": "Optional. Retrieval tool that is powered by Google search." - }, - "googleMaps": { - "$ref": "#/components/schemas/GoogleMaps", - "description": "Optional. Tool that allows grounding the model's response with geospatial context related to the user's query." - }, - "mcpServers": { - "items": { - "$ref": "#/components/schemas/McpServer" - }, - "description": "Optional. MCP Servers to connect to.", - "type": "array" - }, - "codeExecution": { - "$ref": "#/components/schemas/CodeExecution", - "description": "Optional. Enables the model to execute code as part of generation." - }, - "computerUse": { - "description": "Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations.", - "$ref": "#/components/schemas/ComputerUse" + "name": { + "description": "Identifier. The name of the generated file. Example: `generatedFiles/abc-123`", + "type": "string" }, - "fileSearch": { - "$ref": "#/components/schemas/FileSearch", - "description": "Optional. FileSearch tool type. Tool to retrieve knowledge from Semantic Retrieval corpora." + "state": { + "description": "Output only. The state of the GeneratedFile.", + "type": "string", + "enum": [ + "STATE_UNSPECIFIED", + "GENERATING", + "GENERATED", + "FAILED" + ], + "x-enum-descriptions": [ + "The default value. This value is used if the state is omitted.", + "Being generated.", + "Generated and is ready for download.", + "Failed to generate the GeneratedFile." + ], + "readOnly": true }, - "functionDeclarations": { - "items": { - "$ref": "#/components/schemas/FunctionDeclaration" - }, - "description": "Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role \"function\" generation context for the next model turn.", - "type": "array" + "mimeType": { + "description": "MIME type of the generatedFile.", + "type": "string" }, - "urlContext": { - "description": "Optional. Tool to support URL context retrieval.", - "$ref": "#/components/schemas/UrlContext" + "error": { + "description": "Error details if the GeneratedFile ends up in the STATE_FAILED state.", + "$ref": "#/components/schemas/Status" } } }, - "InlinedResponses": { + "CreateEnvironmentRequest": { "properties": { - "inlinedResponses": { - "description": "Output only. The responses to the requests in the batch.", - "readOnly": true, + "networkAllowlist": { + "description": "Allow only specific domains.", + "$ref": "#/components/schemas/EnvironmentNetworkEgressAllowlist" + }, + "sources": { + "description": "Sources to be mounted into the environment.", "type": "array", "items": { - "$ref": "#/components/schemas/InlinedResponse" + "$ref": "#/components/schemas/Source" } + }, + "networkMode": { + "description": "Network egress mode.", + "type": "string", + "enum": [ + "NETWORK_MODE_UNSPECIFIED", + "DISABLED" + ], + "x-enum-descriptions": [ + "Default value. Unused.", + "All network egress is blocked." + ] } }, - "type": "object", - "description": "The responses to the requests in the batch." + "description": "Request for `CreateEnvironment`.", + "type": "object" }, "ComputerUse": { - "type": "object", "description": "Computer Use tool type.", + "type": "object", "properties": { - "excludedPredefinedFunctions": { - "description": "Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions.", - "type": "array", - "items": { - "type": "string" - } - }, "environment": { "x-enum-descriptions": [ "Defaults to browser.", @@ -5629,26 +5090,27 @@ "Operates in a desktop environment." ], "description": "Required. The environment being operated.", + "type": "string", "enum": [ "ENVIRONMENT_UNSPECIFIED", "ENVIRONMENT_BROWSER", "ENVIRONMENT_MOBILE", "ENVIRONMENT_DESKTOP" - ], - "type": "string" + ] + }, + "excludedPredefinedFunctions": { + "description": "Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions.", + "type": "array", + "items": { + "type": "string" + } + }, + "enablePromptInjectionDetection": { + "description": "Optional. Whether enable the prompt injection detection check on computer-use request.", + "type": "boolean" }, "disabledSafetyPolicies": { "items": { - "x-enum-descriptions": [ - "Unspecified safety policy.", - "Safety policy for financial transactions.", - "Safety policy for sensitive data modification.", - "Safety policy for communication tools (e.g. Gmail, Chat, Meet).", - "Safety policy for account creation.", - "Safety policy for data modification.", - "Safety policy for user consent management.", - "Safety policy for legal terms and agreements." - ], "type": "string", "enum": [ "SAFETY_POLICY_UNSPECIFIED", @@ -5659,1024 +5121,1582 @@ "DATA_MODIFICATION", "USER_CONSENT_MANAGEMENT", "LEGAL_TERMS_AND_AGREEMENTS" - ] - }, - "type": "array", - "description": "Optional. Disabled safety policies for computer use." - }, - "enablePromptInjectionDetection": { - "description": "Optional. Whether enable the prompt injection detection check on computer-use request.", - "type": "boolean" + ], + "x-enum-descriptions": [ + "Unspecified safety policy.", + "Safety policy for financial transactions.", + "Safety policy for sensitive data modification.", + "Safety policy for communication tools (e.g. Gmail, Chat, Meet).", + "Safety policy for account creation.", + "Safety policy for data modification.", + "Safety policy for user consent management.", + "Safety policy for legal terms and agreements." + ] + }, + "description": "Optional. Disabled safety policies for computer use.", + "type": "array" } } }, - "CreateFileResponse": { + "RetrievalMetadata": { "properties": { - "file": { - "$ref": "#/components/schemas/File", - "description": "Metadata for the created file." + "googleSearchDynamicRetrievalScore": { + "format": "float", + "description": "Optional. Score indicating how likely information from google search could help answer the prompt. The score is in the range [0, 1], where 0 is the least likely and 1 is the most likely. This score is only populated when google search grounding and dynamic retrieval is enabled. It will be compared to the threshold to determine whether to trigger google search.", + "type": "number" } }, - "description": "Response for `CreateFile`.", + "description": "Metadata related to retrieval in the grounding flow.", "type": "object" }, - "ImageResponseFormat": { - "description": "Configuration for image output format.", + "GroundingAttribution": { + "properties": { + "content": { + "description": "Grounding source content that makes up this attribution.", + "$ref": "#/components/schemas/Content" + }, + "sourceId": { + "description": "Output only. Identifier for the source contributing to this attribution.", + "readOnly": true, + "$ref": "#/components/schemas/AttributionSourceId" + } + }, + "description": "Attribution for a source that contributed to an answer.", + "type": "object" + }, + "RetrievedContext": { + "description": "Chunk from context retrieved by the file search tool.", "type": "object", "properties": { - "aspectRatio": { - "x-enum-descriptions": [ - "Default value. This value is unused.", - "1:1 aspect ratio.", - "2:3 aspect ratio.", - "3:2 aspect ratio.", - "3:4 aspect ratio.", - "4:3 aspect ratio.", - "4:5 aspect ratio.", - "5:4 aspect ratio.", - "9:16 aspect ratio.", - "16:9 aspect ratio.", - "21:9 aspect ratio.", - "1:8 aspect ratio.", - "8:1 aspect ratio.", - "1:4 aspect ratio.", - "4:1 aspect ratio." - ], - "type": "string", - "description": "Optional. The aspect ratio for the image output.", - "enum": [ - "ASPECT_RATIO_UNSPECIFIED", - "ASPECT_RATIO_ONE_BY_ONE", - "ASPECT_RATIO_TWO_BY_THREE", - "ASPECT_RATIO_THREE_BY_TWO", - "ASPECT_RATIO_THREE_BY_FOUR", - "ASPECT_RATIO_FOUR_BY_THREE", - "ASPECT_RATIO_FOUR_BY_FIVE", - "ASPECT_RATIO_FIVE_BY_FOUR", - "ASPECT_RATIO_NINE_BY_SIXTEEN", - "ASPECT_RATIO_SIXTEEN_BY_NINE", - "ASPECT_RATIO_TWENTY_ONE_BY_NINE", - "ASPECT_RATIO_ONE_BY_EIGHT", - "ASPECT_RATIO_EIGHT_BY_ONE", - "ASPECT_RATIO_ONE_BY_FOUR", - "ASPECT_RATIO_FOUR_BY_ONE" - ] + "fileSearchStore": { + "description": "Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123`", + "type": "string" }, - "imageSize": { - "x-enum-descriptions": [ - "Default value. This value is unused.", - "512px image size.", - "1K image size.", - "2K image size.", - "4K image size." - ], - "description": "Optional. The size of the image output.", - "enum": [ - "IMAGE_SIZE_UNSPECIFIED", - "IMAGE_SIZE_FIVE_TWELVE", - "IMAGE_SIZE_ONE_K", - "IMAGE_SIZE_TWO_K", - "IMAGE_SIZE_FOUR_K" - ], + "title": { + "description": "Optional. Title of the document.", "type": "string" }, - "delivery": { - "x-enum-descriptions": [ - "Default value. This value is unused.", - "Image data is returned inline in the response.", - "Image data is returned as a URI." - ], - "description": "Optional. The delivery mode for the image output.", + "customMetadata": { + "description": "Optional. User-provided metadata about the retrieved context.", + "type": "array", + "items": { + "$ref": "#/components/schemas/GroundingChunkCustomMetadata" + } + }, + "pageNumber": { + "format": "int32", + "description": "Optional. Page number of the retrieved context, if applicable.", + "type": "integer" + }, + "mediaId": { + "description": "Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id}", + "type": "string" + }, + "uri": { + "description": "Optional. URI reference of the semantic retrieval document.", + "type": "string" + }, + "text": { + "description": "Optional. Text of the chunk.", + "type": "string" + } + } + }, + "Source": { + "properties": { + "type": { + "type": "string", "enum": [ - "DELIVERY_UNSPECIFIED", + "TYPE_UNSPECIFIED", + "GCS", "INLINE", - "URI" + "REPOSITORY" ], + "x-enum-descriptions": [ + "", + "A GCS bucket.", + "Inline content.", + "A generic repository. The protocol prefix in the source URL identifies the provider (e.g., github://, gcs://)." + ] + }, + "content": { + "description": "The inline content if `type` is `INLINE`.", "type": "string" }, - "mimeType": { + "encoding": { + "description": "Optional encoding for inline content (e.g. `base64`).", + "type": "string" + }, + "target": { + "description": "Where the source should appear in the environment.", + "type": "string" + }, + "source": { + "description": "The source of the environment. For GCS, this is the GCS path. For GitHub, this is the GitHub path.", + "type": "string" + } + }, + "description": "A source to be mounted into the environment.", + "type": "object" + }, + "StreamableHttpTransport": { + "description": "A transport that can stream HTTP requests and responses. Next ID: 6", + "type": "object", + "properties": { + "headers": { + "description": "Optional: Fields for authentication headers, timeouts, etc., if needed.", + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "terminateOnClose": { + "description": "Whether to close the client session when the transport closes.", + "type": "boolean" + }, + "url": { + "description": "The full URL for the MCPServer endpoint. Example: \"https://api.example.com/mcp\"", + "type": "string" + }, + "sseReadTimeout": { + "format": "google-duration", + "description": "Timeout for SSE read operations.", + "type": "string" + }, + "timeout": { + "format": "google-duration", + "description": "HTTP timeout for regular operations.", + "type": "string" + } + } + }, + "GoogleAiGenerativelanguageV1betaSegment": { + "description": "Segment of the content.", + "type": "object", + "properties": { + "startIndex": { + "format": "int32", + "description": "Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero.", + "type": "integer" + }, + "partIndex": { + "format": "int32", + "description": "The index of a Part object within its parent Content object.", + "type": "integer" + }, + "endIndex": { + "format": "int32", + "description": "End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero.", + "type": "integer" + }, + "text": { + "description": "The text corresponding to the segment from the response.", + "type": "string" + } + } + }, + "InputEmbedContentConfig": { + "description": "Configures the input to the batch request.", + "type": "object", + "properties": { + "requests": { + "description": "The requests to be processed in the batch.", + "$ref": "#/components/schemas/InlinedEmbedContentRequests" + }, + "fileName": { + "description": "The name of the `File` containing the input requests.", + "type": "string" + } + } + }, + "InlinedEmbedContentRequests": { + "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "type": "object", + "properties": { + "requests": { + "description": "Required. The requests to be processed in the batch.", + "type": "array", + "items": { + "$ref": "#/components/schemas/InlinedEmbedContentRequest" + } + } + } + }, + "FunctionCallingConfig": { + "description": "Configuration for specifying function calling behavior.", + "type": "object", + "properties": { + "mode": { "x-enum-descriptions": [ - "Default value. This value is unused.", - "JPEG image format." + "Unspecified function calling mode. This value should not be used.", + "Default model behavior, model decides to predict either a function call or a natural language response.", + "Model is constrained to always predicting a function call only. If \"allowed_function_names\" are set, the predicted function call will be limited to any one of \"allowed_function_names\", else the predicted function call will be any one of the provided \"function_declarations\".", + "Model will not predict any function call. Model behavior is same as when not passing any function declarations.", + "Model decides to predict either a function call or a natural language response, but will validate function calls with constrained decoding. If \"allowed_function_names\" are set, the predicted function call will be limited to any one of \"allowed_function_names\", else the predicted function call will be any one of the provided \"function_declarations\"." ], + "description": "Optional. Specifies the mode in which function calling should execute. If unspecified, the default value will be set to AUTO.", "type": "string", - "description": "Optional. The MIME type of the image output.", "enum": [ - "MIME_TYPE_UNSPECIFIED", - "IMAGE_JPEG" + "MODE_UNSPECIFIED", + "AUTO", + "ANY", + "NONE", + "VALIDATED" ] + }, + "allowedFunctionNames": { + "description": "Optional. A set of function names that, when provided, limits the functions the model will call. This should only be set when the Mode is ANY or VALIDATED. Function names should match [FunctionDeclaration.name]. When set, model will predict a function call from only allowed function names.", + "type": "array", + "items": { + "type": "string" + } } } }, - "EmbeddingUsageMetadata": { + "FunctionDeclaration": { "properties": { - "promptTokenCount": { - "description": "Output only. Number of tokens in the prompt.", - "readOnly": true, - "type": "integer", - "format": "int32" + "responseJsonSchema": { + "description": "Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`." }, - "promptTokenDetails": { - "description": "Output only. List of modalities that were processed in the request input.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "name": { + "description": "Required. The name of the function. Must be a-z, A-Z, 0-9, or contain underscores, colons, dots, and dashes, with a maximum length of 128.", + "type": "string" + }, + "description": { + "description": "Required. A brief description of the function.", + "type": "string" + }, + "response": { + "description": "Optional. Describes the output from this function in JSON Schema format. Reflects the Open API 3.03 Response Object. The Schema defines the type used for the response value of the function.", + "$ref": "#/components/schemas/Schema" + }, + "parametersJsonSchema": { + "description": "Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"age\": { \"type\": \"integer\" } }, \"additionalProperties\": false, \"required\": [\"name\", \"age\"], \"propertyOrdering\": [\"name\", \"age\"] } ``` This field is mutually exclusive with `parameters`." + }, + "parameters": { + "description": "Optional. Describes the parameters to this function. Reflects the Open API 3.03 Parameter Object string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter.", + "$ref": "#/components/schemas/Schema" + }, + "behavior": { + "description": "Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method.", + "type": "string", + "enum": [ + "UNSPECIFIED", + "BLOCKING", + "NON_BLOCKING" + ], + "x-enum-descriptions": [ + "This value is unused.", + "If set, the system will wait to receive the function response before continuing the conversation.", + "If set, the system will not wait to receive the function response. Instead, it will attempt to handle function responses as they become available while maintaining the conversation between the user and the model." + ] + } + }, + "description": "Structured representation of a function declaration as defined by the [OpenAPI 3.03 specification](https://spec.openapis.org/oas/v3.0.3). Included in this declaration are the function name and parameters. This FunctionDeclaration is a representation of a block of code that can be used as a `Tool` by the model and executed by the client.", + "type": "object" + }, + "InlinedRequest": { + "properties": { + "request": { + "description": "Required. The request to be processed in the batch.", + "$ref": "#/components/schemas/GenerateContentRequest" + }, + "metadata": { + "description": "Optional. The metadata to be associated with the request.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object." } } }, - "description": "Metadata on the usage of the embedding request.", + "description": "The request to be processed in the batch.", "type": "object" }, - "EmbedContentBatchStats": { - "description": "Stats about the batch.", + "FunctionResponsePart": { + "properties": { + "inlineData": { + "description": "Inline media bytes.", + "$ref": "#/components/schemas/FunctionResponseBlob" + } + }, + "description": "A datatype containing media that is part of a `FunctionResponse` message. A `FunctionResponsePart` consists of data which has an associated datatype. A `FunctionResponsePart` can only contain one of the accepted types in `FunctionResponsePart.data`. A `FunctionResponsePart` must have a fixed IANA MIME type identifying the type and subtype of the media if the `inline_data` field is filled with raw bytes.", + "type": "object" + }, + "FunctionCall": { + "properties": { + "name": { + "description": "Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 128.", + "type": "string" + }, + "args": { + "description": "Optional. The function parameters and values in JSON object format.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + } + }, + "id": { + "description": "Optional. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`.", + "type": "string" + } + }, + "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values.", + "type": "object" + }, + "EgressRule": { + "properties": { + "transform": { + "additionalProperties": { + "type": "string" + }, + "description": "Headers to inject into requests matching this rule. Key: header name (e.g., \"Authorization\"). Value: header value (e.g., \"Bearer your-token\").", + "type": "object" + }, + "domain": { + "description": "The domain pattern to match for this rule. Use an exact hostname (e.g., `github.com`), a wildcard prefix (e.g., `*.googleapis.com`), or `*` to match all domains.", + "type": "string" + } + }, + "description": "A network egress rule that controls which external domains the environment is allowed to reach. Each rule identifies a target domain and, optionally, a set of HTTP headers to inject into every matching outbound request.", + "type": "object" + }, + "TranslationConfig": { + "properties": { + "echoTargetLanguage": { + "description": "Optional. If true, the model will generate audio when the target language is spoken, essentially it will parrot the input. If false, we will not produce audio for the target language.", + "type": "boolean" + }, + "targetLanguageCode": { + "description": "Required. The target language for translation. Supported values are BCP-47 language codes (e.g. \"en\", \"es\", \"fr\").", + "type": "string" + } + }, + "description": "Config for translation features.", + "type": "object" + }, + "Maps": { + "description": "A grounding chunk from Google Maps. A Maps chunk corresponds to a single place.", "type": "object", "properties": { - "requestCount": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The number of requests in the batch." + "uri": { + "description": "URI reference of the place.", + "type": "string" }, - "successfulRequestCount": { - "description": "Output only. The number of requests that were successfully processed.", - "readOnly": true, - "type": "string", - "format": "int64" + "text": { + "description": "Text description of the place answer.", + "type": "string" }, - "pendingRequestCount": { - "description": "Output only. The number of requests that are still pending processing.", - "readOnly": true, - "type": "string", - "format": "int64" + "placeAnswerSources": { + "description": "Sources that provide answers about the features of a given place in Google Maps.", + "$ref": "#/components/schemas/PlaceAnswerSources" }, - "failedRequestCount": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The number of requests that failed to be processed." + "title": { + "description": "Title of the place.", + "type": "string" + }, + "placeId": { + "description": "The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place.", + "type": "string" + } + } + }, + "PlaceAnswerSources": { + "description": "Collection of sources that provide answers about the features of a given place in Google Maps. Each PlaceAnswerSources message corresponds to a specific place in Google Maps. The Google Maps tool used these sources in order to answer questions about features of the place (e.g: \"does Bar Foo have Wifi\" or \"is Foo Bar wheelchair accessible?\"). Currently we only support review snippets as sources.", + "type": "object", + "properties": { + "reviewSnippets": { + "items": { + "$ref": "#/components/schemas/ReviewSnippet" + }, + "description": "Snippets of reviews that are used to generate answers about the features of a given place in Google Maps.", + "type": "array" } } }, - "ReviewSnippet": { + "CachedContentUsageMetadata": { "properties": { - "googleMapsUri": { - "description": "A link that corresponds to the user review on Google Maps.", - "type": "string" - }, - "reviewId": { - "type": "string", - "description": "The ID of the review snippet." - }, - "title": { - "type": "string", - "description": "Title of the review." + "totalTokenCount": { + "format": "int32", + "description": "Total number of tokens that the cached content consumes.", + "type": "integer" } }, - "description": "Encapsulates a snippet of a user review that answers a question about the features of a specific place in Google Maps.", + "description": "Metadata on the usage of the cached content.", "type": "object" }, - "ModalityTokenCount": { - "type": "object", - "description": "Represents token counting info for a single modality.", + "CustomMetadata": { "properties": { - "modality": { - "x-enum-descriptions": [ - "Unspecified modality.", - "Plain text.", - "Image.", - "Video.", - "Audio.", - "Document, e.g. PDF." - ], - "type": "string", - "description": "The modality associated with this token count.", - "enum": [ - "MODALITY_UNSPECIFIED", - "TEXT", - "IMAGE", - "VIDEO", - "AUDIO", - "DOCUMENT" - ] + "numericValue": { + "format": "float", + "description": "The numeric value of the metadata to store.", + "type": "number" }, - "tokenCount": { - "description": "Number of tokens.", - "type": "integer", - "format": "int32" + "stringValue": { + "description": "The string value of the metadata to store.", + "type": "string" + }, + "key": { + "description": "Required. The key of the metadata to store.", + "type": "string" + }, + "stringListValue": { + "description": "The StringList value of the metadata to store.", + "$ref": "#/components/schemas/StringList" } - } + }, + "description": "User provided metadata stored as key-value pairs.", + "type": "object" }, - "FunctionResponseBlob": { - "description": "Raw media bytes for function response. Text should not be sent as raw bytes, use the 'FunctionResponse.response' field.", + "Image": { + "description": "Chunk from image search.", "type": "object", "properties": { - "mimeType": { - "description": "The IANA standard MIME type of the source data. Examples: - image/png - image/jpeg If an unsupported MIME type is provided, an error will be returned. For a complete list of supported types, see [Supported file formats](https://ai.google.dev/gemini-api/docs/prompting_with_media#supported_file_formats).", + "imageUri": { + "description": "The image asset URL.", "type": "string" }, - "data": { - "description": "Raw bytes for media formats.", - "type": "string", - "format": "byte" + "domain": { + "description": "The root domain of the web page that the image is from, e.g. \"example.com\".", + "type": "string" + }, + "title": { + "description": "The title of the web page that the image is from.", + "type": "string" + }, + "sourceUri": { + "description": "The web page URI for attribution.", + "type": "string" } } }, - "Environment": { + "AutomaticActivityDetection": { + "description": "Configures automatic detection of activity.", "type": "object", - "description": "An execution environment for an agent.", "properties": { - "sizeBytes": { - "readOnly": true, + "startOfSpeechSensitivity": { + "x-enum-descriptions": [ + "The default is START_SENSITIVITY_HIGH.", + "Automatic detection will detect the start of speech more often.", + "Automatic detection will detect the start of speech less often." + ], + "description": "Optional. Determines how likely speech is to be detected.", "type": "string", - "format": "int64", - "description": "Output only. The total size of the environment files in bytes, output only." - }, - "updated": { - "description": "Output only. The time at which the environment was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", - "readOnly": true, - "type": "string" - }, - "created": { - "description": "Output only. The time at which the environment was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", - "readOnly": true, - "type": "string" + "enum": [ + "START_SENSITIVITY_UNSPECIFIED", + "START_SENSITIVITY_HIGH", + "START_SENSITIVITY_LOW" + ] }, - "lastAccessed": { - "description": "Output only. The time at which the environment was last accessed in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ).", - "readOnly": true, - "type": "string" + "silenceDurationMs": { + "description": "Optional. The required duration of detected non-speech (e.g. silence) before end-of-speech is committed. The larger this value, the longer speech gaps can be without interrupting the user's activity but this will increase the model's latency.", + "type": "integer", + "format": "int32" }, - "sources": { - "description": "Sources to be mounted into the environment.", - "type": "array", - "items": { - "$ref": "#/components/schemas/Source" - } + "prefixPaddingMs": { + "format": "int32", + "description": "Optional. The required duration of detected speech before start-of-speech is committed. The lower this value, the more sensitive the start-of-speech detection is and shorter speech can be recognized. However, this also increases the probability of false positives.", + "type": "integer" }, - "fileCount": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The number of files in the environment, output only." + "disabled": { + "description": "Optional. If enabled (the default), detected voice and text input count as activity. If disabled, the client must send activity signals.", + "type": "boolean" }, - "network_mode": { + "endOfSpeechSensitivity": { + "description": "Optional. Determines how likely detected speech is ended.", "type": "string", - "description": "Network egress mode.", "enum": [ - "NETWORK_MODE_UNSPECIFIED", - "DISABLED" + "END_SENSITIVITY_UNSPECIFIED", + "END_SENSITIVITY_HIGH", + "END_SENSITIVITY_LOW" ], "x-enum-descriptions": [ - "Default value. Unused.", - "All network egress is blocked." + "The default is END_SENSITIVITY_HIGH.", + "Automatic detection ends speech more often.", + "Automatic detection ends speech less often." ] - }, - "network_allowlist": { - "$ref": "#/components/schemas/EnvironmentNetworkEgressAllowlist", - "description": "Allow only specific domains." - }, - "id": { - "readOnly": true, - "type": "string", - "description": "Required. Output only. The ID of the environment." - }, - "status": { - "x-enum-descriptions": [ - "", - "", - "" - ], - "readOnly": true, - "description": "Output only. The status of the environment container.", - "enum": [ - "STATUS_UNSPECIFIED", - "ACTIVE", - "EXPIRED" - ], - "type": "string" - } - } - }, - "GroundingAttribution": { - "description": "Attribution for a source that contributed to an answer.", - "type": "object", - "properties": { - "sourceId": { - "readOnly": true, - "$ref": "#/components/schemas/AttributionSourceId", - "description": "Output only. Identifier for the source contributing to this attribution." - }, - "content": { - "$ref": "#/components/schemas/Content", - "description": "Grounding source content that makes up this attribution." } } }, - "InputEmbedContentConfig": { + "VideoFileMetadata": { "properties": { - "requests": { - "description": "The requests to be processed in the batch.", - "$ref": "#/components/schemas/InlinedEmbedContentRequests" - }, - "fileName": { - "description": "The name of the `File` containing the input requests.", - "type": "string" + "videoDuration": { + "description": "Duration of the video.", + "type": "string", + "format": "google-duration" } }, - "type": "object", - "description": "Configures the input to the batch request." + "description": "Metadata for a video `File`.", + "type": "object" }, - "Schema": { - "properties": { - "type": { - "x-enum-descriptions": [ - "Not specified, should not be used.", - "String type.", - "Number type.", - "Integer type.", - "Boolean type.", - "Array type.", - "Object type.", - "Null type." - ], - "description": "Required. Data type.", - "enum": [ - "TYPE_UNSPECIFIED", - "STRING", - "NUMBER", - "INTEGER", - "BOOLEAN", - "ARRAY", - "OBJECT", - "NULL" - ], - "type": "string" - }, - "required": { - "type": "array", - "description": "Optional. Required properties of Type.OBJECT.", - "items": { - "type": "string" - } - }, - "anyOf": { - "type": "array", - "description": "Optional. The value should be validated against any (one or more) of the subschemas in the list.", - "items": { - "$ref": "#/components/schemas/Schema" - } - }, - "description": { - "description": "Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown.", - "type": "string" - }, - "items": { - "$ref": "#/components/schemas/Schema", - "description": "Optional. Schema of the elements of Type.ARRAY." - }, - "maximum": { - "description": "Optional. Maximum value of the Type.INTEGER and Type.NUMBER", - "type": "number", - "format": "double" - }, - "properties": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Schema" - }, - "description": "Optional. Properties of Type.OBJECT." + "GenerateContentBatchOutput": { + "description": "The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field.", + "type": "object", + "properties": { + "responsesFile": { + "description": "Output only. The file ID of the file containing the responses. The file will be a JSONL file with a single response per line. The responses will be `GenerateContentResponse` messages formatted as JSON. The responses will be written in the same order as the input requests.", + "readOnly": true, + "type": "string" }, - "minimum": { - "description": "Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER", - "type": "number", - "format": "double" + "inlinedResponses": { + "description": "Output only. The responses to the requests in the batch. Returned when the batch was built using inlined requests. The responses will be in the same order as the input requests.", + "readOnly": true, + "$ref": "#/components/schemas/InlinedResponses" + } + } + }, + "File": { + "properties": { + "createTime": { + "format": "google-datetime", + "description": "Output only. The timestamp of when the `File` was created.", + "readOnly": true, + "type": "string" }, - "enum": { - "items": { - "type": "string" - }, - "description": "Optional. Possible values of the element of Type.STRING with enum format. For example we can define an Enum Direction as : {type:STRING, format:enum, enum:[\"EAST\", NORTH\", \"SOUTH\", \"WEST\"]}", - "type": "array" + "videoMetadata": { + "$ref": "#/components/schemas/VideoFileMetadata", + "description": "Output only. Metadata for a video.", + "readOnly": true }, - "pattern": { - "description": "Optional. Pattern of the Type.STRING to restrict a string to a regular expression.", + "mimeType": { + "description": "Output only. MIME type of the file.", + "readOnly": true, "type": "string" }, - "minProperties": { - "type": "string", - "format": "int64", - "description": "Optional. Minimum number of the properties for Type.OBJECT." + "uri": { + "description": "Output only. The uri of the `File`.", + "readOnly": true, + "type": "string" }, - "minItems": { - "description": "Optional. Minimum number of the elements for Type.ARRAY.", + "sizeBytes": { + "description": "Output only. Size of the file in bytes.", + "readOnly": true, "type": "string", "format": "int64" }, - "propertyOrdering": { - "items": { - "type": "string" - }, - "type": "array", - "description": "Optional. The order of the properties. Not a standard field in open api spec. Used to determine the order of the properties in the response." - }, - "maxItems": { - "description": "Optional. Maximum number of the elements for Type.ARRAY.", + "state": { + "x-enum-descriptions": [ + "The default value. This value is used if the state is omitted.", + "File is being processed and cannot be used for inference yet.", + "File is processed and available for inference.", + "File failed processing." + ], + "description": "Output only. Processing state of the File.", "type": "string", - "format": "int64" + "enum": [ + "STATE_UNSPECIFIED", + "PROCESSING", + "ACTIVE", + "FAILED" + ], + "readOnly": true }, - "maxProperties": { - "type": "string", - "format": "int64", - "description": "Optional. Maximum number of the properties for Type.OBJECT." + "error": { + "$ref": "#/components/schemas/Status", + "description": "Output only. Error status if File processing failed.", + "readOnly": true }, - "maxLength": { - "type": "string", - "format": "int64", - "description": "Optional. Maximum length of the Type.STRING" + "expirationTime": { + "format": "google-datetime", + "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.", + "readOnly": true, + "type": "string" }, - "title": { - "type": "string", - "description": "Optional. The title of the schema." + "updateTime": { + "format": "google-datetime", + "description": "Output only. The timestamp of when the `File` was last updated.", + "readOnly": true, + "type": "string" }, - "nullable": { - "description": "Optional. Indicates if the value may be null.", - "type": "boolean" + "downloadUri": { + "description": "Output only. The download uri of the `File`.", + "readOnly": true, + "type": "string" }, - "example": { - "description": "Optional. Example of the object. Will only populated when the object is the root." + "source": { + "x-enum-descriptions": [ + "Used if source is not specified.", + "Indicates the file is uploaded by the user.", + "Indicates the file is generated by Google.", + "Indicates the file is a registered, i.e. a Google Cloud Storage file." + ], + "description": "Source of the File.", + "type": "string", + "enum": [ + "SOURCE_UNSPECIFIED", + "UPLOADED", + "GENERATED", + "REGISTERED" + ] }, - "default": { - "description": "Optional. Default value of the field. Per JSON Schema, this field is intended for documentation generators and doesn't affect validation. Thus it's included here and ignored so that developers who send schemas with a `default` field don't get unknown-field errors." + "displayName": { + "description": "Optional. The human-readable display name for the `File`. The display name must be no more than 512 characters in length, including spaces. Example: \"Welcome Image\"", + "type": "string" }, - "minLength": { - "description": "Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING", + "sha256Hash": { + "description": "Output only. SHA-256 hash of the uploaded bytes.", + "readOnly": true, "type": "string", - "format": "int64" + "format": "byte" }, - "format": { - "type": "string", - "description": "Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality." + "name": { + "description": "Immutable. Identifier. The `File` resource name. The ID (name excluding the \"files/\" prefix) can contain up to 40 characters that are lowercase alphanumeric or dashes (-). The ID cannot start or end with a dash. If the name is empty on create, a unique name will be generated. Example: `files/123-456`", + "type": "string" } }, - "type": "object", - "description": "The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema)." + "description": "A file uploaded to the API. Next ID: 15", + "type": "object" }, - "GoogleAiGenerativelanguageV1betaSegment": { + "LogprobsResult": { + "description": "Logprobs Result", + "type": "object", "properties": { - "startIndex": { - "type": "integer", - "format": "int32", - "description": "Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero." + "logProbabilitySum": { + "description": "Sum of log probabilities for all tokens.", + "type": "number", + "format": "float" }, - "partIndex": { - "description": "The index of a Part object within its parent Content object.", - "type": "integer", - "format": "int32" + "topCandidates": { + "description": "Length = total number of decoding steps.", + "type": "array", + "items": { + "$ref": "#/components/schemas/TopCandidates" + } }, - "endIndex": { - "type": "integer", - "format": "int32", - "description": "End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero." + "chosenCandidates": { + "description": "Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates.", + "type": "array", + "items": { + "$ref": "#/components/schemas/LogprobsResultCandidate" + } + } + } + }, + "InlinedEmbedContentRequest": { + "properties": { + "request": { + "description": "Required. The request to be processed in the batch.", + "$ref": "#/components/schemas/EmbedContentRequest" }, - "text": { - "description": "The text corresponding to the segment from the response.", - "type": "string" + "metadata": { + "description": "Optional. The metadata to be associated with the request.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + } } }, - "type": "object", - "description": "Segment of the content." + "description": "The request to be processed in the batch.", + "type": "object" }, - "TransferOwnershipRequest": { - "description": "Request to transfer the ownership of the tuned model.", - "type": "object", + "ListFilesResponse": { "properties": { - "emailAddress": { - "type": "string", - "description": "Required. The email address of the user to whom the tuned model is being transferred to." + "files": { + "description": "The list of `File`s.", + "type": "array", + "items": { + "$ref": "#/components/schemas/File" + } + }, + "nextPageToken": { + "description": "A token that can be sent as a `page_token` into a subsequent `ListFiles` call.", + "type": "string" } - } + }, + "description": "Response for `ListFiles`.", + "type": "object" }, - "RegisterFilesRequest": { - "description": "Request for `RegisterFiles`.", + "MultiSpeakerVoiceConfig": { + "description": "The configuration for the multi-speaker setup.", "type": "object", "properties": { - "uris": { - "type": "array", - "description": "Required. The Google Cloud Storage URIs to register. Example: `gs://bucket/object`.", + "speakerVoiceConfigs": { "items": { - "type": "string" - } + "$ref": "#/components/schemas/SpeakerVoiceConfig" + }, + "description": "Required. All the enabled speaker voices.", + "type": "array" } } }, - "TunedModelSource": { + "ListDocumentsResponse": { + "description": "Response from `ListDocuments` containing a paginated list of `Document`s. The `Document`s are sorted by ascending `document.create_time`.", "type": "object", - "description": "Tuned model as a source for training a new model.", "properties": { - "tunedModel": { - "type": "string", - "description": "Immutable. The name of the `TunedModel` to use as the starting point for training the new model. Example: `tunedModels/my-tuned-model`" + "documents": { + "description": "The returned `Document`s.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Document" + } }, - "baseModel": { - "description": "Output only. The name of the base `Model` this `TunedModel` was tuned from. Example: `models/gemini-1.5-flash-001`", - "readOnly": true, + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", "type": "string" } } }, - "GoogleMaps": { + "ToolResponse": { "properties": { - "enableWidget": { - "type": "boolean", - "description": "Optional. Whether to return a widget context token in the GroundingMetadata of the response. Developers can use the widget context token to render a Google Maps widget with geospatial context related to the places that the model references in the response." + "id": { + "description": "Optional. The identifier of the tool call this response is for.", + "type": "string" + }, + "response": { + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Optional. The tool response.", + "type": "object" + }, + "toolType": { + "description": "Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`.", + "type": "string", + "enum": [ + "TOOL_TYPE_UNSPECIFIED", + "GOOGLE_SEARCH_WEB", + "GOOGLE_SEARCH_IMAGE", + "URL_CONTEXT", + "GOOGLE_MAPS", + "FILE_SEARCH" + ], + "x-enum-descriptions": [ + "Unspecified tool type.", + "Google search tool, maps to Tool.google_search.search_types.web_search.", + "Image search tool, maps to Tool.google_search.search_types.image_search.", + "URL context tool, maps to Tool.url_context.", + "Google maps tool, maps to Tool.google_maps.", + "File search tool, maps to Tool.file_search." + ] } }, - "type": "object", - "description": "The GoogleMaps Tool that provides geospatial context for the user's query." - }, - "LanguageAuto": { - "properties": {}, - "description": "Indicates the language of the audio should be automatically detected.", - "deprecated": true, + "description": "The output from a server-side `ToolCall` execution. This message contains the results of a tool invocation that was initiated by a `ToolCall` from the model. The client should pass this `ToolResponse` back to the API in a subsequent turn within a `Content` message, along with the corresponding `ToolCall`.", "type": "object" }, - "SessionResumptionConfig": { + "RegisterFilesRequest": { "properties": { - "handle": { - "description": "The handle of a previous session. If not present then a new session is created. Session handles come from `SessionResumptionUpdate.token` values in previous connections.", - "type": "string" + "uris": { + "items": { + "type": "string" + }, + "description": "Required. The Google Cloud Storage URIs to register. Example: `gs://bucket/object`.", + "type": "array" } }, - "description": "Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages.", + "description": "Request for `RegisterFiles`.", "type": "object" }, - "ChunkingConfig": { + "UrlContext": { + "description": "Tool to support URL context retrieval.", + "type": "object", + "properties": {} + }, + "Web": { "properties": { - "whiteSpaceConfig": { - "$ref": "#/components/schemas/WhiteSpaceConfig", - "description": "White space chunking configuration." + "uri": { + "description": "Output only. URI reference of the chunk.", + "readOnly": true, + "type": "string" + }, + "title": { + "description": "Output only. Title of the chunk.", + "readOnly": true, + "type": "string" } }, - "description": "Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto", + "description": "Chunk from the web.", "type": "object" }, - "ContextWindowCompressionConfig": { + "FileSearchStore": { + "description": "A `FileSearchStore` is a collection of `Document`s.", + "type": "object", "properties": { - "triggerTokens": { - "description": "The number of tokens (before running a turn) required to trigger a context window compression. This can be used to balance quality against latency as shorter context windows may result in faster model responses. However, any compression operation will cause a temporary latency increase, so they should not be triggered frequently. If not set, the default is 80% of the model's context window limit. This leaves 20% for the next user request/model response.", + "sizeBytes": { + "format": "int64", + "description": "Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`.", + "readOnly": true, + "type": "string" + }, + "name": { + "description": "Output only. Immutable. Identifier. The `FileSearchStore` resource name. It is an ID (name excluding the \"fileSearchStores/\" prefix) that can contain up to 40 characters that are lowercase alphanumeric or dashes (-). It is output only. The unique name will be derived from `display_name` along with a 12 character random suffix. Example: `fileSearchStores/my-awesome-file-search-store-123a456b789c` If `display_name` is not provided, the name will be randomly generated.", + "readOnly": true, + "type": "string" + }, + "displayName": { + "description": "Optional. The human-readable display name for the `FileSearchStore`. The display name must be no more than 512 characters in length, including spaces. Example: \"Docs on Semantic Retriever\"", + "type": "string" + }, + "embeddingModel": { + "description": "Optional. The embedding model to use for the `FileSearchStore`. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`. If not specified, the default embedding model will be used.", + "type": "string" + }, + "createTime": { + "format": "google-datetime", + "description": "Output only. The Timestamp of when the `FileSearchStore` was created.", + "readOnly": true, + "type": "string" + }, + "activeDocumentsCount": { + "description": "Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.", + "readOnly": true, "type": "string", "format": "int64" }, - "slidingWindow": { - "$ref": "#/components/schemas/SlidingWindow", - "description": "A sliding-window mechanism." + "failedDocumentsCount": { + "format": "int64", + "description": "Output only. The number of documents in the `FileSearchStore` that have failed processing.", + "readOnly": true, + "type": "string" + }, + "updateTime": { + "format": "google-datetime", + "description": "Output only. The Timestamp of when the `FileSearchStore` was last updated.", + "readOnly": true, + "type": "string" + }, + "pendingDocumentsCount": { + "description": "Output only. The number of documents in the `FileSearchStore` that are being processed.", + "readOnly": true, + "type": "string", + "format": "int64" } - }, - "type": "object", - "description": "Enables context window compression \u2014 a mechanism for managing the model's context window so that it does not exceed a given length." + } }, - "ImportFileRequest": { - "description": "Request for `ImportFile` to import a File API file with a `FileSearchStore`.", - "type": "object", + "ReviewSnippet": { "properties": { - "fileName": { - "type": "string", - "description": "Required. The name of the `File` to import. Example: `files/abc-123`" + "reviewId": { + "description": "The ID of the review snippet.", + "type": "string" }, - "customMetadata": { - "items": { - "$ref": "#/components/schemas/CustomMetadata" - }, - "type": "array", - "description": "Custom metadata to be associated with the file." + "googleMapsUri": { + "description": "A link that corresponds to the user review on Google Maps.", + "type": "string" }, - "chunkingConfig": { - "$ref": "#/components/schemas/ChunkingConfig", - "description": "Optional. Config for telling the service how to chunk the file. If not provided, the service will use default parameters." + "title": { + "description": "Title of the review.", + "type": "string" } - } + }, + "description": "Encapsulates a snippet of a user review that answers a question about the features of a specific place in Google Maps.", + "type": "object" }, - "ListEnvironmentsResponse": { + "ResponseFormatConfig": { + "description": "Configuration for the response output format. This is a flat object where each optional sub-field configures a specific output modality.", "type": "object", - "description": "Response for `ListEnvironments`.", "properties": { - "environments": { - "description": "Environments belonging to the provided project.", - "type": "array", - "items": { - "$ref": "#/components/schemas/Environment" - } + "image": { + "description": "Optional. Image output format configuration.", + "$ref": "#/components/schemas/ImageResponseFormat" }, - "nextPageToken": { - "type": "string", - "description": "Pagination token." + "text": { + "description": "Optional. Text output format configuration.", + "$ref": "#/components/schemas/TextResponseFormat" + }, + "audio": { + "description": "Optional. Audio output format configuration.", + "$ref": "#/components/schemas/AudioResponseFormat" } } }, - "StreamableHttpTransport": { + "GroundingChunkCustomMetadata": { "properties": { - "url": { - "description": "The full URL for the MCPServer endpoint. Example: \"https://api.example.com/mcp\"", + "stringListValue": { + "description": "Optional. A list of string values for the metadata.", + "$ref": "#/components/schemas/GroundingChunkStringList" + }, + "stringValue": { + "description": "Optional. The string value of the metadata.", "type": "string" }, - "headers": { - "description": "Optional: Fields for authentication headers, timeouts, etc., if needed.", - "type": "object", - "additionalProperties": { - "type": "string" - } + "key": { + "description": "The key of the metadata.", + "type": "string" }, - "terminateOnClose": { - "type": "boolean", - "description": "Whether to close the client session when the transport closes." + "numericValue": { + "format": "float", + "description": "Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used.", + "type": "number" + } + }, + "description": "User provided metadata about the GroundingFact.", + "type": "object" + }, + "ImageResponseFormat": { + "description": "Configuration for image output format.", + "type": "object", + "properties": { + "aspectRatio": { + "x-enum-descriptions": [ + "Default value. This value is unused.", + "1:1 aspect ratio.", + "2:3 aspect ratio.", + "3:2 aspect ratio.", + "3:4 aspect ratio.", + "4:3 aspect ratio.", + "4:5 aspect ratio.", + "5:4 aspect ratio.", + "9:16 aspect ratio.", + "16:9 aspect ratio.", + "21:9 aspect ratio.", + "1:8 aspect ratio.", + "8:1 aspect ratio.", + "1:4 aspect ratio.", + "4:1 aspect ratio." + ], + "description": "Optional. The aspect ratio for the image output.", + "type": "string", + "enum": [ + "ASPECT_RATIO_UNSPECIFIED", + "ASPECT_RATIO_ONE_BY_ONE", + "ASPECT_RATIO_TWO_BY_THREE", + "ASPECT_RATIO_THREE_BY_TWO", + "ASPECT_RATIO_THREE_BY_FOUR", + "ASPECT_RATIO_FOUR_BY_THREE", + "ASPECT_RATIO_FOUR_BY_FIVE", + "ASPECT_RATIO_FIVE_BY_FOUR", + "ASPECT_RATIO_NINE_BY_SIXTEEN", + "ASPECT_RATIO_SIXTEEN_BY_NINE", + "ASPECT_RATIO_TWENTY_ONE_BY_NINE", + "ASPECT_RATIO_ONE_BY_EIGHT", + "ASPECT_RATIO_EIGHT_BY_ONE", + "ASPECT_RATIO_ONE_BY_FOUR", + "ASPECT_RATIO_FOUR_BY_ONE" + ] }, - "sseReadTimeout": { - "description": "Timeout for SSE read operations.", + "mimeType": { + "description": "Optional. The MIME type of the image output.", "type": "string", - "format": "google-duration" + "enum": [ + "MIME_TYPE_UNSPECIFIED", + "IMAGE_JPEG" + ], + "x-enum-descriptions": [ + "Default value. This value is unused.", + "JPEG image format." + ] }, - "timeout": { + "imageSize": { + "description": "Optional. The size of the image output.", "type": "string", - "format": "google-duration", - "description": "HTTP timeout for regular operations." + "enum": [ + "IMAGE_SIZE_UNSPECIFIED", + "IMAGE_SIZE_FIVE_TWELVE", + "IMAGE_SIZE_ONE_K", + "IMAGE_SIZE_TWO_K", + "IMAGE_SIZE_FOUR_K" + ], + "x-enum-descriptions": [ + "Default value. This value is unused.", + "512px image size.", + "1K image size.", + "2K image size.", + "4K image size." + ] + }, + "delivery": { + "x-enum-descriptions": [ + "Default value. This value is unused.", + "Image data is returned inline in the response.", + "Image data is returned as a URI." + ], + "description": "Optional. The delivery mode for the image output.", + "type": "string", + "enum": [ + "DELIVERY_UNSPECIFIED", + "INLINE", + "URI" + ] } - }, + } + }, + "GoogleMaps": { + "description": "The GoogleMaps Tool that provides geospatial context for the user's query.", + "type": "object", + "properties": { + "enableWidget": { + "description": "Optional. Whether to return a widget context token in the GroundingMetadata of the response. Developers can use the widget context token to render a Google Maps widget with geospatial context related to the places that the model references in the response.", + "type": "boolean" + } + } + }, + "BatchEmbedContentsRequest": { + "description": "Batch request to get embeddings from the model for a list of prompts.", "type": "object", - "description": "A transport that can stream HTTP requests and responses. Next ID: 6" + "properties": { + "requests": { + "description": "Required. Embed requests for the batch. The model in each of these requests must match the model specified `BatchEmbedContentsRequest.model`.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EmbedContentRequest" + } + } + } }, - "GenerateContentResponse": { + "EmbedContentBatchStats": { "properties": { - "promptFeedback": { - "$ref": "#/components/schemas/PromptFeedback", - "description": "Returns the prompt's feedback related to the content filters." - }, - "usageMetadata": { - "description": "Output only. Metadata on the generation requests' token usage.", + "successfulRequestCount": { + "format": "int64", + "description": "Output only. The number of requests that were successfully processed.", "readOnly": true, - "$ref": "#/components/schemas/UsageMetadata" + "type": "string" }, - "modelVersion": { + "failedRequestCount": { + "description": "Output only. The number of requests that failed to be processed.", "readOnly": true, "type": "string", - "description": "Output only. The model version used to generate the response." + "format": "int64" }, - "responseId": { - "description": "Output only. response_id is used to identify each response.", + "requestCount": { + "format": "int64", + "description": "Output only. The number of requests in the batch.", "readOnly": true, "type": "string" }, - "candidates": { + "pendingRequestCount": { + "description": "Output only. The number of requests that are still pending processing.", + "readOnly": true, + "type": "string", + "format": "int64" + } + }, + "description": "Stats about the batch.", + "type": "object" + }, + "GoogleAiGenerativelanguageV1betaGroundingSupport": { + "description": "Grounding support.", + "type": "object", + "properties": { + "segment": { + "description": "Segment of the content this support belongs to.", + "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaSegment" + }, + "confidenceScores": { + "description": "Optional. Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices.", + "type": "array", "items": { - "$ref": "#/components/schemas/Candidate" + "type": "number", + "format": "float" + } + }, + "groundingChunkIndices": { + "items": { + "type": "integer", + "format": "int32" }, - "description": "Candidate responses from the model.", + "description": "Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order).", "type": "array" }, - "modelStatus": { + "renderedParts": { + "description": "Output only. Indices into the `parts` field of the candidate's content. These indices specify which rendered parts are associated with this support source.", "readOnly": true, - "$ref": "#/components/schemas/ModelStatus", - "description": "Output only. The current model status of this model." + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } } - }, - "description": "Response from the model supporting multiple candidate responses. Safety ratings and content filtering are reported for both prompt in `GenerateContentResponse.prompt_feedback` and for each candidate in `finish_reason` and in `safety_ratings`. The API: - Returns either all requested candidates or none of them - Returns no candidates at all only if there was something wrong with the prompt (check `prompt_feedback`) - Reports feedback on each candidate in `finish_reason` and `safety_ratings`.", - "type": "object" + } }, - "BidiGenerateContentSetup": { - "description": "Message to be sent in the first (and only in the first) `BidiGenerateContentClientMessage`. Contains configuration that will apply for the duration of the streaming RPC. Clients should wait for a `BidiGenerateContentSetupComplete` message before sending any additional messages.", + "UsageMetadata": { + "description": "Metadata on the generation request's token usage.", "type": "object", "properties": { - "tools": { + "serviceTier": { + "readOnly": true, + "description": "Output only. Service tier of the request.", + "type": "string", + "enum": [ + "unspecified", + "standard", + "flex", + "priority" + ], + "x-enum-descriptions": [ + "Default service tier, which is standard.", + "Standard service tier.", + "Flex service tier.", + "Priority service tier." + ] + }, + "candidatesTokenCount": { + "format": "int32", + "description": "Total number of tokens across all the generated response candidates.", + "type": "integer" + }, + "toolUsePromptTokensDetails": { "items": { - "$ref": "#/components/schemas/Tool" + "$ref": "#/components/schemas/ModalityTokenCount" }, - "description": "Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model.", + "description": "Output only. List of modalities that were processed for tool-use request inputs.", + "readOnly": true, "type": "array" }, - "outputAudioTranscription": { - "description": "Optional. If set, enables transcription of the model's audio output. The transcription aligns with the language code specified for the output audio, if configured.", - "$ref": "#/components/schemas/AudioTranscriptionConfig" + "promptTokenCount": { + "description": "Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content.", + "type": "integer", + "format": "int32" }, - "generationConfig": { - "$ref": "#/components/schemas/GenerationConfig", - "description": "Optional. Generation config. The following fields are not supported: - `response_logprobs` - `response_mime_type` - `logprobs` - `response_schema` - `response_json_schema` - `stop_sequence` - `skip_response_cache` - `routing_config` - `audio_timestamp`" + "totalTokenCount": { + "format": "int32", + "description": "Total token count for the generation request (prompt + thoughts + response candidates).", + "type": "integer" }, - "sessionResumption": { - "description": "Optional. Configures session resumption mechanism. If included, the server will send `SessionResumptionUpdate` messages.", - "$ref": "#/components/schemas/SessionResumptionConfig" + "cacheTokensDetails": { + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + }, + "description": "Output only. List of modalities of the cached content in the request input.", + "readOnly": true, + "type": "array" }, - "model": { - "type": "string", - "description": "Required. The model's resource name. This serves as an ID for the Model to use. Format: `models/{model}`" + "candidatesTokensDetails": { + "description": "Output only. List of modalities that were returned in the response.", + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } }, - "historyConfig": { - "description": "Optional. Configures the exchange of history between the client and the server.", - "$ref": "#/components/schemas/HistoryConfig" + "toolUsePromptTokenCount": { + "format": "int32", + "description": "Output only. Number of tokens present in tool-use prompt(s).", + "readOnly": true, + "type": "integer" }, - "realtimeInputConfig": { - "description": "Optional. Configures the handling of realtime input.", - "$ref": "#/components/schemas/RealtimeInputConfig" + "promptTokensDetails": { + "description": "Output only. List of modalities that were processed in the request input.", + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } }, - "contextWindowCompression": { - "description": "Optional. Configures a context window compression mechanism. If included, the server will automatically reduce the size of the context when it exceeds the configured length.", - "$ref": "#/components/schemas/ContextWindowCompressionConfig" + "cachedContentTokenCount": { + "description": "Number of tokens in the cached part of the prompt (the cached content)", + "type": "integer", + "format": "int32" }, - "systemInstruction": { - "$ref": "#/components/schemas/Content", - "description": "Optional. The user provided system instructions for the model. Note: Only text should be used in parts and content in each part will be in a separate paragraph." + "thoughtsTokenCount": { + "format": "int32", + "description": "Output only. Number of tokens of thoughts for thinking models.", + "readOnly": true, + "type": "integer" }, - "inputAudioTranscription": { - "$ref": "#/components/schemas/AudioTranscriptionConfig", - "description": "Optional. If set, enables transcription of voice input. The transcription aligns with the input audio language, if configured." + "responseTokenCount": { + "description": "Output only. Number of tokens in the response. Used by Gemini 3.1+ Live API models instead of candidatesTokenCount.", + "type": "integer", + "format": "int32", + "readOnly": true + }, + "responseTokensDetails": { + "description": "Output only. List of modalities returned in the response with per-modality token counts. Used by Gemini 3.1+ Live API models instead of candidatesTokensDetails.", + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } } } }, - "TextResponseFormat": { + "RealtimeInputConfig": { "properties": { - "mimeType": { - "description": "Optional. The MIME type of the text output.", - "enum": [ - "MIME_TYPE_UNSPECIFIED", - "APPLICATION_JSON", - "TEXT_PLAIN" + "turnCoverage": { + "x-enum-descriptions": [ + "If unspecified, a default behavior is selected based on the model. E.g., for Gemini 2.5, the default is `TURN_INCLUDES_ONLY_ACTIVITY`, while for Gemini 3.1 and onwards, it's `TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO`.", + "Includes activity since the last turn, excluding inactivity (e.g. silence on the audio stream).", + "Includes all realtime input since the last turn, including inactivity (e.g. silence on the audio stream).", + "Includes audio activity and all video since the last turn. With automatic activity detection, audio activity means speech and excludes silence." ], + "description": "Optional. Defines which input is included in the user's turn.", "type": "string", + "enum": [ + "TURN_COVERAGE_UNSPECIFIED", + "TURN_INCLUDES_ONLY_ACTIVITY", + "TURN_INCLUDES_ALL_INPUT", + "TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO" + ] + }, + "activityHandling": { "x-enum-descriptions": [ - "Default value. This value is unused.", - "JSON output format.", - "Plain text output format." + "If unspecified, the default behavior is `START_OF_ACTIVITY_INTERRUPTS`.", + "If true, start of activity will interrupt the model's response (also called \"barge in\"). The model's current response will be cut-off in the moment of the interruption. This is the default behavior.", + "The model's response will not be interrupted." + ], + "description": "Optional. Defines what effect activity has.", + "type": "string", + "enum": [ + "ACTIVITY_HANDLING_UNSPECIFIED", + "START_OF_ACTIVITY_INTERRUPTS", + "NO_INTERRUPTION" ] }, - "schema": { - "description": "Optional. The JSON schema that the output should conform to. Only applicable when mime_type is APPLICATION_JSON." - } - }, - "type": "object", - "description": "Configuration for text output format." - }, - "TopCandidates": { - "properties": { - "candidates": { - "items": { - "$ref": "#/components/schemas/LogprobsResultCandidate" - }, - "type": "array", - "description": "Sorted by log probability in descending order." + "automaticActivityDetection": { + "description": "Optional. If not set, automatic activity detection is enabled by default. If automatic voice detection is disabled, the client must send activity signals.", + "$ref": "#/components/schemas/AutomaticActivityDetection" } }, - "description": "Candidates with top log probabilities at each decoding step.", + "description": "Configures the realtime input behavior in `BidiGenerateContent`.", "type": "object" }, - "Part": { + "GenerationConfig": { + "description": "Configuration options for model generation and outputs. Not all parameters are configurable for every model.", + "type": "object", "properties": { - "mediaResolution": { - "$ref": "#/components/schemas/V1mainMediaResolution", - "description": "Optional. Media resolution for the input media." + "topP": { + "description": "Optional. The maximum cumulative probability of tokens to consider when sampling. The model uses combined Top-k and Top-p (nucleus) sampling. Tokens are sorted based on their assigned probabilities so that only the most likely tokens are considered. Top-k sampling directly limits the maximum number of tokens to consider, while Nucleus sampling limits the number of tokens based on the cumulative probability. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests.", + "type": "number", + "format": "float" + }, + "responseLogprobs": { + "description": "Optional. If true, export the logprobs results in response.", + "type": "boolean" + }, + "logprobs": { + "format": "int32", + "description": "Optional. Only valid if response_logprobs=True. This sets the number of top logprobs, including the chosen candidate, to return at each decoding step in the Candidate.logprobs_result. The number must be in the range of [0, 20].", + "type": "integer" + }, + "topK": { + "format": "int32", + "description": "Optional. The maximum number of tokens to consider when sampling. Gemini models use Top-p (nucleus) sampling or a combination of Top-k and nucleus sampling. Top-k sampling considers the set of `top_k` most probable tokens. Models running with nucleus sampling don't allow top_k setting. Note: The default value varies by `Model` and is specified by the`Model.top_p` attribute returned from the `getModel` function. An empty `top_k` attribute indicates that the model doesn't apply top-k sampling and doesn't allow setting `top_k` on requests.", + "type": "integer" + }, + "enableEnhancedCivicAnswers": { + "description": "Optional. Enables enhanced civic answers. It may not be available for all models.", + "type": "boolean" + }, + "maxOutputTokens": { + "description": "Optional. The maximum number of tokens to include in a response candidate. Note: The default value varies by model, see the `Model.output_token_limit` attribute of the `Model` returned from the `getModel` function.", + "type": "integer", + "format": "int32" }, - "toolCall": { - "description": "Server-side tool call. This field is populated when the model predicts a tool invocation that should be executed on the server. The client is expected to echo this message back to the API.", - "$ref": "#/components/schemas/ToolCall" + "thinkingConfig": { + "description": "Optional. Config for thinking features. An error will be returned if this field is set for models that don't support thinking.", + "$ref": "#/components/schemas/ThinkingConfig" }, - "text": { + "seed": { + "description": "Optional. Seed used in decoding. If not set, the request uses a randomly generated seed.", + "type": "integer", + "format": "int32" + }, + "mediaResolution": { + "description": "Optional. If specified, the media resolution specified will be used.", "type": "string", - "description": "Inline text." + "enum": [ + "MEDIA_RESOLUTION_UNSPECIFIED", + "MEDIA_RESOLUTION_LOW", + "MEDIA_RESOLUTION_MEDIUM", + "MEDIA_RESOLUTION_HIGH" + ], + "x-enum-descriptions": [ + "Media resolution has not been set.", + "Media resolution set to low (64 tokens).", + "Media resolution set to medium (256 tokens).", + "Media resolution set to high (zoomed reframing with 256 tokens)." + ] }, - "toolResponse": { - "description": "The output from a server-side `ToolCall` execution. This field is populated by the client with the results of executing the corresponding `ToolCall`.", - "$ref": "#/components/schemas/ToolResponse" + "responseSchema": { + "$ref": "#/components/schemas/Schema", + "deprecated": true, + "description": "Optional. Output schema of the generated candidate text. Schemas must be a subset of the [OpenAPI schema](https://spec.openapis.org/oas/v3.0.3#schema) and can be objects, primitives or arrays. If set, a compatible `response_mime_type` must also be set. Compatible MIME types: `application/json`: Schema for JSON response. Refer to the [JSON text generation guide](https://ai.google.dev/gemini-api/docs/json-mode) for more details." }, - "inlineData": { - "description": "Inline media bytes.", - "$ref": "#/components/schemas/Blob" + "imageConfig": { + "description": "Optional. Config for image generation. An error will be returned if this field is set for models that don't support these config options.", + "$ref": "#/components/schemas/ImageConfig" }, - "thought": { - "description": "Optional. Indicates if the part is thought from the model.", + "responseJsonSchema": { + "description": "Optional. An internal detail. Use `responseJsonSchema` rather than this field." + }, + "enableAffectiveDialog": { + "description": "Optional. If enabled, the model will detect emotions and adapt its responses accordingly.", "type": "boolean" }, - "partMetadata": { - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Custom metadata associated with the Part. Agents using genai.Part as content representation may need to keep track of the additional information. For example it can be name of a file/source from which the Part originates or a way to multiplex multiple Part streams." + "frequencyPenalty": { + "format": "float", + "description": "Optional. Frequency penalty applied to the next token's logprobs, multiplied by the number of times each token has been seen in the respponse so far. A positive penalty will discourage the use of tokens that have already been used, proportional to the number of times the token has been used: The more a token is used, the more difficult it is for the model to use that token again increasing the vocabulary of responses. Caution: A _negative_ penalty will encourage the model to reuse tokens proportional to the number of times the token has been used. Small negative values will reduce the vocabulary of a response. Larger negative values will cause the model to start repeating a common token until it hits the max_output_tokens limit.", + "type": "number" }, - "codeExecutionResult": { - "$ref": "#/components/schemas/CodeExecutionResult", - "description": "Result of executing the `ExecutableCode`." + "speechConfig": { + "description": "Optional. The speech generation config.", + "$ref": "#/components/schemas/SpeechConfig" }, - "functionCall": { - "$ref": "#/components/schemas/FunctionCall", - "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values." + "audioTranscriptionConfig": { + "description": "Optional. Config for audio transcription (speech recognition).", + "$ref": "#/components/schemas/AudioTranscriptionConfig" }, - "executableCode": { - "$ref": "#/components/schemas/ExecutableCode", - "description": "Code generated by the model that is meant to be executed." + "translationConfig": { + "description": "Optional. Config for translation.", + "$ref": "#/components/schemas/TranslationConfig" }, - "fileData": { - "description": "URI based data.", - "$ref": "#/components/schemas/FileData" + "candidateCount": { + "format": "int32", + "description": "Optional. Number of generated responses to return. If unset, this will default to 1. Please note that this doesn't work for previous generation models (Gemini 1.0 family)", + "type": "integer" }, - "thoughtSignature": { - "type": "string", - "format": "byte", - "description": "Optional. An opaque signature for the thought so it can be reused in subsequent requests." + "presencePenalty": { + "format": "float", + "description": "Optional. Presence penalty applied to the next token's logprobs if the token has already been seen in the response. This penalty is binary on/off and not dependant on the number of times the token is used (after the first). Use frequency_penalty for a penalty that increases with each use. A positive penalty will discourage the use of tokens that have already been used in the response, increasing the vocabulary. A negative penalty will encourage the use of tokens that have already been used in the response, decreasing the vocabulary.", + "type": "number" }, - "functionResponse": { - "description": "The result output of a `FunctionCall` that contains a string representing the `FunctionDeclaration.name` and a structured JSON object containing any output from the function is used as context to the model.", - "$ref": "#/components/schemas/FunctionResponse" + "responseMimeType": { + "description": "Optional. MIME type of the generated candidate text. Supported MIME types are: `text/plain`: (default) Text output. `application/json`: JSON response in the response candidates. `text/x.enum`: ENUM as a string response in the response candidates. Refer to the [docs](https://ai.google.dev/gemini-api/docs/prompting_with_media#plain_text_formats) for a list of all supported text MIME types.", + "type": "string" }, - "videoMetadata": { - "$ref": "#/components/schemas/VideoMetadata", - "description": "Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data." + "stopSequences": { + "items": { + "type": "string" + }, + "description": "Optional. The set of character sequences (up to 5) that will stop output generation. If specified, the API will stop at the first appearance of a `stop_sequence`. The stop sequence will not be included as part of the response.", + "type": "array" + }, + "responseFormat": { + "description": "Optional. Configuration for the response output format. Allows specifying output configuration per modality (text, audio, image) in a flat structure.", + "$ref": "#/components/schemas/ResponseFormatConfig" + }, + "responseModalities": { + "items": { + "x-enum-descriptions": [ + "Default value.", + "Indicates the model should return text.", + "Indicates the model should return images.", + "Indicates the model should return audio.", + "Indicates the model should return video." + ], + "type": "string", + "enum": [ + "MODALITY_UNSPECIFIED", + "TEXT", + "IMAGE", + "AUDIO", + "VIDEO" + ] + }, + "description": "Optional. The requested modalities of the response. Represents the set of modalities that the model can return, and should be expected in the response. This is an exact match to the modalities of the response. A model may have multiple combinations of supported modalities. If the requested modalities do not match any of the supported combinations, an error will be returned. An empty list is equivalent to requesting only text.", + "type": "array" + }, + "temperature": { + "format": "float", + "description": "Optional. Controls the randomness of the output. Note: The default value varies by model, see the `Model.temperature` attribute of the `Model` returned from the `getModel` function. Values can range from [0.0, 2.0].", + "type": "number" } - }, - "description": "A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if the `inline_data` field is filled with raw bytes.", - "type": "object" + } }, - "FunctionResponsePart": { + "TransferOwnershipResponse": { + "description": "Response from `TransferOwnership`.", "type": "object", - "description": "A datatype containing media that is part of a `FunctionResponse` message. A `FunctionResponsePart` consists of data which has an associated datatype. A `FunctionResponsePart` can only contain one of the accepted types in `FunctionResponsePart.data`. A `FunctionResponsePart` must have a fixed IANA MIME type identifying the type and subtype of the media if the `inline_data` field is filled with raw bytes.", - "properties": { - "inlineData": { - "description": "Inline media bytes.", - "$ref": "#/components/schemas/FunctionResponseBlob" - } - } + "properties": {} }, - "RegisterFilesResponse": { + "ImageConfig": { "properties": { - "files": { - "type": "array", - "description": "The registered files to be used when calling GenerateContent.", - "items": { - "$ref": "#/components/schemas/File" - } + "aspectRatio": { + "description": "Optional. The aspect ratio of the image to generate. Supported aspect ratios: `1:1`, `1:4`, `4:1`, `1:8`, `8:1`, `2:3`, `3:2`, `3:4`, `4:3`, `4:5`, `5:4`, `9:16`, `16:9`, or `21:9`. If not specified, the model will choose a default aspect ratio based on any reference images provided.", + "type": "string" + }, + "imageSize": { + "description": "Optional. Specifies the size of generated images. Supported values are `512`, `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`.", + "type": "string" } }, - "description": "Response for `RegisterFiles`.", + "description": "Config for image generation features.", "type": "object" }, - "InlinedEmbedContentResponse": { + "GroundingChunk": { "properties": { - "error": { - "readOnly": true, - "$ref": "#/components/schemas/Status", - "description": "Output only. The error encountered while processing the request." + "image": { + "description": "Optional. Grounding chunk from image search.", + "$ref": "#/components/schemas/Image" }, - "metadata": { - "description": "Output only. The metadata associated with the request.", - "readOnly": true, - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - } + "maps": { + "description": "Optional. Grounding chunk from Google Maps.", + "$ref": "#/components/schemas/Maps" }, - "response": { - "description": "Output only. The response to the request.", - "readOnly": true, - "$ref": "#/components/schemas/EmbedContentResponse" + "web": { + "description": "Grounding chunk from the web.", + "$ref": "#/components/schemas/Web" + }, + "retrievedContext": { + "description": "Optional. Grounding chunk from context retrieved by the file search tool.", + "$ref": "#/components/schemas/RetrievedContext" } }, - "description": "The response to a single request in the batch.", + "description": "A `GroundingChunk` represents a segment of supporting evidence that grounds the model's response. It can be a chunk from the web, a retrieved context from a file, or information from Google Maps.", "type": "object" }, - "GeneratedFile": { + "EmbedContentBatch": { "properties": { + "displayName": { + "description": "Required. The user-defined name of this batch.", + "type": "string" + }, "name": { - "type": "string", - "description": "Identifier. The name of the generated file. Example: `generatedFiles/abc-123`" + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", + "readOnly": true, + "type": "string" }, - "mimeType": { + "inputConfig": { + "description": "Required. Input configuration of the instances on which batch processing are performed.", + "$ref": "#/components/schemas/InputEmbedContentConfig" + }, + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" + }, + "endTime": { + "description": "Output only. The time at which the batch processing completed.", + "readOnly": true, "type": "string", - "description": "MIME type of the generatedFile." + "format": "google-datetime" }, "state": { - "type": "string", - "x-enum-descriptions": [ - "The default value. This value is used if the state is omitted.", - "Being generated.", - "Generated and is ready for download.", - "Failed to generate the GeneratedFile." - ], "readOnly": true, - "description": "Output only. The state of the GeneratedFile.", - "enum": [ - "STATE_UNSPECIFIED", - "GENERATING", - "GENERATED", - "FAILED" - ] - }, - "error": { - "description": "Error details if the GeneratedFile ends up in the STATE_FAILED state.", - "$ref": "#/components/schemas/Status" - } - }, - "type": "object", - "description": "A file generated on behalf of a user." - }, - "CreateEnvironmentRequest": { - "type": "object", - "description": "Request for `CreateEnvironment`.", - "properties": { - "sources": { - "items": { - "$ref": "#/components/schemas/Source" - }, - "description": "Sources to be mounted into the environment.", - "type": "array" - }, - "networkMode": { + "description": "Output only. The state of the batch.", "type": "string", - "description": "Network egress mode.", "enum": [ - "NETWORK_MODE_UNSPECIFIED", - "DISABLED" + "BATCH_STATE_UNSPECIFIED", + "BATCH_STATE_PENDING", + "BATCH_STATE_RUNNING", + "BATCH_STATE_SUCCEEDED", + "BATCH_STATE_FAILED", + "BATCH_STATE_CANCELLED", + "BATCH_STATE_EXPIRED" ], "x-enum-descriptions": [ - "Default value. Unused.", - "All network egress is blocked." - ] - }, - "networkAllowlist": { - "$ref": "#/components/schemas/EnvironmentNetworkEgressAllowlist", - "description": "Allow only specific domains." - } - } - }, - "ListTunedModelsResponse": { - "properties": { - "tunedModels": { - "items": { - "$ref": "#/components/schemas/TunedModel" - }, - "type": "array", - "description": "The returned Models." + "The batch state is unspecified.", + "The service is preparing to run the batch.", + "The batch is in progress.", + "The batch completed successfully.", + "The batch failed.", + "The batch has been cancelled.", + "The batch has expired." + ] }, - "nextPageToken": { + "priority": { + "format": "int64", + "description": "Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0.", + "type": "string" + }, + "output": { + "description": "Output only. The output of the batch request.", + "readOnly": true, + "$ref": "#/components/schemas/EmbedContentBatchOutput" + }, + "updateTime": { + "description": "Output only. The time at which the batch was last updated.", + "readOnly": true, "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages." + "format": "google-datetime" + }, + "createTime": { + "format": "google-datetime", + "description": "Output only. The time at which the batch was created.", + "readOnly": true, + "type": "string" + }, + "batchStats": { + "description": "Output only. Stats about the batch.", + "readOnly": true, + "$ref": "#/components/schemas/EmbedContentBatchStats" } }, - "description": "Response from `ListTunedModels` containing a paginated list of Models.", + "description": "A resource representing a batch of `EmbedContent` requests.", "type": "object" }, - "ListCachedContentsResponse": { - "description": "Response with CachedContents list.", + "CodeExecutionResult": { + "description": "Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used.", "type": "object", "properties": { - "cachedContents": { - "description": "List of cached contents.", - "type": "array", - "items": { - "$ref": "#/components/schemas/CachedContent" - } + "id": { + "description": "Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id.", + "type": "string" }, - "nextPageToken": { + "output": { + "description": "Optional. Contains stdout when code execution is successful, stderr or other description otherwise.", + "type": "string" + }, + "outcome": { + "x-enum-descriptions": [ + "Unspecified status. This value should not be used.", + "Code execution completed successfully. `output` contains the stdout, if any.", + "Code execution failed. `output` contains the stderr and stdout, if any.", + "Code execution ran for too long, and was cancelled. There may or may not be a partial `output` present." + ], + "description": "Required. Outcome of the code execution.", "type": "string", - "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages." + "enum": [ + "OUTCOME_UNSPECIFIED", + "OUTCOME_OK", + "OUTCOME_FAILED", + "OUTCOME_DEADLINE_EXCEEDED" + ] } } }, - "SearchTypes": { + "PromptFeedback": { "properties": { - "webSearch": { - "description": "Optional. Enables web search. Only text results are returned.", - "$ref": "#/components/schemas/WebSearch" + "blockReason": { + "x-enum-descriptions": [ + "Default value. This value is unused.", + "Prompt was blocked due to safety reasons. Inspect `safety_ratings` to understand which safety category blocked it.", + "Prompt was blocked due to unknown reasons.", + "Prompt was blocked due to the terms which are included from the terminology blocklist.", + "Prompt was blocked due to prohibited content.", + "Candidates blocked due to unsafe image generation content." + ], + "description": "Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt.", + "type": "string", + "enum": [ + "BLOCK_REASON_UNSPECIFIED", + "SAFETY", + "OTHER", + "BLOCKLIST", + "PROHIBITED_CONTENT", + "IMAGE_SAFETY" + ] }, - "imageSearch": { - "$ref": "#/components/schemas/ImageSearch", - "description": "Optional. Enables image search. Image bytes are returned." + "safetyRatings": { + "items": { + "$ref": "#/components/schemas/SafetyRating" + }, + "description": "Ratings for safety of the prompt. There is at most one rating per category.", + "type": "array" } }, + "description": "A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`.", + "type": "object" + }, + "WebSearch": { + "description": "Standard web search for grounding and related configurations.", "type": "object", - "description": "Different types of search that can be enabled on the GoogleSearch tool." + "properties": {} }, "Permission": { "description": "Permission resource grants user, group or the rest of the world access to the PaLM API resource (e.g. a tuned model, corpus). A role is a collection of permitted operations that allows users to perform specific actions on PaLM API resources. To make them available to users, groups, or service accounts, you assign roles. When you assign a role, you grant permissions that the role contains. There are three concentric roles. Each role is a superset of the previous role's permitted operations: - reader can use the resource (e.g. tuned model, corpus) for inference - writer has reader's permissions and additionally can edit and share - owner has writer's permissions and additionally can delete", "type": "object", "properties": { + "name": { + "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only.", + "readOnly": true, + "type": "string" + }, + "emailAddress": { + "description": "Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE.", + "type": "string" + }, "role": { + "x-enum-descriptions": [ + "The default value. This value is unused.", + "Owner can use, update, share and delete the resource.", + "Writer can use, update and share the resource.", + "Reader can use the resource." + ], "description": "Required. The role granted by this permission.", + "type": "string", "enum": [ "ROLE_UNSPECIFIED", "OWNER", "WRITER", "READER" - ], - "type": "string", - "x-enum-descriptions": [ - "The default value. This value is unused.", - "Owner can use, update, share and delete the resource.", - "Writer can use, update and share the resource.", - "Reader can use the resource." ] }, - "name": { - "readOnly": true, - "type": "string", - "description": "Output only. Identifier. The permission name. A unique name will be generated on create. Examples: tunedModels/{tuned_model}/permissions/{permission} corpora/{corpus}/permissions/{permission} Output only." - }, "granteeType": { "x-enum-descriptions": [ "The default value. This value is unused.", @@ -6685,190 +6705,186 @@ "Represents access to everyone. No extra information is required." ], "description": "Optional. Immutable. The type of the grantee.", + "type": "string", "enum": [ "GRANTEE_TYPE_UNSPECIFIED", "USER", "GROUP", "EVERYONE" - ], - "type": "string" - }, - "emailAddress": { - "type": "string", - "description": "Optional. Immutable. The email address of the user of group which this permission refers. Field is not set when permission's grantee type is EVERYONE." + ] } } }, - "BatchStats": { - "description": "Stats about the batch.", + "EmbeddingUsageMetadata": { + "description": "Metadata on the usage of the embedding request.", "type": "object", "properties": { - "successfulRequestCount": { - "readOnly": true, - "type": "string", - "format": "int64", - "description": "Output only. The number of requests that were successfully processed." - }, - "pendingRequestCount": { - "description": "Output only. The number of requests that are still pending processing.", - "readOnly": true, - "type": "string", - "format": "int64" - }, - "requestCount": { - "description": "Output only. The number of requests in the batch.", + "promptTokenCount": { + "format": "int32", + "description": "Output only. Number of tokens in the prompt.", "readOnly": true, - "type": "string", - "format": "int64" + "type": "integer" }, - "failedRequestCount": { - "description": "Output only. The number of requests that failed to be processed.", + "promptTokenDetails": { + "description": "Output only. List of modalities that were processed in the request input.", "readOnly": true, - "type": "string", - "format": "int64" + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } } } }, - "LatLng": { - "description": "An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges.", + "InlinedResponses": { + "description": "The responses to the requests in the batch.", "type": "object", "properties": { - "latitude": { - "type": "number", - "format": "double", - "description": "The latitude in degrees. It must be in the range [-90.0, +90.0]." - }, - "longitude": { - "description": "The longitude in degrees. It must be in the range [-180.0, +180.0].", - "type": "number", - "format": "double" + "inlinedResponses": { + "description": "Output only. The responses to the requests in the batch.", + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/InlinedResponse" + } } } }, - "LogprobsResult": { - "description": "Logprobs Result", + "WhiteSpaceConfig": { + "properties": { + "maxOverlapTokens": { + "description": "Maximum number of overlapping tokens between two adjacent chunks.", + "type": "integer", + "format": "int32" + }, + "maxTokensPerChunk": { + "format": "int32", + "description": "Maximum number of tokens per chunk. Tokens are defined as words for this chunking algorithm. Note: we are defining tokens as words split by whitespace as opposed to the output of a tokenizer. The context window of the latest gemini embedding model as of 2025-04-17 is currently 8192 tokens. We assume that the average word is 5 characters. Therefore, we set the upper limit to 2**9, which is 512 words, or 2560 tokens, assuming worst case a character per token. This is a conservative estimate meant to prevent context window overflow.", + "type": "integer" + } + }, + "description": "Configuration for a white space chunking algorithm [white space delimited].", + "type": "object" + }, + "CountTokensResponse": { + "description": "A response from `CountTokens`. It returns the model's `token_count` for the `prompt`.", "type": "object", "properties": { - "chosenCandidates": { - "description": "Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates.", + "totalTokens": { + "description": "The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative.", + "type": "integer", + "format": "int32" + }, + "cachedContentTokenCount": { + "format": "int32", + "description": "Number of tokens in the cached part of the prompt (the cached content).", + "type": "integer" + }, + "promptTokensDetails": { + "description": "Output only. List of modalities that were processed in the request input.", + "readOnly": true, "type": "array", "items": { - "$ref": "#/components/schemas/LogprobsResultCandidate" + "$ref": "#/components/schemas/ModalityTokenCount" } }, - "logProbabilitySum": { - "description": "Sum of log probabilities for all tokens.", - "type": "number", - "format": "float" - }, - "topCandidates": { + "cacheTokensDetails": { "items": { - "$ref": "#/components/schemas/TopCandidates" + "$ref": "#/components/schemas/ModalityTokenCount" }, - "description": "Length = total number of decoding steps.", + "description": "Output only. List of modalities that were processed in the cached content.", + "readOnly": true, "type": "array" } } }, - "AsyncBatchEmbedContentRequest": { - "properties": { - "batch": { - "$ref": "#/components/schemas/EmbedContentBatch", - "description": "Required. The batch to create." - } - }, + "Tool": { + "description": "Tool details that the model may use to generate response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. Next ID: 16", "type": "object", - "description": "Request for an `AsyncBatchEmbedContent` operation." - }, - "GoogleAiGenerativelanguageV1betaGroundingSupport": { "properties": { - "segment": { - "description": "Segment of the content this support belongs to.", - "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaSegment" - }, - "groundingChunkIndices": { - "items": { - "type": "integer", - "format": "int32" - }, - "type": "array", - "description": "Optional. A list of indices (into 'grounding_chunk' in `response.candidate.grounding_metadata`) specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. If the response is streaming, the grounding_chunk_indices refer to the indices across all responses. It is the client's responsibility to accumulate the grounding chunks from all responses (while maintaining the same order)." - }, - "confidenceScores": { + "functionDeclarations": { + "description": "Optional. A list of `FunctionDeclarations` available to the model that can be used for function calling. The model or system does not execute the function. Instead the defined function may be returned as a FunctionCall with arguments to the client side for execution. The model may decide to call a subset of these functions by populating FunctionCall in the response. The next conversation turn may contain a FunctionResponse with the Content.role \"function\" generation context for the next model turn.", "type": "array", - "description": "Optional. Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices.", "items": { - "type": "number", - "format": "float" + "$ref": "#/components/schemas/FunctionDeclaration" } }, - "renderedParts": { - "description": "Output only. Indices into the `parts` field of the candidate's content. These indices specify which rendered parts are associated with this support source.", - "readOnly": true, + "urlContext": { + "description": "Optional. Tool to support URL context retrieval.", + "$ref": "#/components/schemas/UrlContext" + }, + "fileSearch": { + "description": "Optional. FileSearch tool type. Tool to retrieve knowledge from Semantic Retrieval corpora.", + "$ref": "#/components/schemas/FileSearch" + }, + "googleMaps": { + "description": "Optional. Tool that allows grounding the model's response with geospatial context related to the user's query.", + "$ref": "#/components/schemas/GoogleMaps" + }, + "codeExecution": { + "description": "Optional. Enables the model to execute code as part of generation.", + "$ref": "#/components/schemas/CodeExecution" + }, + "mcpServers": { + "description": "Optional. MCP Servers to connect to.", "type": "array", "items": { - "type": "integer", - "format": "int32" + "$ref": "#/components/schemas/McpServer" } + }, + "googleSearchRetrieval": { + "description": "Optional. Retrieval tool that is powered by Google search.", + "$ref": "#/components/schemas/GoogleSearchRetrieval" + }, + "googleSearch": { + "description": "Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", + "$ref": "#/components/schemas/GoogleSearch" + }, + "computerUse": { + "description": "Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations.", + "$ref": "#/components/schemas/ComputerUse" } - }, - "type": "object", - "description": "Grounding support." + } }, - "SemanticRetrieverChunk": { + "UrlMetadata": { + "description": "Context of the a single url retrieval.", + "type": "object", "properties": { - "source": { - "description": "Output only. Name of the source matching the request's `SemanticRetrieverConfig.source`. Example: `corpora/123` or `corpora/123/documents/abc`", - "readOnly": true, + "retrievedUrl": { + "description": "Retrieved url by the tool.", "type": "string" }, - "chunk": { - "readOnly": true, + "urlRetrievalStatus": { + "description": "Status of the url retrieval.", "type": "string", - "description": "Output only. Name of the `Chunk` containing the attributed text. Example: `corpora/123/documents/abc/chunks/xyz`" + "enum": [ + "URL_RETRIEVAL_STATUS_UNSPECIFIED", + "URL_RETRIEVAL_STATUS_SUCCESS", + "URL_RETRIEVAL_STATUS_ERROR", + "URL_RETRIEVAL_STATUS_PAYWALL", + "URL_RETRIEVAL_STATUS_UNSAFE" + ], + "x-enum-descriptions": [ + "Default value. This value is unused.", + "Url retrieval is successful.", + "Url retrieval is failed due to error.", + "Url retrieval is failed because the content is behind paywall.", + "Url retrieval is failed because the content is unsafe." + ] } - }, - "type": "object", - "description": "Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`." + } }, - "AuthToken": { + "EnvironmentNetworkEgressAllowlist": { "properties": { - "bidiGenerateContentSetup": { - "$ref": "#/components/schemas/BidiGenerateContentSetup", - "description": "Optional. Input only. Immutable. Configuration specific to `BidiGenerateContent`." - }, - "name": { - "description": "Output only. Identifier. The token itself.", - "readOnly": true, - "type": "string" - }, - "expireTime": { - "description": "Optional. Input only. Immutable. An optional time after which, when using the resulting token, messages in BidiGenerateContent sessions will be rejected. (Gemini may preemptively close the session after this time.) If not set then this defaults to 30 minutes in the future. If set, this value must be less than 20 hours in the future.", - "type": "string", - "format": "google-datetime" - }, - "interactionId": { - "description": "Optional. Input only. Immutable. The interaction ID that this token is scoped to. Specific to the Live Interactions API.", - "type": "string" - }, - "newSessionExpireTime": { - "type": "string", - "format": "google-datetime", - "description": "Optional. Input only. Immutable. The time after which new Live API sessions using the token resulting from this request will be rejected. If not set this defaults to 60 seconds in the future. If set, this value must be less than 20 hours in the future." - }, - "uses": { - "type": "integer", - "format": "int32", - "description": "Optional. Input only. Immutable. The number of times the token can be used. If this value is zero then no limit is applied. Resuming a Live API session does not count as a use. If unspecified, the default is 1." - }, - "fieldMask": { - "type": "string", - "format": "google-fieldmask", - "description": "Optional. Input only. Immutable. If field_mask is empty, and `bidi_generate_content_setup` is not present, then the effective `BidiGenerateContentSetup` message is taken from the Live API connection. If field_mask is empty, and `bidi_generate_content_setup` _is_ present, then the effective `BidiGenerateContentSetup` message is taken entirely from `bidi_generate_content_setup` in this request. The setup message from the Live API connection is ignored. If field_mask is not empty, then the corresponding fields from `bidi_generate_content_setup` will overwrite the fields from the setup message in the Live API connection." + "allowlist": { + "description": "List of allowed domains and their configurations.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EgressRule" + } } }, - "type": "object", - "description": "A request to create an ephemeral authentication token." + "description": "Network egress configuration for the environment.", + "type": "object" }, "ListOperationsResponse": { "properties": { @@ -6879,169 +6895,133 @@ "$ref": "#/components/schemas/Operation" } }, + "nextPageToken": { + "description": "The standard List next-page token.", + "type": "string" + }, "unreachable": { - "type": "array", "description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.", + "type": "array", "items": { "type": "string" } - }, - "nextPageToken": { - "type": "string", - "description": "The standard List next-page token." } }, - "type": "object", - "description": "The response message for Operations.ListOperations." + "description": "The response message for Operations.ListOperations.", + "type": "object" }, - "CustomLongRunningOperation": { + "Dataset": { "properties": { - "name": { - "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.", - "type": "string" - }, - "done": { - "type": "boolean", - "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available." + "examples": { + "description": "Optional. Inline examples with simple input/output text.", + "$ref": "#/components/schemas/TuningExamples" + } + }, + "description": "Dataset for training or validation.", + "type": "object" + }, + "InlinedResponse": { + "description": "The response to a single request in the batch.", + "type": "object", + "properties": { + "metadata": { + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Output only. The metadata associated with the request.", + "readOnly": true, + "type": "object" }, "error": { - "$ref": "#/components/schemas/Status", - "description": "The error result of the operation in case of failure or cancellation." + "description": "Output only. The error encountered while processing the request.", + "readOnly": true, + "$ref": "#/components/schemas/Status" }, - "metadata": { - "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.", + "response": { + "$ref": "#/components/schemas/GenerateContentResponse", + "description": "Output only. The response to the request.", + "readOnly": true + } + } + }, + "Content": { + "properties": { + "parts": { + "items": { + "$ref": "#/components/schemas/Part" + }, + "description": "Ordered `Parts` that constitute a single message. Parts may have different MIME types.", + "type": "array" + }, + "role": { + "description": "Optional. The producer of the content. Must be either 'user' or 'model'. Useful to set for multi-turn conversations, otherwise can be left blank or unset.", + "type": "string" + } + }, + "description": "The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.", + "type": "object" + }, + "CustomLongRunningOperation": { + "properties": { + "response": { + "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.", "type": "object", "additionalProperties": { "description": "Properties of the object. Contains field @type with type URL." } }, - "response": { - "type": "object", + "name": { + "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.", + "type": "string" + }, + "metadata": { "additionalProperties": { "description": "Properties of the object. Contains field @type with type URL." }, - "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`." + "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.", + "type": "object" + }, + "error": { + "description": "The error result of the operation in case of failure or cancellation.", + "$ref": "#/components/schemas/Status" + }, + "done": { + "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.", + "type": "boolean" } }, "type": "object" }, - "SafetySetting": { - "description": "Safety setting, affecting the safety-blocking behavior. Passing a safety setting for a category changes the allowed probability that content is blocked.", - "type": "object", - "properties": { - "category": { - "type": "string", - "x-enum-descriptions": [ - "Category is unspecified.", - "**PaLM** - Negative or harmful comments targeting identity and/or protected attribute.", - "**PaLM** - Content that is rude, disrespectful, or profane.", - "**PaLM** - Describes scenarios depicting violence against an individual or group, or general descriptions of gore.", - "**PaLM** - Contains references to sexual acts or other lewd content.", - "**PaLM** - Promotes unchecked medical advice.", - "**PaLM** - Dangerous content that promotes, facilitates, or encourages harmful acts.", - "**Gemini** - Harassment content.", - "**Gemini** - Hate speech and content.", - "**Gemini** - Sexually explicit content.", - "**Gemini** - Dangerous content.", - "**Gemini** - Content that may be used to harm civic integrity. DEPRECATED: use enable_enhanced_civic_answers instead.", - "**Gemini** - Prompts attempting to bypass or subvert the model's safety guidelines (jailbreak attempts)." - ], - "description": "Required. The category for this setting.", - "enum": [ - "HARM_CATEGORY_UNSPECIFIED", - "HARM_CATEGORY_DEROGATORY", - "HARM_CATEGORY_TOXICITY", - "HARM_CATEGORY_VIOLENCE", - "HARM_CATEGORY_SEXUAL", - "HARM_CATEGORY_MEDICAL", - "HARM_CATEGORY_DANGEROUS", - "HARM_CATEGORY_HARASSMENT", - "HARM_CATEGORY_HATE_SPEECH", - "HARM_CATEGORY_SEXUALLY_EXPLICIT", - "HARM_CATEGORY_DANGEROUS_CONTENT", - "HARM_CATEGORY_CIVIC_INTEGRITY", - "HARM_CATEGORY_JAILBREAK" - ], - "enumDeprecated": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ] - }, - "threshold": { - "x-enum-descriptions": [ - "Threshold is unspecified.", - "Content with NEGLIGIBLE will be allowed.", - "Content with NEGLIGIBLE and LOW will be allowed.", - "Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed.", - "All content will be allowed.", - "Turn off the safety filter." - ], - "type": "string", - "description": "Required. Controls the probability threshold at which harm is blocked.", - "enum": [ - "HARM_BLOCK_THRESHOLD_UNSPECIFIED", - "BLOCK_LOW_AND_ABOVE", - "BLOCK_MEDIUM_AND_ABOVE", - "BLOCK_ONLY_HIGH", - "BLOCK_NONE", - "OFF" - ] - } - } - }, - "UsageMetadata": { + "GenerateContentRequest": { + "description": "Request to generate a completion from the model.", "type": "object", - "description": "Metadata on the generation request's token usage.", "properties": { - "candidatesTokenCount": { - "type": "integer", - "format": "int32", - "description": "Total number of tokens across all the generated response candidates." - }, - "totalTokenCount": { - "description": "Total token count for the generation request (prompt + thoughts + response candidates).", - "type": "integer", - "format": "int32" - }, - "promptTokensDetails": { + "contents": { "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "$ref": "#/components/schemas/Content" }, - "description": "Output only. List of modalities that were processed in the request input.", - "readOnly": true, + "description": "Required. The content of the current conversation with the model. For single-turn queries, this is a single instance. For multi-turn queries like [chat](https://ai.google.dev/gemini-api/docs/text-generation#chat), this is a repeated field that contains the conversation history and the latest request.", "type": "array" }, - "candidatesTokensDetails": { - "readOnly": true, - "type": "array", - "description": "Output only. List of modalities that were returned in the response.", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } + "generationConfig": { + "description": "Optional. Configuration options for model generation and outputs.", + "$ref": "#/components/schemas/GenerationConfig" }, - "toolUsePromptTokensDetails": { - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - }, - "readOnly": true, - "type": "array", - "description": "Output only. List of modalities that were processed for tool-use request inputs." + "cachedContent": { + "description": "Optional. The name of the content [cached](https://ai.google.dev/gemini-api/docs/caching) to use as context to serve the prediction. Format: `cachedContents/{cachedContent}`", + "type": "string" + }, + "store": { + "description": "Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config.", + "type": "boolean" + }, + "systemInstruction": { + "description": "Optional. Developer set [system instruction(s)](https://ai.google.dev/gemini-api/docs/system-instructions). Currently, text only.", + "$ref": "#/components/schemas/Content" }, "serviceTier": { + "description": "Optional. The service tier of the request.", "type": "string", - "readOnly": true, - "description": "Output only. Service tier of the request.", "enum": [ "unspecified", "standard", @@ -7055,546 +7035,566 @@ "Priority service tier." ] }, - "cachedContentTokenCount": { - "type": "integer", - "format": "int32", - "description": "Number of tokens in the cached part of the prompt (the cached content)" - }, - "promptTokenCount": { - "description": "Number of tokens in the prompt. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content.", - "type": "integer", - "format": "int32" - }, - "toolUsePromptTokenCount": { - "description": "Output only. Number of tokens present in tool-use prompt(s).", - "readOnly": true, - "type": "integer", - "format": "int32" - }, - "thoughtsTokenCount": { - "description": "Output only. Number of tokens of thoughts for thinking models.", - "readOnly": true, - "type": "integer", - "format": "int32" + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" }, - "cacheTokensDetails": { + "tools": { + "description": "Optional. A list of `Tools` the `Model` may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the `Model`. Supported `Tool`s are `Function` and `code_execution`. Refer to the [Function calling](https://ai.google.dev/gemini-api/docs/function-calling) and the [Code execution](https://ai.google.dev/gemini-api/docs/code-execution) guides to learn more.", + "type": "array", "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - }, - "description": "Output only. List of modalities of the cached content in the request input.", - "readOnly": true, - "type": "array" + "$ref": "#/components/schemas/Tool" + } }, - "responseTokenCount": { - "description": "Output only. Number of tokens in the response. Used by Gemini 3.1+ Live API models instead of candidatesTokenCount.", - "type": "integer", - "format": "int32", - "readOnly": true + "toolConfig": { + "description": "Optional. Tool configuration for any `Tool` specified in the request. Refer to the [Function calling guide](https://ai.google.dev/gemini-api/docs/function-calling#function_calling_mode) for a usage example.", + "$ref": "#/components/schemas/ToolConfig" }, - "responseTokensDetails": { - "description": "Output only. List of modalities returned in the response with per-modality token counts. Used by Gemini 3.1+ Live API models instead of candidatesTokensDetails.", + "safetySettings": { + "description": "Optional. A list of unique `SafetySetting` instances for blocking unsafe content. This will be enforced on the `GenerateContentRequest.contents` and `GenerateContentResponse.candidates`. There should not be more than one setting for each `SafetyCategory` type. The API will block any contents and responses that fail to meet the thresholds set by these settings. This list overrides the default settings for each `SafetyCategory` specified in the safety_settings. If there is no `SafetySetting` for a given `SafetyCategory` provided in the list, the API will use the default safety setting for that category. Harm categories HARM_CATEGORY_HATE_SPEECH, HARM_CATEGORY_SEXUALLY_EXPLICIT, HARM_CATEGORY_DANGEROUS_CONTENT, HARM_CATEGORY_HARASSMENT, HARM_CATEGORY_CIVIC_INTEGRITY, HARM_CATEGORY_JAILBREAK are supported. Refer to the [guide](https://ai.google.dev/gemini-api/docs/safety-settings) for detailed information on available safety settings. Also refer to the [Safety guidance](https://ai.google.dev/gemini-api/docs/safety-guidance) to learn how to incorporate safety considerations in your AI applications.", "type": "array", - "readOnly": true, "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "$ref": "#/components/schemas/SafetySetting" } } } }, - "AudioTranscriptionConfig": { + "AttributionSourceId": { + "description": "Identifier for the source contributing to this attribution.", + "type": "object", "properties": { - "languageAuto": { - "description": "Optional. The model will detect the language automatically.", - "deprecated": true, - "$ref": "#/components/schemas/LanguageAuto" - }, - "customVocabulary": { - "items": { - "type": "string" - }, - "description": "Optional. A list of custom vocabulary phrases to bias the speech recognition model toward recognizing specific terms (product names, proper nouns, jargon).", - "type": "array" - }, - "wordTimestamp": { - "type": "boolean", - "description": "Optional. Configures word-level timestamp generation." - }, - "diarization": { - "description": "Optional. Configures speaker diarization.", - "type": "boolean" - }, - "adaptationPhrases": { - "items": { - "type": "string" - }, - "description": "Optional. A list of phrases used for speech adaptation, which biases the ASR model to improve recognition of these specific terms.", - "deprecated": true, - "type": "array" - }, - "languageHints": { - "description": "Optional. Specifies one or more languages in the audio.", - "deprecated": true, - "$ref": "#/components/schemas/LanguageHints" + "groundingPassage": { + "description": "Identifier for an inline passage.", + "$ref": "#/components/schemas/GroundingPassageId" }, - "languageCodes": { - "items": { - "type": "string" - }, - "description": "Optional. BCP-47 language codes providing hints about the languages present in the audio. If omitted or empty, defaults to automatic language detection.", - "type": "array" + "semanticRetrieverChunk": { + "description": "Identifier for a `Chunk` fetched via Semantic Retriever.", + "$ref": "#/components/schemas/SemanticRetrieverChunk" } - }, - "description": "The audio transcription configuration.", - "type": "object" - }, - "Empty": { - "properties": {}, - "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }", - "type": "object" + } }, - "RetrievalConfig": { + "BatchStats": { "properties": { - "latLng": { - "description": "Optional. The location of the user.", - "$ref": "#/components/schemas/LatLng" + "failedRequestCount": { + "format": "int64", + "description": "Output only. The number of requests that failed to be processed.", + "readOnly": true, + "type": "string" }, - "languageCode": { - "description": "Optional. The language code of the user. Language code for content. Use language tags defined by [BCP47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt).", + "requestCount": { + "format": "int64", + "description": "Output only. The number of requests in the batch.", + "readOnly": true, "type": "string" + }, + "pendingRequestCount": { + "description": "Output only. The number of requests that are still pending processing.", + "readOnly": true, + "type": "string", + "format": "int64" + }, + "successfulRequestCount": { + "description": "Output only. The number of requests that were successfully processed.", + "readOnly": true, + "type": "string", + "format": "int64" } }, - "description": "Retrieval config.", + "description": "Stats about the batch.", "type": "object" }, - "McpServer": { + "LatLng": { + "description": "An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges.", + "type": "object", "properties": { - "streamableHttpTransport": { - "$ref": "#/components/schemas/StreamableHttpTransport", - "description": "A transport that can stream HTTP requests and responses." + "latitude": { + "format": "double", + "description": "The latitude in degrees. It must be in the range [-90.0, +90.0].", + "type": "number" }, - "name": { - "type": "string", - "description": "The name of the MCPServer." + "longitude": { + "format": "double", + "description": "The longitude in degrees. It must be in the range [-180.0, +180.0].", + "type": "number" } - }, - "type": "object", - "description": "A MCPServer is a server that can be called by the model to perform actions. It is a server that implements the MCP protocol. Next ID: 6" + } }, - "CodeExecutionResult": { + "TopCandidates": { "properties": { - "output": { - "type": "string", - "description": "Optional. Contains stdout when code execution is successful, stderr or other description otherwise." - }, - "id": { - "type": "string", - "description": "Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id." - }, - "outcome": { - "x-enum-descriptions": [ - "Unspecified status. This value should not be used.", - "Code execution completed successfully. `output` contains the stdout, if any.", - "Code execution failed. `output` contains the stderr and stdout, if any.", - "Code execution ran for too long, and was cancelled. There may or may not be a partial `output` present." - ], - "description": "Required. Outcome of the code execution.", - "enum": [ - "OUTCOME_UNSPECIFIED", - "OUTCOME_OK", - "OUTCOME_FAILED", - "OUTCOME_DEADLINE_EXCEEDED" - ], - "type": "string" + "candidates": { + "items": { + "$ref": "#/components/schemas/LogprobsResultCandidate" + }, + "description": "Sorted by log probability in descending order.", + "type": "array" } }, - "type": "object", - "description": "Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used." + "description": "Candidates with top log probabilities at each decoding step.", + "type": "object" }, - "WebSearch": { - "properties": {}, + "ListPermissionsResponse": { + "description": "Response from `ListPermissions` containing a paginated list of permissions.", "type": "object", - "description": "Standard web search for grounding and related configurations." - }, - "InlinedEmbedContentRequests": { "properties": { - "requests": { - "description": "Required. The requests to be processed in the batch.", - "type": "array", + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "type": "string" + }, + "permissions": { "items": { - "$ref": "#/components/schemas/InlinedEmbedContentRequest" - } + "$ref": "#/components/schemas/Permission" + }, + "description": "Returned permissions.", + "type": "array" + } + } + }, + "GoogleSearchRetrieval": { + "properties": { + "dynamicRetrievalConfig": { + "description": "Specifies the dynamic retrieval configuration for the given source.", + "$ref": "#/components/schemas/DynamicRetrievalConfig" } }, - "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "description": "Tool to retrieve public web data for grounding, powered by Google.", "type": "object" }, - "Interval": { + "LanguageAuto": { + "description": "Indicates the language of the audio should be automatically detected.", + "type": "object", + "deprecated": true, + "properties": {} + }, + "TuningSnapshot": { + "description": "Record for a single tuning step.", + "type": "object", "properties": { - "startTime": { - "description": "Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.", - "type": "string", - "format": "google-datetime" + "computeTime": { + "format": "google-datetime", + "description": "Output only. The timestamp when this metric was computed.", + "readOnly": true, + "type": "string" + }, + "step": { + "description": "Output only. The tuning step.", + "readOnly": true, + "type": "integer", + "format": "int32" + }, + "epoch": { + "description": "Output only. The epoch this step was part of.", + "readOnly": true, + "type": "integer", + "format": "int32" }, - "endTime": { - "type": "string", - "format": "google-datetime", - "description": "Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end." + "meanLoss": { + "format": "float", + "description": "Output only. The mean loss of the training examples for this step.", + "readOnly": true, + "type": "number" } - }, - "type": "object", - "description": "Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time." + } }, - "GroundingChunkCustomMetadata": { + "LogprobsResultCandidate": { + "description": "Candidate for the logprobs token and score.", + "type": "object", "properties": { - "stringValue": { - "description": "Optional. The string value of the metadata.", + "token": { + "description": "The candidate\u2019s token string value.", "type": "string" }, - "key": { - "type": "string", - "description": "The key of the metadata." - }, - "stringListValue": { - "description": "Optional. A list of string values for the metadata.", - "$ref": "#/components/schemas/GroundingChunkStringList" + "tokenId": { + "description": "The candidate\u2019s token id value.", + "type": "integer", + "format": "int32" }, - "numericValue": { - "description": "Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used.", + "logProbability": { + "description": "The candidate's log probability.", "type": "number", "format": "float" } - }, - "type": "object", - "description": "User provided metadata about the GroundingFact." + } }, - "InputConfig": { + "ExecutableCode": { + "description": "Code generated by the model that is meant to be executed, and the result returned to the model. Only generated when using the `CodeExecution` tool, in which the code will be automatically executed, and a corresponding `CodeExecutionResult` will also be generated.", "type": "object", - "description": "Configures the input to the batch request.", "properties": { - "fileName": { + "language": { + "description": "Required. Programming language of the `code`.", "type": "string", - "description": "The name of the `File` containing the input requests." + "enum": [ + "LANGUAGE_UNSPECIFIED", + "PYTHON" + ], + "x-enum-descriptions": [ + "Unspecified language. This value should not be used.", + "Python >= 3.10, with numpy and simpy available. Python is the default language." + ] }, - "requests": { - "description": "The requests to be processed in the batch.", - "$ref": "#/components/schemas/InlinedRequests" + "id": { + "description": "Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`.", + "type": "string" + }, + "code": { + "description": "Required. The code to be executed.", + "type": "string" } } }, - "GoogleSearchRetrieval": { + "VoiceConfig": { + "description": "The configuration for the voice to use.", + "type": "object", "properties": { - "dynamicRetrievalConfig": { - "description": "Specifies the dynamic retrieval configuration for the given source.", - "$ref": "#/components/schemas/DynamicRetrievalConfig" + "prebuiltVoiceConfig": { + "description": "The configuration for the prebuilt voice to use.", + "$ref": "#/components/schemas/PrebuiltVoiceConfig" + } + } + }, + "SessionResumptionConfig": { + "properties": { + "handle": { + "description": "The handle of a previous session. If not present then a new session is created. Session handles come from `SessionResumptionUpdate.token` values in previous connections.", + "type": "string" } }, - "type": "object", - "description": "Tool to retrieve public web data for grounding, powered by Google." + "description": "Session resumption configuration. This message is included in the session configuration as `BidiGenerateContentSetup.session_resumption`. If configured, the server will send `SessionResumptionUpdate` messages.", + "type": "object" }, - "BatchGenerateContentRequest": { - "description": "Request for a `BatchGenerateContent` operation.", + "AsyncBatchEmbedContentRequest": { + "description": "Request for an `AsyncBatchEmbedContent` operation.", "type": "object", "properties": { "batch": { - "$ref": "#/components/schemas/GenerateContentBatch", - "description": "Required. The batch to create." + "description": "Required. The batch to create.", + "$ref": "#/components/schemas/EmbedContentBatch" } } }, - "Content": { + "AudioResponseFormat": { "properties": { - "parts": { - "type": "array", - "description": "Ordered `Parts` that constitute a single message. Parts may have different MIME types.", - "items": { - "$ref": "#/components/schemas/Part" - } + "sampleRate": { + "description": "Optional. Sample rate in Hz.", + "type": "integer", + "format": "int32" }, - "role": { + "delivery": { + "x-enum-descriptions": [ + "Default value. This value is unused.", + "Audio data is returned inline in the response.", + "Audio data is returned as a URI." + ], + "description": "Optional. The delivery mode for the audio output.", + "type": "string", + "enum": [ + "DELIVERY_UNSPECIFIED", + "INLINE", + "URI" + ] + }, + "mimeType": { + "x-enum-descriptions": [ + "Default value. This value is unused.", + "MP3 audio format.", + "OGG Opus audio format.", + "Raw PCM (L16) audio format.", + "WAV audio format.", + "A-law audio format.", + "Mu-law audio format." + ], + "description": "Optional. The MIME type of the audio output.", "type": "string", - "description": "Optional. The producer of the content. Must be either 'user' or 'model'. Useful to set for multi-turn conversations, otherwise can be left blank or unset." + "enum": [ + "MIME_TYPE_UNSPECIFIED", + "AUDIO_MP3", + "AUDIO_OGG_OPUS", + "AUDIO_L16", + "AUDIO_WAV", + "AUDIO_ALAW", + "AUDIO_MULAW" + ] + }, + "bitRate": { + "format": "int32", + "description": "Optional. Bit rate in bits per second (bps). Only applicable for compressed formats (MP3, Opus).", + "type": "integer" } }, - "type": "object", - "description": "The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn." - }, - "UrlContext": { - "properties": {}, - "description": "Tool to support URL context retrieval.", + "description": "Configuration for audio output format.", "type": "object" }, - "ModelStatus": { + "CitationSource": { + "description": "A citation to a source for a portion of a specific response.", + "type": "object", "properties": { - "modelStage": { - "description": "The stage of the underlying model.", - "enum": [ - "MODEL_STAGE_UNSPECIFIED", - "UNSTABLE_EXPERIMENTAL", - "EXPERIMENTAL", - "PREVIEW", - "STABLE", - "LEGACY", - "DEPRECATED", - "RETIRED" - ], - "enumDeprecated": [ - false, - true, - false, - false, - false, - false, - true, - false - ], - "x-enum-descriptions": [ - "Unspecified model stage.", - "The underlying model is subject to lots of tunings.", - "Models in this stage are for experimental purposes only.", - "Models in this stage are more mature than experimental models.", - "Models in this stage are considered stable and ready for production use.", - "If the model is on this stage, it means that this model is on the path to deprecation in near future. Only existing customers can use this model.", - "Models in this stage are deprecated. These models cannot be used.", - "Models in this stage are retired. These models cannot be used." - ], + "startIndex": { + "description": "Optional. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes.", + "type": "integer", + "format": "int32" + }, + "uri": { + "description": "Optional. URI that is attributed as a source for a portion of the text.", "type": "string" }, - "message": { - "description": "A message explaining the model status.", + "license": { + "description": "Optional. License for the GitHub project that is attributed as a source for segment. License info is required for code citations.", "type": "string" }, - "retirementTime": { - "description": "The time at which the model will be retired.", - "type": "string", - "format": "google-datetime" + "endIndex": { + "format": "int32", + "description": "Optional. End of the attributed segment, exclusive.", + "type": "integer" } - }, - "type": "object", - "description": "The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable." + } }, - "GenerateContentBatch": { - "type": "object", - "description": "A resource representing a batch of `GenerateContent` requests.", + "CachedContent": { "properties": { - "state": { - "type": "string", - "x-enum-descriptions": [ - "The batch state is unspecified.", - "The service is preparing to run the batch.", - "The batch is in progress.", - "The batch completed successfully.", - "The batch failed.", - "The batch has been cancelled.", - "The batch has expired." - ], - "description": "Output only. The state of the batch.", - "enum": [ - "BATCH_STATE_UNSPECIFIED", - "BATCH_STATE_PENDING", - "BATCH_STATE_RUNNING", - "BATCH_STATE_SUCCEEDED", - "BATCH_STATE_FAILED", - "BATCH_STATE_CANCELLED", - "BATCH_STATE_EXPIRED" - ], - "readOnly": true + "ttl": { + "format": "google-duration", + "description": "Input only. New TTL for this resource, input only.", + "type": "string" }, - "output": { - "description": "Output only. The output of the batch request.", - "readOnly": true, - "$ref": "#/components/schemas/GenerateContentBatchOutput" + "contents": { + "description": "Optional. Input only. Immutable. The content to cache.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Content" + } }, - "createTime": { - "readOnly": true, - "type": "string", + "updateTime": { "format": "google-datetime", - "description": "Output only. The time at which the batch was created." + "description": "Output only. When the cache entry was last updated in UTC time.", + "readOnly": true, + "type": "string" }, - "endTime": { + "usageMetadata": { + "description": "Output only. Metadata on the usage of the cached content.", "readOnly": true, - "type": "string", + "$ref": "#/components/schemas/CachedContentUsageMetadata" + }, + "createTime": { "format": "google-datetime", - "description": "Output only. The time at which the batch processing completed." + "description": "Output only. Creation time of the cache entry.", + "readOnly": true, + "type": "string" }, - "priority": { + "expireTime": { + "description": "Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input.", "type": "string", - "format": "int64", - "description": "Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0." + "format": "google-datetime" + }, + "systemInstruction": { + "description": "Optional. Input only. Immutable. Developer set system instruction. Currently text only.", + "$ref": "#/components/schemas/Content" }, - "model": { - "type": "string", - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`." + "displayName": { + "description": "Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters.", + "type": "string" }, "name": { - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", + "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", "readOnly": true, "type": "string" }, - "batchStats": { - "description": "Output only. Stats about the batch.", - "readOnly": true, - "$ref": "#/components/schemas/BatchStats" + "model": { + "description": "Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}`", + "type": "string" }, - "inputConfig": { - "$ref": "#/components/schemas/InputConfig", - "description": "Required. Input configuration of the instances on which batch processing are performed." + "tools": { + "items": { + "$ref": "#/components/schemas/Tool" + }, + "description": "Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response", + "type": "array" }, - "displayName": { - "type": "string", - "description": "Required. The user-defined name of this batch." + "toolConfig": { + "description": "Optional. Input only. Immutable. Tool config. This config is shared for all tools.", + "$ref": "#/components/schemas/ToolConfig" + } + }, + "description": "Content that has been preprocessed and can be used in subsequent request to GenerativeService. Cached content can be only used with model it was created for.", + "type": "object" + }, + "ListModelsResponse": { + "description": "Response from `ListModel` containing a paginated list of Models.", + "type": "object", + "properties": { + "models": { + "description": "The returned Models.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Model" + } }, - "updateTime": { - "description": "Output only. The time at which the batch was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no more pages.", + "type": "string" } } }, - "CountTokensResponse": { + "LanguageHints": { "properties": { - "cacheTokensDetails": { - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - }, - "readOnly": true, + "languageCodes": { + "deprecated": true, + "description": "Required. BCP-47 language codes.", "type": "array", - "description": "Output only. List of modalities that were processed in the cached content." - }, - "totalTokens": { - "description": "The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative.", - "type": "integer", - "format": "int32" - }, - "cachedContentTokenCount": { - "type": "integer", - "format": "int32", - "description": "Number of tokens in the cached part of the prompt (the cached content)." - }, - "promptTokensDetails": { "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - }, - "readOnly": true, - "type": "array", - "description": "Output only. List of modalities that were processed in the request input." + "type": "string" + } } }, - "description": "A response from `CountTokens`. It returns the model's `token_count` for the `prompt`.", - "type": "object" + "description": "Provides hints to the model about possible languages present in the audio.", + "type": "object", + "deprecated": true }, - "FileData": { + "SearchTypes": { + "description": "Different types of search that can be enabled on the GoogleSearch tool.", "type": "object", - "description": "URI based data.", "properties": { - "mimeType": { - "type": "string", - "description": "Optional. The IANA standard MIME type of the source data." + "webSearch": { + "description": "Optional. Enables web search. Only text results are returned.", + "$ref": "#/components/schemas/WebSearch" }, - "fileUri": { - "type": "string", - "description": "Required. URI." + "imageSearch": { + "description": "Optional. Enables image search. Image bytes are returned.", + "$ref": "#/components/schemas/ImageSearch" } } }, - "InlinedResponse": { + "UploadToFileSearchStoreRequest": { + "description": "Request for `UploadToFileSearchStore`.", + "type": "object", "properties": { - "response": { - "description": "Output only. The response to the request.", - "readOnly": true, - "$ref": "#/components/schemas/GenerateContentResponse" + "displayName": { + "description": "Optional. Display name of the created document.", + "type": "string" }, - "error": { - "description": "Output only. The error encountered while processing the request.", - "readOnly": true, - "$ref": "#/components/schemas/Status" + "chunkingConfig": { + "description": "Optional. Config for telling the service how to chunk the data. If not provided, the service will use default parameters.", + "$ref": "#/components/schemas/ChunkingConfig" }, - "metadata": { - "readOnly": true, - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Output only. The metadata associated with the request." + "customMetadata": { + "description": "Custom metadata to be associated with the data.", + "type": "array", + "items": { + "$ref": "#/components/schemas/CustomMetadata" + } + }, + "mimeType": { + "description": "Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content.", + "type": "string" } - }, - "description": "The response to a single request in the batch.", - "type": "object" + } }, - "EnvironmentNetworkEgressAllowlist": { + "StringList": { "properties": { - "allowlist": { - "items": { - "$ref": "#/components/schemas/EgressRule" - }, + "values": { + "description": "The string values of the metadata to store.", "type": "array", - "description": "List of allowed domains and their configurations." + "items": { + "type": "string" + } } }, - "description": "Network egress configuration for the environment.", + "description": "User provided string values assigned to a single metadata key.", "type": "object" }, - "EmbedContentBatchOutput": { + "ToolConfig": { + "description": "The Tool configuration containing parameters for specifying `Tool` use in the request.", + "type": "object", "properties": { - "responsesFile": { - "description": "Output only. The file ID of the file containing the responses. The file will be a JSONL file with a single response per line. The responses will be `EmbedContentResponse` messages formatted as JSON. The responses will be written in the same order as the input requests.", - "readOnly": true, - "type": "string" + "functionCallingConfig": { + "description": "Optional. Function calling config.", + "$ref": "#/components/schemas/FunctionCallingConfig" }, - "inlinedResponses": { - "readOnly": true, - "$ref": "#/components/schemas/InlinedEmbedContentResponses", - "description": "Output only. The responses to the requests in the batch. Returned when the batch was built using inlined requests. The responses will be in the same order as the input requests." + "includeServerSideToolInvocations": { + "description": "Optional. If true, the API response will include the server-side tool calls and responses within the `Content` message. This allows clients to observe the server's tool interactions.", + "type": "boolean" + }, + "retrievalConfig": { + "description": "Optional. Retrieval config.", + "$ref": "#/components/schemas/RetrievalConfig" } - }, - "type": "object", - "description": "The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field." + } }, - "GroundingMetadata": { + "GenerateContentBatch": { + "description": "A resource representing a batch of `GenerateContent` requests.", + "type": "object", "properties": { - "imageSearchQueries": { - "type": "array", - "description": "Image search queries used for grounding.", - "items": { - "type": "string" - } + "batchStats": { + "$ref": "#/components/schemas/BatchStats", + "description": "Output only. Stats about the batch.", + "readOnly": true }, - "webSearchQueries": { - "type": "array", - "description": "Web search queries for the following-up web search.", - "items": { - "type": "string" - } + "createTime": { + "description": "Output only. The time at which the batch was created.", + "readOnly": true, + "type": "string", + "format": "google-datetime" }, - "groundingChunks": { - "type": "array", - "description": "List of supporting references retrieved from specified grounding source. When streaming, this only contains the grounding chunks that have not been included in the grounding metadata of previous responses.", - "items": { - "$ref": "#/components/schemas/GroundingChunk" - } + "output": { + "description": "Output only. The output of the batch request.", + "readOnly": true, + "$ref": "#/components/schemas/GenerateContentBatchOutput" }, - "groundingSupports": { - "type": "array", - "description": "List of grounding support.", - "items": { - "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaGroundingSupport" - } + "updateTime": { + "format": "google-datetime", + "description": "Output only. The time at which the batch was last updated.", + "readOnly": true, + "type": "string" }, - "retrievalMetadata": { - "$ref": "#/components/schemas/RetrievalMetadata", - "description": "Metadata related to retrieval in the grounding flow." + "priority": { + "format": "int64", + "description": "Optional. The priority of the batch. Batches with a higher priority value will be processed before batches with a lower priority value. Negative values are allowed. Default is 0.", + "type": "string" }, - "googleMapsWidgetContextToken": { + "state": { + "readOnly": true, + "x-enum-descriptions": [ + "The batch state is unspecified.", + "The service is preparing to run the batch.", + "The batch is in progress.", + "The batch completed successfully.", + "The batch failed.", + "The batch has been cancelled.", + "The batch has expired." + ], + "description": "Output only. The state of the batch.", "type": "string", - "description": "Optional. Resource name of the Google Maps widget context token that can be used with the PlacesContextElement widget in order to render contextual data. Only populated in the case that grounding with Google Maps is enabled." + "enum": [ + "BATCH_STATE_UNSPECIFIED", + "BATCH_STATE_PENDING", + "BATCH_STATE_RUNNING", + "BATCH_STATE_SUCCEEDED", + "BATCH_STATE_FAILED", + "BATCH_STATE_CANCELLED", + "BATCH_STATE_EXPIRED" + ] }, - "searchEntryPoint": { - "description": "Optional. Google search entry for the following-up web searches.", - "$ref": "#/components/schemas/SearchEntryPoint" + "endTime": { + "format": "google-datetime", + "description": "Output only. The time at which the batch processing completed.", + "readOnly": true, + "type": "string" + }, + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" + }, + "name": { + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", + "readOnly": true, + "type": "string" + }, + "inputConfig": { + "description": "Required. Input configuration of the instances on which batch processing are performed.", + "$ref": "#/components/schemas/InputConfig" + }, + "displayName": { + "description": "Required. The user-defined name of this batch.", + "type": "string" } - }, - "type": "object", - "description": "Metadata returned to client when grounding is enabled." + } } } }