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 13e55f661..6a9f2da3d 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 @@ -397,8 +397,8 @@ partial void ProcessBatchesUpdateEmbedContentBatchResponseContent( /// /// /// - /// - /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// + /// Stats about the batch. /// /// /// Required. The user-defined name of this batch. @@ -406,12 +406,12 @@ partial void ProcessBatchesUpdateEmbedContentBatchResponseContent( /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// - /// - /// 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. /// + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// /// /// Configures the input to the batch request. /// @@ -421,22 +421,22 @@ partial void ProcessBatchesUpdateEmbedContentBatchResponseContent( public async global::System.Threading.Tasks.Task BatchesUpdateEmbedContentBatchAsync( string batchesId, string? updateMask = default, - string? model = default, + global::Google.Gemini.EmbedContentBatchStats? batchStats = default, string? displayName = default, global::Google.Gemini.EmbedContentBatchOutput? output = default, - global::Google.Gemini.EmbedContentBatchStats? batchStats = default, string? priority = default, + string? model = default, global::Google.Gemini.InputEmbedContentConfig? inputConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.EmbedContentBatch { - Model = model, + BatchStats = batchStats, DisplayName = displayName, Output = output, - BatchStats = batchStats, Priority = priority, + Model = model, InputConfig = inputConfig, }; 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 f7caab36b..8de383fb0 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 @@ -397,47 +397,47 @@ partial void ProcessBatchesUpdateGenerateContentBatchResponseContent( /// /// /// + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// /// /// 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 `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// + /// + /// Required. The user-defined name of this batch. + /// /// /// Stats about the batch. /// /// /// Configures the input to the batch request. /// - /// - /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. - /// - /// - /// Required. The user-defined name of this 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 BatchesUpdateGenerateContentBatchAsync( string batchesId, string? updateMask = default, + string? model = default, string? priority = default, global::Google.Gemini.GenerateContentBatchOutput? output = default, + string? displayName = default, global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.InputConfig? inputConfig = default, - string? model = default, - string? displayName = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentBatch { + Model = model, Priority = priority, Output = output, + DisplayName = displayName, BatchStats = batchStats, InputConfig = inputConfig, - Model = model, - DisplayName = displayName, }; return await BatchesUpdateGenerateContentBatchAsync( 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 df0e9e79c..26e4dca03 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 @@ -380,60 +380,60 @@ partial void ProcessCachedContentsCreateResponseContent( /// /// Creates CachedContent resource. /// - /// - /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response - /// - /// - /// 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}` + /// + /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// /// /// Metadata on the usage of the cached content. /// + /// + /// 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. /// - /// - /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + /// + /// Optional. Input only. Immutable. The content to cache. /// - /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// /// /// Input only. New TTL for this resource, input only. /// - /// - /// Optional. Input only. Immutable. The content to cache. + /// + /// 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. /// /// 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::System.Collections.Generic.IList? tools = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, + string? expireTime = default, global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, + global::Google.Gemini.Content? systemInstruction = default, string? displayName = default, - string? expireTime = default, - global::Google.Gemini.ToolConfig? toolConfig = default, - string? ttl = default, global::System.Collections.Generic.IList? contents = default, + string? model = default, + string? ttl = default, + global::System.Collections.Generic.IList? tools = default, + global::Google.Gemini.ToolConfig? toolConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.CachedContent { - Tools = tools, - SystemInstruction = systemInstruction, - Model = model, + ExpireTime = expireTime, UsageMetadata = usageMetadata, + SystemInstruction = systemInstruction, DisplayName = displayName, - ExpireTime = expireTime, - ToolConfig = toolConfig, - Ttl = ttl, Contents = contents, + Model = model, + Ttl = ttl, + Tools = tools, + ToolConfig = toolConfig, }; 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 bda2871cb..9f5cde55c 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 @@ -397,32 +397,32 @@ partial void ProcessCachedContentsPatchResponseContent( /// /// /// - /// - /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response - /// - /// - /// 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}` + /// + /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// /// /// Metadata on the usage of the cached content. /// + /// + /// 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. /// - /// - /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + /// + /// Optional. Input only. Immutable. The content to cache. /// - /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// /// /// Input only. New TTL for this resource, input only. /// - /// - /// Optional. Input only. Immutable. The content to cache. + /// + /// 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. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with @@ -430,29 +430,29 @@ partial void ProcessCachedContentsPatchResponseContent( public async global::System.Threading.Tasks.Task CachedContentsPatchAsync( string cachedContentsId, string? updateMask = default, - global::System.Collections.Generic.IList? tools = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, + string? expireTime = default, global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, + global::Google.Gemini.Content? systemInstruction = default, string? displayName = default, - string? expireTime = default, - global::Google.Gemini.ToolConfig? toolConfig = default, - string? ttl = default, global::System.Collections.Generic.IList? contents = default, + string? model = default, + string? ttl = default, + global::System.Collections.Generic.IList? tools = default, + global::Google.Gemini.ToolConfig? toolConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.CachedContent { - Tools = tools, - SystemInstruction = systemInstruction, - Model = model, + ExpireTime = expireTime, UsageMetadata = usageMetadata, + SystemInstruction = systemInstruction, DisplayName = displayName, - ExpireTime = expireTime, - ToolConfig = toolConfig, - Ttl = ttl, Contents = contents, + Model = model, + Ttl = ttl, + Tools = tools, + ToolConfig = toolConfig, }; 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 c431453ef..bef983a87 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 @@ -387,12 +387,12 @@ partial void ProcessCorporaPermissionsCreateResponseContent( /// Create a permission to a specific resource. /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -401,16 +401,16 @@ partial void ProcessCorporaPermissionsCreateResponseContent( /// public async global::System.Threading.Tasks.Task CorporaPermissionsCreateAsync( string corporaId, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { - GranteeType = granteeType, EmailAddress = emailAddress, + GranteeType = granteeType, Role = role, }; 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 00dfd02df..cf1d16292 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 @@ -404,12 +404,12 @@ partial void ProcessCorporaPermissionsPatchResponseContent( /// /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -420,16 +420,16 @@ partial void ProcessCorporaPermissionsPatchResponseContent( string permissionsId, string corporaId, string? updateMask = default, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { - GranteeType = granteeType, EmailAddress = emailAddress, + GranteeType = granteeType, Role = role, }; 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 ff3ce6766..0b072a77a 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 @@ -387,12 +387,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessDynamicGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 decb23b5b..c5ca86fc1 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 @@ -387,12 +387,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessDynamicStreamGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 1383cc1a9..86912c622 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 @@ -360,12 +360,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -375,51 +390,36 @@ partial void ProcessDynamicStreamGenerateContentAsStreamResponse( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; var __enumerable = DynamicStreamGenerateContentAsStreamAsync( 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 793995300..a7fd48eb5 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 @@ -387,31 +387,31 @@ partial void ProcessFileSearchStoresImportFileResponseContent( /// Imports a `File` from File Service to a `FileSearchStore`. /// /// + /// + /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto + /// /// /// Required. The name of the `File` to import. Example: `files/abc-123` /// /// /// Custom metadata to be associated with the file. /// - /// - /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto - /// /// 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 FileSearchStoresImportFileAsync( string fileSearchStoresId, + global::Google.Gemini.ChunkingConfig? chunkingConfig = default, string? fileName = default, global::System.Collections.Generic.IList? customMetadata = 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 { + ChunkingConfig = chunkingConfig, FileName = fileName, CustomMetadata = customMetadata, - ChunkingConfig = chunkingConfig, }; return await FileSearchStoresImportFileAsync( 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 f2b7f6a3f..c740841c3 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 @@ -390,12 +390,12 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( /// /// Optional. Display name of the created document. /// - /// - /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. - /// /// /// 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. + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -405,8 +405,8 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( public async global::System.Threading.Tasks.Task MediaUploadToFileSearchStoreAsync( string fileSearchStoresId, string? displayName = default, - string? mimeType = default, global::System.Collections.Generic.IList? customMetadata = default, + string? mimeType = default, global::Google.Gemini.ChunkingConfig? chunkingConfig = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) @@ -414,8 +414,8 @@ partial void ProcessMediaUploadToFileSearchStoreResponseContent( var __request = new global::Google.Gemini.UploadToFileSearchStoreRequest { DisplayName = displayName, - MimeType = mimeType, CustomMetadata = customMetadata, + MimeType = mimeType, ChunkingConfig = chunkingConfig, }; 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 2fc245da4..90f56f580 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 @@ -389,12 +389,12 @@ 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}` /// + /// + /// 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. /// @@ -403,16 +403,16 @@ partial void ProcessModelsEmbedContentResponseContent( /// public async global::System.Threading.Tasks.Task ModelsEmbedContentAsync( string modelsId, - global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, string? model = default, + global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, global::Google.Gemini.Content? content = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.EmbedContentRequest { - EmbedContentConfig = embedContentConfig, Model = model, + EmbedContentConfig = embedContentConfig, Content = content, }; 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 fa46d36d7..be158ec8a 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 @@ -387,12 +387,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessModelsGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 f01071179..306d80ec9 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 @@ -387,12 +387,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessModelsStreamGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 e0f8b2aa9..faff69e62 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 @@ -360,12 +360,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -375,51 +390,36 @@ partial void ProcessModelsStreamGenerateContentAsStreamResponse( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 22b569e61..ed38457cd 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 @@ -390,30 +390,30 @@ partial void ProcessTunedModelsCreateResponseContent( /// 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 /// /// - /// - /// 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. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` /// - /// - /// 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. A short description of this model. + /// + /// + /// 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. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// - /// - /// Optional. A short description of this model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. List of project numbers that have read access to the tuned 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. 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. /// @@ -422,28 +422,28 @@ partial void ProcessTunedModelsCreateResponseContent( /// public async global::System.Threading.Tasks.Task TunedModelsCreateAsync( string? tunedModelId = default, - int? topK = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - global::Google.Gemini.TuningTask? tuningTask = default, string? baseModel = default, - float? temperature = default, - string? displayName = default, string? description = default, + int? topK = default, + string? displayName = default, + global::Google.Gemini.TuningTask? tuningTask = default, global::System.Collections.Generic.IList? readerProjectNumbers = default, + float? temperature = default, float? topP = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.TunedModel { - TopK = topK, TunedModelSource = tunedModelSource, - TuningTask = tuningTask, BaseModel = baseModel, - Temperature = temperature, - DisplayName = displayName, Description = description, + TopK = topK, + DisplayName = displayName, + TuningTask = tuningTask, ReaderProjectNumbers = readerProjectNumbers, + Temperature = temperature, TopP = topP, }; 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 2b5ab65fd..e94afc458 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 @@ -387,12 +387,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessTunedModelsGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 03864bcb6..593dc9155 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 @@ -397,30 +397,30 @@ 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. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` /// - /// - /// 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. A short description of this model. + /// + /// + /// 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. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// - /// - /// Optional. A short description of this model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. List of project numbers that have read access to the tuned 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. 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. /// @@ -430,28 +430,28 @@ partial void ProcessTunedModelsPatchResponseContent( public async global::System.Threading.Tasks.Task TunedModelsPatchAsync( string tunedModelsId, string? updateMask = default, - int? topK = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - global::Google.Gemini.TuningTask? tuningTask = default, string? baseModel = default, - float? temperature = default, - string? displayName = default, string? description = default, + int? topK = default, + string? displayName = default, + global::Google.Gemini.TuningTask? tuningTask = default, global::System.Collections.Generic.IList? readerProjectNumbers = default, + float? temperature = default, float? topP = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.TunedModel { - TopK = topK, TunedModelSource = tunedModelSource, - TuningTask = tuningTask, BaseModel = baseModel, - Temperature = temperature, - DisplayName = displayName, Description = description, + TopK = topK, + DisplayName = displayName, + TuningTask = tuningTask, ReaderProjectNumbers = readerProjectNumbers, + Temperature = temperature, TopP = topP, }; 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 83def6f1a..254ca9d7a 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 @@ -387,12 +387,12 @@ partial void ProcessTunedModelsPermissionsCreateResponseContent( /// Create a permission to a specific resource. /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -401,16 +401,16 @@ partial void ProcessTunedModelsPermissionsCreateResponseContent( /// public async global::System.Threading.Tasks.Task TunedModelsPermissionsCreateAsync( string tunedModelsId, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { - GranteeType = granteeType, EmailAddress = emailAddress, + GranteeType = granteeType, Role = role, }; 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 81f9069f9..b61b9eeac 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 @@ -404,12 +404,12 @@ partial void ProcessTunedModelsPermissionsPatchResponseContent( /// /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -420,16 +420,16 @@ partial void ProcessTunedModelsPermissionsPatchResponseContent( string tunedModelsId, string permissionsId, string? updateMask = default, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.Permission { - GranteeType = granteeType, EmailAddress = emailAddress, + GranteeType = granteeType, Role = role, }; 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 867487dbe..7088b046f 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 @@ -387,12 +387,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -402,51 +417,36 @@ partial void ProcessTunedModelsStreamGenerateContentResponseContent( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = default, global::Google.Gemini.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Google.Gemini.GenerateContentRequest { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; 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 d0a5e7a94..a77089ddd 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 @@ -360,12 +360,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -375,51 +390,36 @@ partial void ProcessTunedModelsStreamGenerateContentAsStreamResponse( /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 { + GenerationConfig = generationConfig, + SystemInstruction = systemInstruction, + Store = store, Contents = contents, + CachedContent = cachedContent, ServiceTier = serviceTier, + Tools = tools, ToolConfig = toolConfig, SafetySettings = safetySettings, Model = model, - GenerationConfig = generationConfig, - CachedContent = cachedContent, - Tools = tools, - Store = store, - SystemInstruction = systemInstruction, }; var __enumerable = TunedModelsStreamGenerateContentAsStreamAsync( 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 7acc6c228..ae24c4073 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 @@ -25,8 +25,8 @@ public partial interface IGeminiClient /// /// /// - /// - /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// + /// Stats about the batch. /// /// /// Required. The user-defined name of this batch. @@ -34,12 +34,12 @@ public partial interface IGeminiClient /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// - /// - /// 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. /// + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// /// /// Configures the input to the batch request. /// @@ -49,11 +49,11 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task BatchesUpdateEmbedContentBatchAsync( string batchesId, string? updateMask = default, - string? model = default, + global::Google.Gemini.EmbedContentBatchStats? batchStats = default, string? displayName = default, global::Google.Gemini.EmbedContentBatchOutput? output = default, - global::Google.Gemini.EmbedContentBatchStats? batchStats = default, string? priority = default, + string? model = default, global::Google.Gemini.InputEmbedContentConfig? inputConfig = 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 1ae37d1ea..4643641c9 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 @@ -25,36 +25,36 @@ public partial interface IGeminiClient /// /// /// + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. + /// /// /// 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 `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// + /// + /// Required. The user-defined name of this batch. + /// /// /// Stats about the batch. /// /// /// Configures the input to the batch request. /// - /// - /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. - /// - /// - /// Required. The user-defined name of this 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 BatchesUpdateGenerateContentBatchAsync( string batchesId, string? updateMask = default, + string? model = default, string? priority = default, global::Google.Gemini.GenerateContentBatchOutput? output = default, + string? displayName = default, global::Google.Gemini.BatchStats? batchStats = default, global::Google.Gemini.InputConfig? inputConfig = default, - string? model = 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.CachedContentsCreate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.CachedContentsCreate.g.cs index 5008e27b7..d89d7d660 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 @@ -19,46 +19,46 @@ public partial interface IGeminiClient /// /// Creates CachedContent resource. /// - /// - /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response - /// - /// - /// 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}` + /// + /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// /// /// Metadata on the usage of the cached content. /// + /// + /// 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. /// - /// - /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + /// + /// Optional. Input only. Immutable. The content to cache. /// - /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// /// /// Input only. New TTL for this resource, input only. /// - /// - /// Optional. Input only. Immutable. The content to cache. + /// + /// 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. /// /// 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::System.Collections.Generic.IList? tools = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, + string? expireTime = default, global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, + global::Google.Gemini.Content? systemInstruction = default, string? displayName = default, - string? expireTime = default, - global::Google.Gemini.ToolConfig? toolConfig = default, - string? ttl = default, global::System.Collections.Generic.IList? contents = default, + string? model = default, + string? ttl = default, + global::System.Collections.Generic.IList? tools = default, + global::Google.Gemini.ToolConfig? toolConfig = 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 fa73dbabf..6e9935f00 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 @@ -25,32 +25,32 @@ public partial interface IGeminiClient /// /// /// - /// - /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response - /// - /// - /// 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}` + /// + /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. /// /// /// Metadata on the usage of the cached content. /// + /// + /// 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. /// - /// - /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + /// + /// Optional. Input only. Immutable. The content to cache. /// - /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// /// /// Input only. New TTL for this resource, input only. /// - /// - /// Optional. Input only. Immutable. The content to cache. + /// + /// 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. /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with @@ -58,15 +58,15 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task CachedContentsPatchAsync( string cachedContentsId, string? updateMask = default, - global::System.Collections.Generic.IList? tools = default, - global::Google.Gemini.Content? systemInstruction = default, - string? model = default, + string? expireTime = default, global::Google.Gemini.CachedContentUsageMetadata? usageMetadata = default, + global::Google.Gemini.Content? systemInstruction = default, string? displayName = default, - string? expireTime = default, - global::Google.Gemini.ToolConfig? toolConfig = default, - string? ttl = default, global::System.Collections.Generic.IList? contents = default, + string? model = default, + string? ttl = default, + global::System.Collections.Generic.IList? tools = default, + global::Google.Gemini.ToolConfig? toolConfig = 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 92284c1b8..1bcb45aab 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 @@ -22,12 +22,12 @@ public partial interface IGeminiClient /// Create a permission to a specific resource. /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -36,8 +36,8 @@ public partial interface IGeminiClient /// global::System.Threading.Tasks.Task CorporaPermissionsCreateAsync( string corporaId, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = 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 07ba825db..5c1f72edc 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 @@ -28,12 +28,12 @@ public partial interface IGeminiClient /// /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -44,8 +44,8 @@ public partial interface IGeminiClient string permissionsId, string corporaId, string? updateMask = default, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = 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 77e4f447f..d4027c4c1 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 @@ -22,12 +22,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 2a4ac009c..aa09a7005 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 @@ -22,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 bacce3f3c..97c4536e4 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,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 30e4cb8e7..1f5210dfc 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 @@ -22,23 +22,23 @@ public partial interface IGeminiClient /// Imports a `File` from File Service to a `FileSearchStore`. /// /// + /// + /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto + /// /// /// Required. The name of the `File` to import. Example: `files/abc-123` /// /// /// Custom metadata to be associated with the file. /// - /// - /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto - /// /// 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 FileSearchStoresImportFileAsync( string fileSearchStoresId, + global::Google.Gemini.ChunkingConfig? chunkingConfig = default, string? fileName = default, global::System.Collections.Generic.IList? customMetadata = 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 2a47541d4..08b19fbf9 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 @@ -25,12 +25,12 @@ public partial interface IGeminiClient /// /// Optional. Display name of the created document. /// - /// - /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. - /// /// /// 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. + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -40,8 +40,8 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task MediaUploadToFileSearchStoreAsync( string fileSearchStoresId, string? displayName = default, - string? mimeType = default, global::System.Collections.Generic.IList? customMetadata = default, + string? mimeType = 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.ModelsEmbedContent.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.IGeminiClient.ModelsEmbedContent.g.cs index e1ba59bab..ef3060090 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 @@ -24,12 +24,12 @@ 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}` /// + /// + /// 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. /// @@ -38,8 +38,8 @@ public partial interface IGeminiClient /// global::System.Threading.Tasks.Task ModelsEmbedContentAsync( string modelsId, - global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, string? model = default, + global::Google.Gemini.EmbedContentConfig? embedContentConfig = default, global::Google.Gemini.Content? content = 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 f76117b4a..2f4c812dd 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 @@ -22,12 +22,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 319564270..89fc57ef2 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 @@ -22,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 eaf74e929..33b5e3309 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,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 ac2e0f314..9741d90de 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 @@ -22,30 +22,30 @@ public partial interface IGeminiClient /// 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 /// /// - /// - /// 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. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` /// - /// - /// 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. A short description of this model. + /// + /// + /// 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. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// - /// - /// Optional. A short description of this model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. List of project numbers that have read access to the tuned 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. 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. /// @@ -54,14 +54,14 @@ public partial interface IGeminiClient /// global::System.Threading.Tasks.Task TunedModelsCreateAsync( string? tunedModelId = default, - int? topK = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - global::Google.Gemini.TuningTask? tuningTask = default, string? baseModel = default, - float? temperature = default, - string? displayName = default, string? description = default, + int? topK = default, + string? displayName = default, + global::Google.Gemini.TuningTask? tuningTask = default, global::System.Collections.Generic.IList? readerProjectNumbers = default, + float? temperature = default, float? topP = 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 6b0108206..616773f23 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 @@ -22,12 +22,27 @@ 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. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 d71b60f1f..9b2d2a6e9 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 @@ -25,30 +25,30 @@ 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. - /// /// /// Tuned model as a source for training a new model. /// - /// - /// Tuning tasks that create tuned models. - /// /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` /// - /// - /// 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. A short description of this model. + /// + /// + /// 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. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// - /// - /// Optional. A short description of this model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. List of project numbers that have read access to the tuned 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. 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. /// @@ -58,14 +58,14 @@ public partial interface IGeminiClient global::System.Threading.Tasks.Task TunedModelsPatchAsync( string tunedModelsId, string? updateMask = default, - int? topK = default, global::Google.Gemini.TunedModelSource? tunedModelSource = default, - global::Google.Gemini.TuningTask? tuningTask = default, string? baseModel = default, - float? temperature = default, - string? displayName = default, string? description = default, + int? topK = default, + string? displayName = default, + global::Google.Gemini.TuningTask? tuningTask = default, global::System.Collections.Generic.IList? readerProjectNumbers = default, + float? temperature = default, float? topP = 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 10d0529a0..d7c71c9f5 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 @@ -22,12 +22,12 @@ public partial interface IGeminiClient /// Create a permission to a specific resource. /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -36,8 +36,8 @@ public partial interface IGeminiClient /// global::System.Threading.Tasks.Task TunedModelsPermissionsCreateAsync( string tunedModelsId, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = 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 8cd255655..d7b4e42d9 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 @@ -28,12 +28,12 @@ public partial interface IGeminiClient /// /// /// - /// - /// 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. /// + /// + /// Optional. Immutable. The type of the grantee. + /// /// /// Required. The role granted by this permission. /// @@ -44,8 +44,8 @@ public partial interface IGeminiClient string tunedModelsId, string permissionsId, string? updateMask = default, - global::Google.Gemini.PermissionGranteeType? granteeType = default, string? emailAddress = default, + global::Google.Gemini.PermissionGranteeType? granteeType = default, global::Google.Gemini.PermissionRole? role = 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 d2cc168fb..fdd7e5068 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 @@ -22,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 677a15060..6827a5b43 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,12 +22,27 @@ 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`. /// /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -37,36 +52,21 @@ public partial interface IGeminiClient /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// /// 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::Google.Gemini.GenerationConfig? generationConfig = default, + global::Google.Gemini.Content? systemInstruction = default, + bool? store = default, global::System.Collections.Generic.IList? contents = default, + string? cachedContent = default, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier = default, + global::System.Collections.Generic.IList? tools = default, global::Google.Gemini.ToolConfig? toolConfig = default, global::System.Collections.Generic.IList? safetySettings = default, string? model = default, - global::Google.Gemini.GenerationConfig? generationConfig = default, - string? cachedContent = default, - global::System.Collections.Generic.IList? tools = default, - bool? store = default, - global::Google.Gemini.Content? systemInstruction = 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 bdbe7e4f5..38280d348 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContext.g.cs @@ -13,69 +13,45 @@ namespace Google.Gemini DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull, Converters = new global::System.Type[] { - typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TunedModelStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.TunedModelStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SchemaTypeNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonJsonConverter), typeof(global::Google.Gemini.JsonConverters.PromptFeedbackBlockReasonNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FileSourceJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FileSourceNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FileStateJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FileStateNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentBatchStateNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingJsonConverter), typeof(global::Google.Gemini.JsonConverters.FunctionResponseSchedulingNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.DynamicRetrievalConfigModeNullableJsonConverter), - - typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.UrlMetadataUrlRetrievalStatusNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TunedModelStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.TunedModelStateNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.PermissionGranteeTypeJsonConverter), @@ -85,25 +61,33 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.PermissionRoleNullableJsonConverter), - 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.CodeExecutionResultOutcomeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CodeExecutionResultOutcomeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentJsonConverter), typeof(global::Google.Gemini.JsonConverters.ComputerUseEnvironmentNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelJsonConverter), - typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ThinkingConfigThinkingLevelNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.SafetyRatingProbabilityNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.GenerationConfigResponseModalitieJsonConverter), @@ -113,325 +97,341 @@ namespace Google.Gemini typeof(global::Google.Gemini.JsonConverters.GenerationConfigMediaResolutionNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdJsonConverter), typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter), - typeof(global::Google.Gemini.JsonConverters.FunctionCallingConfigModeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.DocumentStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter), - typeof(global::Google.Gemini.JsonConverters.DocumentStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.ModelStatusModelStageNullableJsonConverter), typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeJsonConverter), typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FileStateJsonConverter), - typeof(global::Google.Gemini.JsonConverters.ToolCallToolTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FileStateNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FileSourceJsonConverter), - typeof(global::Google.Gemini.JsonConverters.CandidateFinishReasonNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.FileSourceNullableJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityJsonConverter), - typeof(global::Google.Gemini.JsonConverters.SchemaTypeNullableJsonConverter), + typeof(global::Google.Gemini.JsonConverters.ModalityTokenCountModalityNullableJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.DocumentStateJsonConverter), + + typeof(global::Google.Gemini.JsonConverters.DocumentStateNullableJsonConverter), 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.EmbedContentBatch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(string))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchState), TypeInfoPropertyName = "EmbedContentBatchState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchOutput))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatchStats))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputEmbedContentConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfigTaskType), TypeInfoPropertyName = "EmbedContentConfigTaskType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(int))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(object))] - [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.TuningExample))] - [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.SearchTypes))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WebSearch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageSearch))] - [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.File))] - [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.UrlContextMetadata))] - [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.RetrievalMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(float))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ReviewSnippet))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TunedModelSource))] - [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::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(string))] + [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.Blob))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(byte[]))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Tool))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearch))] + [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(global::Google.Gemini.McpServer))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecution))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ComputerUse))] - [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.FunctionDeclaration))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlContext))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearchRetrieval))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleSearch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileSearch))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleMaps))] - [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.RetrievalConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LatLng))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResult))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResultOutcome), TypeInfoPropertyName = "CodeExecutionResultOutcome2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WebSearch))] + [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.FileSearchStore))] + [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.Content))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentRequest))] + [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.PrebuiltVoiceConfig))] + [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.CitationSource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFile))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFileState), TypeInfoPropertyName = "GeneratedFileState2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Status))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Schema))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(double))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(object))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SchemaType), TypeInfoPropertyName = "SchemaType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] [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::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.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.FileSource), TypeInfoPropertyName = "FileSource2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileState), TypeInfoPropertyName = "FileState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoFileMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(byte[]))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Status))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AttributionSourceId))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SemanticRetrieverChunk))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingPassageId))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseBlob))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Interval))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingProbability), TypeInfoPropertyName = "SafetyRatingProbability2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetyRatingCategory), TypeInfoPropertyName = "SafetyRatingCategory2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfig))] - [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.EmbedContentRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PromptFeedbackBlockReason), TypeInfoPropertyName = "PromptFeedbackBlockReason2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentResponse))] + [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.PrebuiltVoiceConfig))] + [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::System.Collections.Generic.IList))] + [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.TuningTask))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Hyperparameters))] [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.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.ListDocumentsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Document))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageSearch))] + [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.UsageMetadata))] [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.InlinedResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Empty))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModalityTokenCountModality), TypeInfoPropertyName = "ModalityTokenCountModality2")] - [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.ModelStatus))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatusModelStage), TypeInfoPropertyName = "ModelStatusModelStage2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionDeclarationBehavior), TypeInfoPropertyName = "FunctionDeclarationBehavior2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Schema))] - [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::Google.Gemini.BatchStats))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CitationSource))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UrlMetadataUrlRetrievalStatus), TypeInfoPropertyName = "UrlMetadataUrlRetrievalStatus2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Operation))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCall))] - [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.Content))] + [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.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::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContentUsageMetadata))] - [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.CreateFileResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.UploadToFileSearchStoreRequest))] - [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.ChunkingConfig))] - [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::Google.Gemini.InlinedEmbedContentResponses))] + [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.RegisterFilesRequest))] + [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.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.GenerateContentResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Candidate))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatus))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingPassageId))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Image))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingMetadata))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RetrievalMetadata))] [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.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.CitationMetadata))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.MultiSpeakerVoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SpeakerVoiceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WhiteSpaceConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CreateFileRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImageConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InputConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.InlinedRequests))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment))] - [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.ListCachedContentsResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [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.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.UploadToFileSearchStoreRequest))] + [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.ChunkingConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionResponseBlob))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FileData))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Part))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCall))] + [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.FunctionResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCall))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.StringList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(float))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentBatch))] + [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.InputEmbedContentConfig))] + [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.EmbedContentRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Web))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ListFilesResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ImportFileRequest))] - [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.GenerateContentBatch))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatchState), TypeInfoPropertyName = "GenerateContentBatchState2")] + [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::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.FunctionResponseScheduling), TypeInfoPropertyName = "FunctionResponseScheduling2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SemanticRetrieverChunk))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchStats))] + [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.AttributionSourceId))] + [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.FunctionCallingConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfigMode), TypeInfoPropertyName = "FunctionCallingConfigMode2")] + [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.StreamableHttpTransport))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingAttribution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.VideoFileMetadata))] + [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.TunedModelSource))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Permission))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PermissionGranteeType), TypeInfoPropertyName = "PermissionGranteeType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.PermissionRole), TypeInfoPropertyName = "PermissionRole2")] - [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.StringList))] - [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.TransferOwnershipRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkStringList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Candidate))] + [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.InlinedResponse))] + [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.TuningExamples))] + [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::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.ImageConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerationConfig))] [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.ToolConfig))] [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::Google.Gemini.GenerationConfig))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCall))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCode))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Blob))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResult))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbeddingUsageMetadata))] - [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.StreamableHttpTransport))] - [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.Document))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CodeExecutionResultOutcome), TypeInfoPropertyName = "CodeExecutionResultOutcome2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Image))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LogprobsResult))] [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::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ComputerUseEnvironment), TypeInfoPropertyName = "ComputerUseEnvironment2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ExecutableCodeLanguage), TypeInfoPropertyName = "ExecutableCodeLanguage2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] - [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.FileSearchStore))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentRequestTaskType), TypeInfoPropertyName = "EmbedContentRequestTaskType2")] + [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.SpeechConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.MultiSpeakerVoiceConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipRequest))] + [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.TuningExample))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCallToolType), TypeInfoPropertyName = "ToolCallToolType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CachedContentUsageMetadata))] + [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.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.RetrievalConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.LatLng))] + [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::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.GenerationConfigMediaResolution), TypeInfoPropertyName = "GenerationConfigMediaResolution2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.RegisterFilesRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingCategory), TypeInfoPropertyName = "SafetySettingCategory2")] + [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.SafetySettingThreshold), TypeInfoPropertyName = "SafetySettingThreshold2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.FunctionCallingConfigMode), TypeInfoPropertyName = "FunctionCallingConfigMode2")] - [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::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.DocumentState), TypeInfoPropertyName = "DocumentState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolResponseToolType), TypeInfoPropertyName = "ToolResponseToolType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingAttribution))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.SafetySettingCategory), TypeInfoPropertyName = "SafetySettingCategory2")] + [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.InputConfig))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.WhiteSpaceConfig))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.AsyncBatchEmbedContentRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Operation))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.EmbedContentConfigTaskType), TypeInfoPropertyName = "EmbedContentConfigTaskType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.CountTokensResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchEmbedContentsResponse))] [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::System.Collections.Generic.IList))] + [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.FunctionDeclarationBehavior), TypeInfoPropertyName = "FunctionDeclarationBehavior2")] + [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.CustomLongRunningOperation))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.TransferOwnershipResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GeneratedFileState), TypeInfoPropertyName = "GeneratedFileState2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ToolCallToolType), TypeInfoPropertyName = "ToolCallToolType2")] - [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.SchemaType), TypeInfoPropertyName = "SchemaType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.BatchGenerateContentRequest))] - [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::Google.Gemini.ImportFileRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.Empty))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.ModelStatusModelStage), TypeInfoPropertyName = "ModelStatusModelStage2")] + [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.ToolResponseToolType), TypeInfoPropertyName = "ToolResponseToolType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GenerateContentBatchState), TypeInfoPropertyName = "GenerateContentBatchState2")] + [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.CreateFileResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Google.Gemini.GroundingChunkStringList))] + [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.ModalityTokenCountModality), TypeInfoPropertyName = "ModalityTokenCountModality2")] + [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::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 0209550c1..693e49787 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.JsonSerializerContextTypes.g.cs @@ -28,972 +28,972 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Google.Gemini.EmbedContentBatch? Type0 { get; set; } + public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Type0 { get; set; } /// /// /// - public string? Type1 { get; set; } + public int? Type1 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchState? Type2 { get; set; } + public string? Type2 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchOutput? Type3 { get; set; } + public global::Google.Gemini.ExecutableCode? Type3 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentBatchStats? Type4 { get; set; } + public global::Google.Gemini.ExecutableCodeLanguage? Type4 { get; set; } /// /// /// - public global::Google.Gemini.InputEmbedContentConfig? Type5 { get; set; } + public global::Google.Gemini.Blob? Type5 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentConfig? Type6 { get; set; } + public byte[]? Type6 { get; set; } /// /// /// - public bool? Type7 { get; set; } + public global::Google.Gemini.Tool? Type7 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentConfigTaskType? Type8 { get; set; } + public global::Google.Gemini.CodeExecution? Type8 { get; set; } /// /// /// - public int? Type9 { get; set; } + public global::Google.Gemini.GoogleSearch? Type9 { get; set; } /// /// /// - public global::Google.Gemini.InlinedRequest? Type10 { get; set; } + public global::Google.Gemini.FileSearch? Type10 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentRequest? Type11 { get; set; } + public global::System.Collections.Generic.IList? Type11 { get; set; } /// /// /// - public object? Type12 { get; set; } + public global::Google.Gemini.McpServer? Type12 { get; set; } /// /// /// - public global::Google.Gemini.ThinkingConfig? Type13 { get; set; } + public global::Google.Gemini.ComputerUse? Type13 { get; set; } /// /// /// - public global::Google.Gemini.ThinkingConfigThinkingLevel? Type14 { get; set; } + public global::System.Collections.Generic.IList? Type14 { get; set; } /// /// /// - public global::Google.Gemini.TuningExample? Type15 { get; set; } + public global::Google.Gemini.FunctionDeclaration? Type15 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentRequests? Type16 { get; set; } + public global::Google.Gemini.UrlContext? Type16 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type17 { get; set; } + public global::Google.Gemini.GoogleSearchRetrieval? Type17 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentRequest? Type18 { get; set; } + public global::Google.Gemini.GoogleMaps? Type18 { get; set; } /// /// /// - public global::Google.Gemini.SearchTypes? Type19 { get; set; } + public global::Google.Gemini.CodeExecutionResult? Type19 { get; set; } /// /// /// - public global::Google.Gemini.WebSearch? Type20 { get; set; } + public global::Google.Gemini.CodeExecutionResultOutcome? Type20 { get; set; } /// /// /// - public global::Google.Gemini.ImageSearch? Type21 { get; set; } + public global::Google.Gemini.WebSearch? Type21 { get; set; } /// /// /// - public global::Google.Gemini.RegisterFilesResponse? Type22 { get; set; } + public global::Google.Gemini.ListFileSearchStoresResponse? Type22 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type23 { get; set; } + public global::System.Collections.Generic.IList? Type23 { get; set; } /// /// /// - public global::Google.Gemini.File? Type24 { get; set; } + public global::Google.Gemini.FileSearchStore? Type24 { get; set; } /// /// /// - public global::Google.Gemini.ListTunedModelsResponse? Type25 { get; set; } + public global::Google.Gemini.CountTokensRequest? Type25 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type26 { get; set; } + public global::System.Collections.Generic.IList? Type26 { get; set; } /// /// /// - public global::Google.Gemini.TunedModel? Type27 { get; set; } + public global::Google.Gemini.Content? Type27 { get; set; } /// /// /// - public global::Google.Gemini.UrlContextMetadata? Type28 { get; set; } + public global::Google.Gemini.GenerateContentRequest? Type28 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type29 { get; set; } + public global::Google.Gemini.SpeakerVoiceConfig? Type29 { get; set; } /// /// /// - public global::Google.Gemini.UrlMetadata? Type30 { get; set; } + public global::Google.Gemini.VoiceConfig? Type30 { get; set; } /// /// /// - public global::Google.Gemini.RetrievalMetadata? Type31 { get; set; } + public global::Google.Gemini.CitationMetadata? Type31 { get; set; } /// /// /// - public float? Type32 { get; set; } + public global::System.Collections.Generic.IList? Type32 { get; set; } /// /// /// - public global::Google.Gemini.ReviewSnippet? Type33 { get; set; } + public global::Google.Gemini.CitationSource? Type33 { get; set; } /// /// /// - public global::Google.Gemini.TunedModelSource? Type34 { get; set; } + public global::Google.Gemini.GeneratedFile? Type34 { get; set; } /// /// /// - public global::Google.Gemini.TunedModelState? Type35 { get; set; } + public global::Google.Gemini.GeneratedFileState? Type35 { get; set; } /// /// /// - public global::Google.Gemini.TuningTask? Type36 { get; set; } + public global::Google.Gemini.Status? Type36 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type37 { get; set; } + public global::Google.Gemini.Schema? Type37 { get; set; } /// /// /// - public global::Google.Gemini.Tool? Type38 { get; set; } + public bool? Type38 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type39 { get; set; } + public double? Type39 { get; set; } /// /// /// - public global::Google.Gemini.McpServer? Type40 { get; set; } + public global::System.Collections.Generic.IList? Type40 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecution? Type41 { get; set; } + public object? Type41 { get; set; } /// /// /// - public global::Google.Gemini.ComputerUse? Type42 { get; set; } + public global::System.Collections.Generic.IList? Type42 { get; set; } /// /// /// - public global::Google.Gemini.UrlContext? Type43 { get; set; } + public global::Google.Gemini.SchemaType? Type43 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type44 { get; set; } + public global::System.Collections.Generic.Dictionary? Type44 { get; set; } /// /// /// - public global::Google.Gemini.FunctionDeclaration? Type45 { get; set; } + public global::Google.Gemini.PromptFeedback? Type45 { get; set; } /// /// /// - public global::Google.Gemini.GoogleSearchRetrieval? Type46 { get; set; } + public global::System.Collections.Generic.IList? Type46 { get; set; } /// /// /// - public global::Google.Gemini.GoogleSearch? Type47 { get; set; } + public global::Google.Gemini.SafetyRating? Type47 { get; set; } /// /// /// - public global::Google.Gemini.FileSearch? Type48 { get; set; } + public global::Google.Gemini.PromptFeedbackBlockReason? Type48 { get; set; } /// /// /// - public global::Google.Gemini.GoogleMaps? Type49 { get; set; } + public global::Google.Gemini.EmbedContentResponse? Type49 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatchOutput? Type50 { get; set; } + public global::Google.Gemini.ContentEmbedding? Type50 { get; set; } /// /// /// - public global::Google.Gemini.InlinedResponses? Type51 { get; set; } + public global::Google.Gemini.EmbeddingUsageMetadata? Type51 { get; set; } /// /// /// - public global::Google.Gemini.RetrievalConfig? Type52 { get; set; } + public global::Google.Gemini.PrebuiltVoiceConfig? Type52 { get; set; } /// /// /// - public global::Google.Gemini.LatLng? Type53 { get; set; } + public global::Google.Gemini.InlinedEmbedContentResponses? Type53 { get; set; } /// /// /// - public global::Google.Gemini.VoiceConfig? Type54 { get; set; } + public global::System.Collections.Generic.IList? Type54 { get; set; } /// /// /// - public global::Google.Gemini.PrebuiltVoiceConfig? Type55 { get; set; } + public global::Google.Gemini.InlinedEmbedContentResponse? Type55 { get; set; } /// /// /// - public global::Google.Gemini.PromptFeedback? Type56 { get; set; } + public global::System.Collections.Generic.IList? Type56 { get; set; } /// /// /// - public global::Google.Gemini.PromptFeedbackBlockReason? Type57 { get; set; } + public global::Google.Gemini.BatchGenerateContentRequest? Type57 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type58 { get; set; } + public global::Google.Gemini.GenerateContentBatch? Type58 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRating? Type59 { get; set; } + public global::Google.Gemini.TuningTask? Type59 { get; set; } /// /// /// - public global::Google.Gemini.RetrievedContext? Type60 { get; set; } + public global::Google.Gemini.Hyperparameters? Type60 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type61 { get; set; } + public global::Google.Gemini.Dataset? Type61 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunkCustomMetadata? Type62 { get; set; } + public global::System.Collections.Generic.IList? Type62 { get; set; } /// /// /// - public global::Google.Gemini.FileSource? Type63 { get; set; } + public global::Google.Gemini.TuningSnapshot? Type63 { get; set; } /// /// /// - public global::Google.Gemini.FileState? Type64 { get; set; } + public global::Google.Gemini.ListDocumentsResponse? Type64 { get; set; } /// /// /// - public global::Google.Gemini.VideoFileMetadata? Type65 { get; set; } + public global::System.Collections.Generic.IList? Type65 { get; set; } /// /// /// - public byte[]? Type66 { get; set; } + public global::Google.Gemini.Document? Type66 { get; set; } /// /// /// - public global::Google.Gemini.Status? Type67 { get; set; } + public global::Google.Gemini.ImageSearch? Type67 { get; set; } /// /// /// - public global::Google.Gemini.AttributionSourceId? Type68 { get; set; } + public global::Google.Gemini.CreateFileRequest? Type68 { get; set; } /// /// /// - public global::Google.Gemini.SemanticRetrieverChunk? Type69 { get; set; } + public global::Google.Gemini.File? Type69 { get; set; } /// /// /// - public global::Google.Gemini.GroundingPassageId? Type70 { get; set; } + public global::Google.Gemini.UsageMetadata? Type70 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponseBlob? Type71 { get; set; } + public global::System.Collections.Generic.IList? Type71 { get; set; } /// /// /// - public global::Google.Gemini.Interval? Type72 { get; set; } + public global::Google.Gemini.ModalityTokenCount? Type72 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRatingProbability? Type73 { get; set; } + public global::Google.Gemini.TopCandidates? Type73 { get; set; } /// /// /// - public global::Google.Gemini.SafetyRatingCategory? Type74 { get; set; } + public global::System.Collections.Generic.IList? Type74 { get; set; } /// /// /// - public global::Google.Gemini.ToolConfig? Type75 { get; set; } + public global::Google.Gemini.LogprobsResultCandidate? Type75 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCallingConfig? Type76 { get; set; } + public global::Google.Gemini.ListCachedContentsResponse? Type76 { get; set; } /// /// /// - public global::Google.Gemini.BatchEmbedContentsRequest? Type77 { get; set; } + public global::System.Collections.Generic.IList? Type77 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type78 { get; set; } + public global::Google.Gemini.CachedContent? Type78 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentRequest? Type79 { get; set; } + public global::Google.Gemini.UrlMetadata? Type79 { get; set; } /// /// /// - public global::Google.Gemini.Hyperparameters? Type80 { get; set; } + public global::Google.Gemini.UrlMetadataUrlRetrievalStatus? Type80 { get; set; } /// /// /// - public global::Google.Gemini.Dataset? Type81 { get; set; } + public global::Google.Gemini.RegisterFilesRequest? Type81 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type82 { get; set; } + public global::Google.Gemini.ListGeneratedFilesResponse? Type82 { get; set; } /// /// /// - public global::Google.Gemini.TuningSnapshot? Type83 { get; set; } + public global::System.Collections.Generic.IList? Type83 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponse? Type84 { get; set; } + public global::Google.Gemini.ListModelsResponse? Type84 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponseScheduling? Type85 { get; set; } + public global::System.Collections.Generic.IList? Type85 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type86 { get; set; } + public global::Google.Gemini.Model? Type86 { get; set; } /// /// /// - public global::Google.Gemini.FunctionResponsePart? Type87 { get; set; } + public global::Google.Gemini.GenerateContentResponse? Type87 { get; set; } /// /// /// - public global::Google.Gemini.UsageMetadata? Type88 { get; set; } + public global::System.Collections.Generic.IList? Type88 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type89 { get; set; } + public global::Google.Gemini.Candidate? Type89 { get; set; } /// /// /// - public global::Google.Gemini.ModalityTokenCount? Type90 { get; set; } + public global::Google.Gemini.ModelStatus? Type90 { get; set; } /// /// /// - public global::Google.Gemini.InlinedResponse? Type91 { get; set; } + public global::Google.Gemini.GroundingPassageId? Type91 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentResponse? Type92 { get; set; } + public global::Google.Gemini.Image? Type92 { get; set; } /// /// /// - public global::Google.Gemini.Empty? Type93 { get; set; } + public global::Google.Gemini.GroundingMetadata? Type93 { get; set; } /// /// /// - public global::Google.Gemini.ModalityTokenCountModality? Type94 { get; set; } + public global::Google.Gemini.RetrievalMetadata? Type94 { get; set; } /// /// /// - public global::Google.Gemini.ListCorporaResponse? Type95 { get; set; } + public global::System.Collections.Generic.IList? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport? Type96 { get; set; } /// /// /// - public global::Google.Gemini.Corpus? Type97 { get; set; } + public global::Google.Gemini.SearchEntryPoint? Type97 { get; set; } /// /// /// - public global::Google.Gemini.ModelStatus? Type98 { get; set; } + public global::System.Collections.Generic.IList? Type98 { get; set; } /// /// /// - public global::Google.Gemini.ModelStatusModelStage? Type99 { get; set; } + public global::Google.Gemini.GroundingChunk? Type99 { get; set; } /// /// /// - public global::Google.Gemini.FunctionDeclarationBehavior? Type100 { get; set; } + public global::Google.Gemini.Interval? Type100 { get; set; } /// /// /// - public global::Google.Gemini.Schema? Type101 { get; set; } + public global::Google.Gemini.SearchTypes? Type101 { get; set; } /// /// /// - public global::Google.Gemini.DynamicRetrievalConfig? Type102 { get; set; } + public global::Google.Gemini.PlaceAnswerSources? Type102 { get; set; } /// /// /// - public global::Google.Gemini.DynamicRetrievalConfigMode? Type103 { get; set; } + public global::System.Collections.Generic.IList? Type103 { get; set; } /// /// /// - public global::Google.Gemini.BatchStats? Type104 { get; set; } + public global::Google.Gemini.ReviewSnippet? Type104 { get; set; } /// /// /// - public global::Google.Gemini.CitationSource? Type105 { get; set; } + public global::Google.Gemini.UploadToFileSearchStoreRequest? Type105 { get; set; } /// /// /// - public global::Google.Gemini.UrlMetadataUrlRetrievalStatus? Type106 { get; set; } + public global::System.Collections.Generic.IList? Type106 { get; set; } /// /// /// - public global::Google.Gemini.Operation? Type107 { get; set; } + public global::Google.Gemini.CustomMetadata? Type107 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCall? Type108 { get; set; } + public global::Google.Gemini.ChunkingConfig? Type108 { get; set; } /// /// /// - public global::Google.Gemini.CountTokensRequest? Type109 { get; set; } + public global::Google.Gemini.FunctionResponseBlob? Type109 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type110 { get; set; } + public global::Google.Gemini.FileData? Type110 { get; set; } /// /// /// - public global::Google.Gemini.Content? Type111 { get; set; } + public global::Google.Gemini.Part? Type111 { get; set; } /// /// /// - public global::Google.Gemini.CachedContent? Type112 { get; set; } + public global::Google.Gemini.FunctionCall? Type112 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type113 { get; set; } + public global::Google.Gemini.VideoMetadata? Type113 { get; set; } /// /// /// - public global::Google.Gemini.CachedContentUsageMetadata? Type114 { get; set; } + public global::Google.Gemini.ToolResponse? Type114 { get; set; } /// /// /// - public global::Google.Gemini.ListPermissionsResponse? Type115 { get; set; } + public global::Google.Gemini.FunctionResponse? Type115 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type116 { get; set; } + public global::Google.Gemini.ToolCall? Type116 { get; set; } /// /// /// - public global::Google.Gemini.Permission? Type117 { get; set; } + public global::Google.Gemini.StringList? Type117 { get; set; } /// /// /// - public global::Google.Gemini.CreateFileResponse? Type118 { get; set; } + public float? Type118 { get; set; } /// /// /// - public global::Google.Gemini.UploadToFileSearchStoreRequest? Type119 { get; set; } + public global::Google.Gemini.EmbedContentBatch? Type119 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type120 { get; set; } + public global::Google.Gemini.EmbedContentBatchStats? Type120 { get; set; } /// /// /// - public global::Google.Gemini.CustomMetadata? Type121 { get; set; } + public global::Google.Gemini.EmbedContentBatchOutput? Type121 { get; set; } /// /// /// - public global::Google.Gemini.ChunkingConfig? Type122 { get; set; } + public global::Google.Gemini.EmbedContentBatchState? Type122 { get; set; } /// /// /// - public global::Google.Gemini.Maps? Type123 { get; set; } + public global::Google.Gemini.InputEmbedContentConfig? Type123 { get; set; } /// /// /// - public global::Google.Gemini.PlaceAnswerSources? Type124 { get; set; } + public global::Google.Gemini.BatchEmbedContentsRequest? Type124 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentResponses? Type125 { get; set; } + public global::System.Collections.Generic.IList? Type125 { get; set; } /// /// /// - public global::Google.Gemini.GroundingMetadata? Type126 { get; set; } + public global::Google.Gemini.EmbedContentRequest? Type126 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type127 { get; set; } + public global::Google.Gemini.Web? Type127 { get; set; } /// /// /// - public global::Google.Gemini.GoogleAiGenerativelanguageV1betaGroundingSupport? Type128 { get; set; } + public global::Google.Gemini.InlinedRequests? Type128 { get; set; } /// /// /// - public global::Google.Gemini.SearchEntryPoint? Type129 { get; set; } + public global::System.Collections.Generic.IList? Type129 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type130 { get; set; } + public global::Google.Gemini.InlinedRequest? Type130 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunk? Type131 { get; set; } + public global::System.Collections.Generic.IList? Type131 { get; set; } /// /// /// - public global::Google.Gemini.CitationMetadata? Type132 { get; set; } + public global::Google.Gemini.FunctionResponsePart? Type132 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type133 { get; set; } + public global::Google.Gemini.FunctionResponseScheduling? Type133 { get; set; } /// /// /// - public global::Google.Gemini.MultiSpeakerVoiceConfig? Type134 { get; set; } + public global::Google.Gemini.SemanticRetrieverChunk? Type134 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type135 { get; set; } + public global::Google.Gemini.BatchStats? Type135 { get; set; } /// /// /// - public global::Google.Gemini.SpeakerVoiceConfig? Type136 { get; set; } + public global::Google.Gemini.RetrievedContext? Type136 { get; set; } /// /// /// - public global::Google.Gemini.WhiteSpaceConfig? Type137 { get; set; } + public global::Google.Gemini.Maps? Type137 { get; set; } /// /// /// - public global::Google.Gemini.CreateFileRequest? Type138 { get; set; } + public global::Google.Gemini.AttributionSourceId? Type138 { get; set; } /// /// /// - public global::Google.Gemini.ImageConfig? Type139 { get; set; } + public global::System.Collections.Generic.IList? Type139 { get; set; } /// /// /// - public global::Google.Gemini.InputConfig? Type140 { get; set; } + public global::Google.Gemini.GroundingChunkCustomMetadata? Type140 { get; set; } /// /// /// - public global::Google.Gemini.InlinedRequests? Type141 { get; set; } + public global::Google.Gemini.FunctionCallingConfig? Type141 { get; set; } /// /// /// - public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Type142 { get; set; } + public global::Google.Gemini.FunctionCallingConfigMode? Type142 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type143 { get; set; } + public global::Google.Gemini.InlinedEmbedContentRequests? Type143 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type144 { get; set; } + public global::System.Collections.Generic.IList? Type144 { get; set; } /// /// /// - public global::Google.Gemini.ListCachedContentsResponse? Type145 { get; set; } + public global::Google.Gemini.InlinedEmbedContentRequest? Type145 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type146 { get; set; } + public global::Google.Gemini.StreamableHttpTransport? Type146 { get; set; } /// /// /// - public global::Google.Gemini.FileData? Type147 { get; set; } + public global::System.Collections.Generic.Dictionary? Type147 { get; set; } /// /// /// - public global::Google.Gemini.Web? Type148 { get; set; } + public global::Google.Gemini.TransferOwnershipResponse? Type148 { get; set; } /// /// /// - public global::Google.Gemini.ListFilesResponse? Type149 { get; set; } + public global::Google.Gemini.GroundingAttribution? Type149 { get; set; } /// /// /// - public global::Google.Gemini.ImportFileRequest? Type150 { get; set; } + public global::Google.Gemini.VideoFileMetadata? Type150 { get; set; } /// /// /// - public global::Google.Gemini.ListModelsResponse? Type151 { get; set; } + public global::Google.Gemini.TunedModel? Type151 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type152 { get; set; } + public global::Google.Gemini.TunedModelState? Type152 { get; set; } /// /// /// - public global::Google.Gemini.Model? Type153 { get; set; } + public global::Google.Gemini.TunedModelSource? Type153 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatch? Type154 { get; set; } + public global::Google.Gemini.Permission? Type154 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentBatchState? Type155 { get; set; } + public global::Google.Gemini.PermissionGranteeType? Type155 { get; set; } /// /// /// - public global::Google.Gemini.PermissionGranteeType? Type156 { get; set; } + public global::Google.Gemini.PermissionRole? Type156 { get; set; } /// /// /// - public global::Google.Gemini.PermissionRole? Type157 { get; set; } + public global::Google.Gemini.ListCorporaResponse? Type157 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type158 { get; set; } + public global::System.Collections.Generic.IList? Type158 { get; set; } /// /// /// - public global::Google.Gemini.Part? Type159 { get; set; } + public global::Google.Gemini.Corpus? Type159 { get; set; } /// /// /// - public global::Google.Gemini.StringList? Type160 { get; set; } + public global::Google.Gemini.InlinedResponse? Type160 { get; set; } /// /// /// - public global::Google.Gemini.VideoMetadata? Type161 { get; set; } + public global::System.Collections.Generic.IList? Type161 { get; set; } /// /// /// - public double? Type162 { get; set; } + public global::System.Collections.Generic.IList? Type162 { get; set; } /// /// /// - public global::Google.Gemini.TransferOwnershipRequest? Type163 { get; set; } + public global::Google.Gemini.TuningExamples? Type163 { get; set; } /// /// /// - public global::Google.Gemini.GroundingChunkStringList? Type164 { get; set; } + public global::Google.Gemini.DynamicRetrievalConfig? Type164 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type165 { get; set; } + public global::Google.Gemini.DynamicRetrievalConfigMode? Type165 { get; set; } /// /// /// - public global::Google.Gemini.Candidate? Type166 { get; set; } + public global::Google.Gemini.RegisterFilesResponse? Type166 { get; set; } /// /// /// - public global::Google.Gemini.TuningExamples? Type167 { get; set; } + public global::System.Collections.Generic.IList? Type167 { get; set; } /// /// /// - public global::Google.Gemini.GenerateContentRequestServiceTier? Type168 { get; set; } + public global::Google.Gemini.ImageConfig? Type168 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type169 { get; set; } + public global::Google.Gemini.GenerationConfig? Type169 { get; set; } /// /// /// - public global::Google.Gemini.SafetySetting? Type170 { get; set; } + public global::Google.Gemini.GenerateContentRequestServiceTier? Type170 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfig? Type171 { get; set; } + public global::System.Collections.Generic.IList? Type171 { get; set; } /// /// /// - public global::Google.Gemini.ToolCall? Type172 { get; set; } + public global::Google.Gemini.ToolConfig? Type172 { get; set; } /// /// /// - public global::Google.Gemini.ExecutableCode? Type173 { get; set; } + public global::System.Collections.Generic.IList? Type173 { get; set; } /// /// /// - public global::Google.Gemini.ToolResponse? Type174 { get; set; } + public global::Google.Gemini.SafetySetting? Type174 { get; set; } /// /// /// - public global::Google.Gemini.Blob? Type175 { get; set; } + public global::Google.Gemini.LogprobsResult? Type175 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecutionResult? Type176 { get; set; } + public global::System.Collections.Generic.IList? Type176 { get; set; } /// /// /// - public global::Google.Gemini.EmbeddingUsageMetadata? Type177 { get; set; } + public global::Google.Gemini.ComputerUseEnvironment? Type177 { get; set; } /// /// /// - public global::Google.Gemini.ListGeneratedFilesResponse? Type178 { get; set; } + public global::Google.Gemini.ListPermissionsResponse? Type178 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type179 { get; set; } + public global::System.Collections.Generic.IList? Type179 { get; set; } /// /// /// - public global::Google.Gemini.GeneratedFile? Type180 { get; set; } + public global::Google.Gemini.SpeechConfig? Type180 { get; set; } /// /// /// - public global::Google.Gemini.StreamableHttpTransport? Type181 { get; set; } + public global::Google.Gemini.MultiSpeakerVoiceConfig? Type181 { get; set; } /// /// /// - public global::Google.Gemini.ListDocumentsResponse? Type182 { get; set; } + public global::Google.Gemini.TransferOwnershipRequest? Type182 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type183 { get; set; } + public global::System.Collections.Generic.IList? Type183 { get; set; } /// /// /// - public global::Google.Gemini.Document? Type184 { get; set; } + public global::System.Collections.Generic.IList? Type184 { get; set; } /// /// /// - public global::Google.Gemini.CodeExecutionResultOutcome? Type185 { get; set; } + public global::Google.Gemini.TuningExample? Type185 { get; set; } /// /// /// - public global::Google.Gemini.Image? Type186 { get; set; } + public global::Google.Gemini.ToolCallToolType? Type186 { get; set; } /// /// /// - public global::Google.Gemini.CountTokensResponse? Type187 { get; set; } + public global::Google.Gemini.CachedContentUsageMetadata? Type187 { get; set; } /// /// /// - public global::Google.Gemini.LogprobsResult? Type188 { get; set; } + public global::Google.Gemini.ThinkingConfig? Type188 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type189 { get; set; } + public global::Google.Gemini.ThinkingConfigThinkingLevel? Type189 { get; set; } /// /// /// - public global::Google.Gemini.TopCandidates? Type190 { get; set; } + public global::Google.Gemini.SafetyRatingCategory? Type190 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type191 { get; set; } + public global::Google.Gemini.SafetyRatingProbability? Type191 { get; set; } /// /// /// - public global::Google.Gemini.LogprobsResultCandidate? Type192 { get; set; } + public global::Google.Gemini.RetrievalConfig? Type192 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type193 { get; set; } + public global::Google.Gemini.LatLng? Type193 { get; set; } /// /// /// - public global::Google.Gemini.ComputerUseEnvironment? Type194 { get; set; } + public global::Google.Gemini.UrlContextMetadata? Type194 { get; set; } /// /// /// - public global::Google.Gemini.ExecutableCodeLanguage? Type195 { get; set; } + public global::System.Collections.Generic.IList? Type195 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type196 { get; set; } + public global::System.Collections.Generic.IList? Type196 { get; set; } /// /// /// - public global::Google.Gemini.ListFileSearchStoresResponse? Type197 { get; set; } + public global::Google.Gemini.GenerationConfigResponseModalitie? Type197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type198 { get; set; } + public global::Google.Gemini.GenerationConfigMediaResolution? Type198 { get; set; } /// /// /// - public global::Google.Gemini.FileSearchStore? Type199 { get; set; } + public global::Google.Gemini.CandidateFinishReason? Type199 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentRequestTaskType? Type200 { get; set; } + public global::System.Collections.Generic.IList? Type200 { get; set; } /// /// /// - public global::Google.Gemini.SpeechConfig? Type201 { get; set; } + public global::Google.Gemini.SafetySettingThreshold? Type201 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type202 { get; set; } + public global::Google.Gemini.SafetySettingCategory? Type202 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfigResponseModalitie? Type203 { get; set; } + public global::Google.Gemini.EmbedContentConfig? Type203 { get; set; } /// /// /// - public global::Google.Gemini.GenerationConfigMediaResolution? Type204 { get; set; } + public global::Google.Gemini.EmbedContentRequestTaskType? Type204 { get; set; } /// /// /// - public global::Google.Gemini.RegisterFilesRequest? Type205 { get; set; } + public global::Google.Gemini.InputConfig? Type205 { get; set; } /// /// /// - public global::Google.Gemini.SafetySettingCategory? Type206 { get; set; } + public global::Google.Gemini.WhiteSpaceConfig? Type206 { get; set; } /// /// /// - public global::Google.Gemini.SafetySettingThreshold? Type207 { get; set; } + public global::Google.Gemini.AsyncBatchEmbedContentRequest? Type207 { get; set; } /// /// /// - public global::Google.Gemini.FunctionCallingConfigMode? Type208 { get; set; } + public global::Google.Gemini.Operation? Type208 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type209 { get; set; } + public global::Google.Gemini.EmbedContentConfigTaskType? Type209 { get; set; } /// /// /// - public global::Google.Gemini.ListOperationsResponse? Type210 { get; set; } + public global::Google.Gemini.CountTokensResponse? Type210 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type211 { get; set; } + public global::Google.Gemini.BatchEmbedContentsResponse? Type211 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type212 { get; set; } + public global::System.Collections.Generic.IList? Type212 { get; set; } /// /// /// - public global::Google.Gemini.InlinedEmbedContentResponse? Type213 { get; set; } + public global::Google.Gemini.GenerateContentBatchOutput? Type213 { get; set; } /// /// /// - public global::Google.Gemini.DocumentState? Type214 { get; set; } + public global::Google.Gemini.InlinedResponses? Type214 { get; set; } /// /// /// - public global::Google.Gemini.ToolResponseToolType? Type215 { get; set; } + public global::Google.Gemini.FunctionDeclarationBehavior? Type215 { get; set; } /// /// /// - public global::Google.Gemini.GroundingAttribution? Type216 { get; set; } + public global::Google.Gemini.ListTunedModelsResponse? Type216 { get; set; } /// /// /// - public global::Google.Gemini.AsyncBatchEmbedContentRequest? Type217 { get; set; } + public global::System.Collections.Generic.IList? Type217 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type218 { get; set; } + public global::Google.Gemini.CustomLongRunningOperation? Type218 { get; set; } /// /// /// - public global::Google.Gemini.EmbedContentResponse? Type219 { get; set; } + public global::Google.Gemini.ImportFileRequest? Type219 { get; set; } /// /// /// - public global::Google.Gemini.BatchEmbedContentsResponse? Type220 { get; set; } + public global::Google.Gemini.Empty? Type220 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type221 { get; set; } + public global::Google.Gemini.ModelStatusModelStage? Type221 { get; set; } /// /// /// - public global::Google.Gemini.ContentEmbedding? Type222 { get; set; } + public global::Google.Gemini.ListFilesResponse? Type222 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type223 { get; set; } + public global::System.Collections.Generic.IList? Type223 { get; set; } /// /// /// - public global::Google.Gemini.CustomLongRunningOperation? Type224 { get; set; } + public global::Google.Gemini.ToolResponseToolType? Type224 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type225 { get; set; } + public global::Google.Gemini.GenerateContentBatchState? Type225 { get; set; } /// /// /// - public global::Google.Gemini.TransferOwnershipResponse? Type226 { get; set; } + public global::Google.Gemini.ListOperationsResponse? Type226 { get; set; } /// /// /// - public global::Google.Gemini.GeneratedFileState? Type227 { get; set; } + public global::System.Collections.Generic.IList? Type227 { get; set; } /// /// /// - public global::Google.Gemini.ToolCallToolType? Type228 { get; set; } + public global::Google.Gemini.CreateFileResponse? Type228 { get; set; } /// /// /// - public global::Google.Gemini.CandidateFinishReason? Type229 { get; set; } + public global::Google.Gemini.GroundingChunkStringList? Type229 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type230 { get; set; } + public global::Google.Gemini.FileState? Type230 { get; set; } /// /// /// - public global::Google.Gemini.SchemaType? Type231 { get; set; } + public global::Google.Gemini.FileSource? Type231 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type232 { get; set; } + public global::Google.Gemini.ModalityTokenCountModality? Type232 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type233 { get; set; } + public global::Google.Gemini.DocumentState? Type233 { get; set; } /// /// /// - public global::Google.Gemini.BatchGenerateContentRequest? Type234 { get; set; } + public global::System.Collections.Generic.IList? Type234 { 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; } /// /// /// @@ -1001,11 +1001,11 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - 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; } /// /// /// @@ -1013,7 +1013,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType11 { get; set; } + public global::System.Collections.Generic.List? ListType11 { get; set; } /// /// /// @@ -1021,23 +1021,23 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType13 { get; set; } + public global::System.Collections.Generic.List? ListType13 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType14 { get; set; } + public global::System.Collections.Generic.List? ListType14 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType15 { get; set; } + public global::System.Collections.Generic.List? ListType15 { get; set; } /// /// /// - 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; } /// /// /// @@ -1049,83 +1049,83 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - 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; } /// /// /// @@ -1133,18 +1133,18 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - 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; } } } \ No newline at end of file diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AttributionSourceId.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AttributionSourceId.g.cs index 208866c41..2d96e6837 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AttributionSourceId.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.AttributionSourceId.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class AttributionSourceId { - /// - /// Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("semanticRetrieverChunk")] - public global::Google.Gemini.SemanticRetrieverChunk? SemanticRetrieverChunk { get; set; } - /// /// Identifier for a part within a `GroundingPassage`. /// [global::System.Text.Json.Serialization.JsonPropertyName("groundingPassage")] public global::Google.Gemini.GroundingPassageId? GroundingPassage { get; set; } + /// + /// Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("semanticRetrieverChunk")] + public global::Google.Gemini.SemanticRetrieverChunk? SemanticRetrieverChunk { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class AttributionSourceId /// /// Initializes a new instance of the class. /// - /// - /// Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`. - /// /// /// Identifier for a part within a `GroundingPassage`. /// + /// + /// Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public AttributionSourceId( - global::Google.Gemini.SemanticRetrieverChunk? semanticRetrieverChunk, - global::Google.Gemini.GroundingPassageId? groundingPassage) + global::Google.Gemini.GroundingPassageId? groundingPassage, + global::Google.Gemini.SemanticRetrieverChunk? semanticRetrieverChunk) { - this.SemanticRetrieverChunk = semanticRetrieverChunk; this.GroundingPassage = groundingPassage; + this.SemanticRetrieverChunk = semanticRetrieverChunk; } /// 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 1ebf359da..bb6d7b2ff 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 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 were successfully processed.
+ /// Output only. The number of requests in the batch.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("successfulRequestCount")] - public string? SuccessfulRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] + public string? RequestCount { get; set; } /// - /// 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 ///
- [global::System.Text.Json.Serialization.JsonPropertyName("pendingRequestCount")] - public string? PendingRequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] + public string? FailedRequestCount { 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 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 in the batch.
+ /// 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 that were successfully processed.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BatchStats( - string? requestCount, - string? successfulRequestCount, string? pendingRequestCount, - string? failedRequestCount) + string? requestCount, + string? failedRequestCount, + string? successfulRequestCount) { - this.RequestCount = requestCount; - this.SuccessfulRequestCount = successfulRequestCount; this.PendingRequestCount = pendingRequestCount; + this.RequestCount = requestCount; this.FailedRequestCount = failedRequestCount; + this.SuccessfulRequestCount = successfulRequestCount; } /// 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 b67ea9274..99565ceeb 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 { - /// - /// 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; } + /// + /// 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; } + /// /// 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. /// - /// - /// 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. /// + /// + /// 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). // + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Blob( - string? mimeType, - byte[]? data) + byte[]? data, + string? mimeType) { - this.MimeType = mimeType; this.Data = data; + this.MimeType = mimeType; } /// 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 741513928..adb4076e4 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,17 +9,23 @@ namespace Google.Gemini public sealed partial class CachedContent { /// - /// Output only. Creation time of the cache entry.
+ /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("expireTime")] + public string? ExpireTime { get; set; } + + /// + /// Output only. When the cache entry was last updated in UTC time.
/// 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. Input only. Immutable. A list of `Tools` the model may use to generate the next response + /// Metadata on the usage of the cached content. /// - [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList? Tools { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] + public global::Google.Gemini.CachedContentUsageMetadata? UsageMetadata { 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. @@ -27,18 +33,6 @@ public sealed partial class CachedContent [global::System.Text.Json.Serialization.JsonPropertyName("systemInstruction")] public global::Google.Gemini.Content? SystemInstruction { 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; } - - /// - /// Metadata on the usage of the cached content. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("usageMetadata")] - public global::Google.Gemini.CachedContentUsageMetadata? UsageMetadata { get; set; } - /// /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. /// @@ -46,10 +40,10 @@ public sealed partial class CachedContent public string? DisplayName { 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. + /// Optional. Input only. Immutable. The content to cache. /// - [global::System.Text.Json.Serialization.JsonPropertyName("expireTime")] - public string? ExpireTime { 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}`
@@ -59,10 +53,10 @@ public sealed partial class CachedContent public string? Name { get; set; } /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// - [global::System.Text.Json.Serialization.JsonPropertyName("toolConfig")] - public global::Google.Gemini.ToolConfig? ToolConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } /// /// Input only. New TTL for this resource, input only. @@ -71,17 +65,23 @@ public sealed partial class CachedContent public string? Ttl { get; set; } /// - /// Output only. When the cache entry was last updated in UTC time.
- /// Included only in responses + /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tools")] + public global::System.Collections.Generic.IList? Tools { get; set; } /// - /// Optional. Input only. Immutable. The content to cache. + /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("contents")] - public global::System.Collections.Generic.IList? Contents { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("toolConfig")] + public global::Google.Gemini.ToolConfig? ToolConfig { get; set; } + + /// + /// Output only. Creation time of the cache entry.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { 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. /// - /// - /// Output only. Creation time of the cache entry.
+ /// + /// 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.
/// Included only in responses /// - /// - /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response + /// + /// Metadata on the usage of the cached content. /// /// /// 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. - /// /// /// Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters. /// - /// - /// Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. + /// + /// Optional. Input only. Immutable. The content to cache. /// /// /// Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`
/// Included only in responses /// - /// - /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}` /// /// /// Input only. New TTL for this resource, input only. /// - /// - /// Output only. When the cache entry was last updated in UTC time.
- /// Included only in responses + /// + /// Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response /// - /// - /// Optional. Input only. Immutable. The content to cache. + /// + /// The Tool configuration containing parameters for specifying `Tool` use in the request. + /// + /// + /// Output only. Creation time of the cache entry.
+ /// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CachedContent( - string? createTime, - global::System.Collections.Generic.IList? tools, - global::Google.Gemini.Content? systemInstruction, - string? model, + string? expireTime, + string? updateTime, global::Google.Gemini.CachedContentUsageMetadata? usageMetadata, + global::Google.Gemini.Content? systemInstruction, string? displayName, - string? expireTime, + global::System.Collections.Generic.IList? contents, string? name, - global::Google.Gemini.ToolConfig? toolConfig, + string? model, string? ttl, - string? updateTime, - global::System.Collections.Generic.IList? contents) + global::System.Collections.Generic.IList? tools, + global::Google.Gemini.ToolConfig? toolConfig, + string? createTime) { - this.CreateTime = createTime; - this.Tools = tools; - this.SystemInstruction = systemInstruction; - this.Model = model; + this.ExpireTime = expireTime; + this.UpdateTime = updateTime; this.UsageMetadata = usageMetadata; + this.SystemInstruction = systemInstruction; this.DisplayName = displayName; - this.ExpireTime = expireTime; + this.Contents = contents; this.Name = name; - this.ToolConfig = toolConfig; + this.Model = model; this.Ttl = ttl; - this.UpdateTime = updateTime; - this.Contents = contents; + this.Tools = tools; + this.ToolConfig = toolConfig; + this.CreateTime = createTime; } /// 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 6fd59a6ea..cbab4d14a 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,31 +9,24 @@ namespace Google.Gemini public sealed partial class Candidate { /// - /// 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("finishMessage")] - public string? FinishMessage { get; set; } - - /// - /// Output only. Index of the candidate in the list of response candidates.
+ /// Output only. Average log probability score of the candidate.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("index")] - public int? Index { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("avgLogprobs")] + public double? AvgLogprobs { 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. + /// Logprobs Result /// - [global::System.Text.Json.Serialization.JsonPropertyName("content")] - public global::Google.Gemini.Content? Content { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("logprobsResult")] + public global::Google.Gemini.LogprobsResult? LogprobsResult { get; set; } /// - /// Output only. Average log probability score of the candidate.
+ /// Output only. Token count for this candidate.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("avgLogprobs")] - public double? AvgLogprobs { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tokenCount")] + public int? TokenCount { get; set; } /// /// Metadata related to url context retrieval tool. @@ -41,6 +34,12 @@ public sealed partial class Candidate [global::System.Text.Json.Serialization.JsonPropertyName("urlContextMetadata")] public global::Google.Gemini.UrlContextMetadata? UrlContextMetadata { get; set; } + /// + /// A collection of source attributions for a piece of content. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("citationMetadata")] + public global::Google.Gemini.CitationMetadata? CitationMetadata { 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 @@ -56,23 +55,30 @@ public sealed partial class Candidate public global::Google.Gemini.GroundingMetadata? GroundingMetadata { get; set; } /// - /// Output only. Token count for this candidate.
+ /// 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("tokenCount")] - public int? TokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("finishMessage")] + public string? FinishMessage { get; set; } /// - /// List of ratings for the safety of a response candidate. There is at most one rating per category. + /// Output only. Index of the candidate in the list of response candidates.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("safetyRatings")] - public global::System.Collections.Generic.IList? SafetyRatings { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("index")] + public int? Index { get; set; } /// - /// A collection of source attributions for a piece of content. + /// 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("citationMetadata")] - public global::Google.Gemini.CitationMetadata? CitationMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("content")] + public global::Google.Gemini.Content? Content { get; set; } + + /// + /// List of ratings for the safety of a response candidate. There is at most one rating per category. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("safetyRatings")] + public global::System.Collections.Generic.IList? SafetyRatings { get; set; } /// /// Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
@@ -81,12 +87,6 @@ public sealed partial class Candidate [global::System.Text.Json.Serialization.JsonPropertyName("groundingAttributions")] public global::System.Collections.Generic.IList? GroundingAttributions { get; set; } - /// - /// Logprobs Result - /// - [global::System.Text.Json.Serialization.JsonPropertyName("logprobsResult")] - public global::Google.Gemini.LogprobsResult? LogprobsResult { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -96,24 +96,23 @@ 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. Index of the candidate in the list of response candidates.
+ /// + /// Output only. Average log probability score of the candidate.
/// Included only in responses /// - /// - /// 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. + /// + /// Logprobs Result /// - /// - /// Output only. Average log probability score of the candidate.
+ /// + /// Output only. Token count for this candidate.
/// Included only in responses /// /// /// Metadata related to url context retrieval tool. /// + /// + /// A collection of source attributions for a piece of content. + /// /// /// Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.
/// Included only in responses @@ -121,52 +120,53 @@ public sealed partial class Candidate /// /// Metadata returned to client when grounding is enabled. /// - /// - /// Output only. Token count for this candidate.
+ /// + /// 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. Index of the candidate in the list of response candidates.
+ /// Included only in responses + /// + /// + /// 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. + /// /// /// 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. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.
/// Included only in responses /// - /// - /// Logprobs Result - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Candidate( - string? finishMessage, - int? index, - global::Google.Gemini.Content? content, double? avgLogprobs, + global::Google.Gemini.LogprobsResult? logprobsResult, + int? tokenCount, global::Google.Gemini.UrlContextMetadata? urlContextMetadata, + global::Google.Gemini.CitationMetadata? citationMetadata, global::Google.Gemini.CandidateFinishReason? finishReason, global::Google.Gemini.GroundingMetadata? groundingMetadata, - int? tokenCount, + string? finishMessage, + int? index, + global::Google.Gemini.Content? content, global::System.Collections.Generic.IList? safetyRatings, - global::Google.Gemini.CitationMetadata? citationMetadata, - global::System.Collections.Generic.IList? groundingAttributions, - global::Google.Gemini.LogprobsResult? logprobsResult) + global::System.Collections.Generic.IList? groundingAttributions) { - this.FinishMessage = finishMessage; - this.Index = index; - this.Content = content; this.AvgLogprobs = avgLogprobs; + this.LogprobsResult = logprobsResult; + this.TokenCount = tokenCount; this.UrlContextMetadata = urlContextMetadata; + this.CitationMetadata = citationMetadata; this.FinishReason = finishReason; this.GroundingMetadata = groundingMetadata; - this.TokenCount = tokenCount; + this.FinishMessage = finishMessage; + this.Index = index; + this.Content = content; this.SafetyRatings = safetyRatings; - this.CitationMetadata = citationMetadata; this.GroundingAttributions = groundingAttributions; - this.LogprobsResult = logprobsResult; } /// 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 5c135c5e6..6d91af4b6 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 @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class CitationSource { - /// - /// 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. 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. End of the attributed segment, exclusive. /// @@ -41,12 +41,12 @@ public sealed partial class CitationSource /// /// Initializes a new instance of the class. /// - /// - /// 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. Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. + /// /// /// Optional. End of the attributed segment, exclusive. /// @@ -57,13 +57,13 @@ public sealed partial class CitationSource [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CitationSource( - int? startIndex, string? license, + int? startIndex, int? endIndex, string? uri) { - this.StartIndex = startIndex; this.License = license; + this.StartIndex = startIndex; this.EndIndex = endIndex; this.Uri = uri; } 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 c36154c68..1669c1ec4 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,12 +8,6 @@ namespace Google.Gemini ///
public sealed partial class CodeExecutionResult { - /// - /// 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; } - /// /// Required. Outcome of the code execution. /// @@ -27,6 +21,12 @@ public sealed partial class CodeExecutionResult [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; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -36,26 +36,26 @@ public sealed partial class CodeExecutionResult /// /// Initializes a new instance of the class. /// - /// - /// Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id. - /// /// /// Required. Outcome of the code execution. /// /// /// 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. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CodeExecutionResult( - string? id, global::Google.Gemini.CodeExecutionResultOutcome? outcome, - string? output) + string? output, + string? id) { - this.Id = id; this.Outcome = outcome; this.Output = output; + this.Id = id; } /// 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 5503bfdbc..6c8ec1fd2 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 last updated.
+ /// 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. 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 ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// Output only. The Timestamp of when the `Corpus` was created.
@@ -23,17 +29,11 @@ public sealed partial class Corpus public string? CreateTime { 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`
+ /// Output only. The Timestamp of when the `Corpus` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { 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("updateTime")] + public string? UpdateTime { 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 last updated.
+ /// + /// 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. 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 created.
/// 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`
+ /// + /// Output only. The Timestamp of when the `Corpus` was last updated.
/// 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? updateTime, - string? createTime, + string? displayName, string? name, - string? displayName) + string? createTime, + string? updateTime) { - this.UpdateTime = updateTime; - this.CreateTime = createTime; - this.Name = name; this.DisplayName = displayName; + this.Name = name; + this.CreateTime = createTime; + this.UpdateTime = updateTime; } /// 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 4208a337c..c9fc88a32 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,19 +8,19 @@ 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. /// [global::System.Text.Json.Serialization.JsonPropertyName("totalTokens")] public int? TotalTokens { get; set; } + /// + /// Output only. List of modalities that were processed in the request input.
+ /// Included only in responses + ///
+ [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). /// @@ -28,11 +28,11 @@ public sealed partial class CountTokensResponse public int? CachedContentTokenCount { get; set; } /// - /// Output only. List of modalities that were processed in the request input.
+ /// Output only. List of modalities that were processed in the cached content.
/// 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; } /// /// Additional properties that are not explicitly defined in the schema @@ -43,33 +43,33 @@ 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. /// + /// + /// 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). /// - /// - /// Output only. List of modalities that were processed in the request input.
+ /// + /// 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, + global::System.Collections.Generic.IList? promptTokensDetails, int? cachedContentTokenCount, - 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.CachedContentTokenCount = cachedContentTokenCount; + this.CacheTokensDetails = cacheTokensDetails; } /// 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 bd33f154c..c1bb0fdb3 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 { + /// + /// 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). /// @@ -15,10 +21,10 @@ public sealed partial class CustomLongRunningOperation public global::Google.Gemini.Status? Error { 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`. + /// 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("response")] - public object? Response { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] + public object? Metadata { 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}`. @@ -27,16 +33,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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("done")] - public bool? Done { 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. + /// 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("metadata")] - public object? Metadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public object? Response { 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. /// + /// + /// 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). /// - /// - /// 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. /// /// /// 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 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 NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CustomLongRunningOperation( + bool? done, global::Google.Gemini.Status? error, - object? response, + object? metadata, string? name, - bool? done, - object? metadata) + object? response) { - this.Error = error; - this.Response = response; - this.Name = name; this.Done = done; + this.Error = error; this.Metadata = metadata; + this.Name = name; + this.Response = response; } /// 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 b7f787615..006baaacc 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,18 +8,6 @@ namespace Google.Gemini /// public sealed partial class CustomMetadata { - /// - /// The string value of the metadata to store. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("stringValue")] - public string? StringValue { get; set; } - - /// - /// The numeric value of the metadata to store. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("numericValue")] - public float? NumericValue { get; set; } - /// /// User provided string values assigned to a single metadata key. /// @@ -32,6 +20,18 @@ public sealed partial class CustomMetadata [global::System.Text.Json.Serialization.JsonPropertyName("key")] public string? Key { get; set; } + /// + /// The string value of the metadata to store. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("stringValue")] + public string? StringValue { 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,31 +41,31 @@ public sealed partial class CustomMetadata /// /// Initializes a new instance of the class. /// - /// - /// The string value of the metadata to store. - /// - /// - /// The numeric value of the metadata to store. - /// /// /// User provided string values assigned to a single metadata key. /// /// /// Required. The key of the metadata to store. /// + /// + /// The string value of the metadata to store. + /// + /// + /// The numeric value of the metadata to store. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CustomMetadata( - string? stringValue, - float? numericValue, global::Google.Gemini.StringList? stringListValue, - string? key) + string? key, + string? stringValue, + float? numericValue) { - this.StringValue = stringValue; - this.NumericValue = numericValue; this.StringListValue = stringListValue; this.Key = key; + this.StringValue = stringValue; + 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 1051a4b4a..58dbd9148 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 @@ -9,18 +9,18 @@ namespace Google.Gemini public sealed partial class Document { /// - /// Output only. The size of raw bytes ingested into the Document.
+ /// Output only. The Timestamp of when the `Document` was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] - public string? SizeBytes { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// - /// Output only. The Timestamp of when the `Document` was last updated.
+ /// Output only. The size of raw bytes ingested into the Document.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] + public string? SizeBytes { 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" @@ -29,38 +29,38 @@ public sealed partial class Document public string? DisplayName { get; set; } /// - /// Output only. The mime type of the Document.
- /// 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`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - public string? MimeType { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("customMetadata")] + public global::System.Collections.Generic.IList? CustomMetadata { get; set; } /// - /// Output only. Current state of the `Document`.
+ /// Output only. The mime type of the Document.
/// 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("mimeType")] + public string? MimeType { get; set; } /// - /// Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`. + /// 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("customMetadata")] - public global::System.Collections.Generic.IList? CustomMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// - /// Output only. The Timestamp of when the `Document` was created.
+ /// Output only. The Timestamp of when the `Document` 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; } /// - /// 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. Current state of the `Document`.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { 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; } /// /// Additional properties that are not explicitly defined in the schema @@ -71,56 +71,56 @@ public sealed partial class Document /// /// Initializes a new instance of the class. /// - /// - /// Output only. The size of raw bytes ingested into the Document.
+ /// + /// Output only. The Timestamp of when the `Document` was created.
/// Included only in responses /// - /// - /// Output only. The Timestamp of when the `Document` was last updated.
+ /// + /// 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 mime type of the Document.
- /// Included only in responses - /// - /// - /// Output only. Current state of the `Document`.
- /// 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`. /// - /// - /// Output only. The Timestamp of when the `Document` was created.
+ /// + /// Output only. The mime type 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. Current state of the `Document`.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Document( + string? createTime, string? sizeBytes, - string? updateTime, string? displayName, - string? mimeType, - global::Google.Gemini.DocumentState? state, global::System.Collections.Generic.IList? customMetadata, - string? createTime, - string? name) + string? mimeType, + string? name, + string? updateTime, + global::Google.Gemini.DocumentState? state) { + this.CreateTime = createTime; this.SizeBytes = sizeBytes; - this.UpdateTime = updateTime; this.DisplayName = displayName; - this.MimeType = mimeType; - this.State = state; this.CustomMetadata = customMetadata; - this.CreateTime = createTime; + this.MimeType = mimeType; this.Name = name; + this.UpdateTime = updateTime; + this.State = state; } /// 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 c5ed95c78..9e3acb707 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,31 +9,30 @@ namespace Google.Gemini public sealed partial class EmbedContentBatch { /// - /// 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}`.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// - /// Required. The user-defined name of this batch. + /// Stats about the batch. /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] + public global::Google.Gemini.EmbedContentBatchStats? BatchStats { get; set; } /// - /// Output only. The state of the batch.
- /// Included only in responses + /// Required. The user-defined name of this 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("displayName")] + public string? DisplayName { get; set; } /// - /// Output only. The time at which the batch was created.
+ /// Output only. The time at which the batch processing completed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] + public string? EndTime { get; set; } /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. @@ -42,24 +41,19 @@ public sealed partial class EmbedContentBatch public global::Google.Gemini.EmbedContentBatchOutput? Output { get; set; } /// - /// Stats about the batch. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] - public global::Google.Gemini.EmbedContentBatchStats? BatchStats { get; set; } - - /// - /// Output only. The time at which the batch processing completed.
+ /// 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.EmbedContentBatchStateJsonConverter))] + public global::Google.Gemini.EmbedContentBatchState? State { get; set; } /// - /// Output only. The time at which the batch was last updated.
+ /// Output only. The time at which the batch was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { 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. @@ -68,11 +62,10 @@ public sealed partial class EmbedContentBatch public string? Priority { get; set; } /// - /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
- /// Included only in responses + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } /// /// Configures the input to the batch request. @@ -80,6 +73,13 @@ public sealed partial class EmbedContentBatch [global::System.Text.Json.Serialization.JsonPropertyName("inputConfig")] public global::Google.Gemini.InputEmbedContentConfig? InputConfig { 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,71 +89,71 @@ public sealed partial class EmbedContentBatch /// /// Initializes a new instance of the class. /// - /// - /// 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}`.
+ /// Included only in responses + /// + /// + /// Stats about the batch. /// /// /// Required. The user-defined name of this batch. /// - /// - /// Output only. The state of the batch.
- /// Included only in responses - /// - /// - /// Output only. The time at which the batch was created.
+ /// + /// Output only. The time at which the batch processing completed.
/// Included only in responses /// /// /// The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field. /// - /// - /// Stats about the batch. - /// - /// - /// Output only. The time at which the batch processing completed.
+ /// + /// Output only. The state of the batch.
/// Included only in responses /// - /// - /// Output only. The time at which the batch was last updated.
+ /// + /// Output only. The time at which the batch was created.
/// 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. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
- /// Included only in responses + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// /// /// Configures the input to the batch request. /// + /// + /// 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 EmbedContentBatch( - string? model, + string? name, + global::Google.Gemini.EmbedContentBatchStats? batchStats, string? displayName, + string? endTime, + global::Google.Gemini.EmbedContentBatchOutput? output, global::Google.Gemini.EmbedContentBatchState? state, string? createTime, - global::Google.Gemini.EmbedContentBatchOutput? output, - global::Google.Gemini.EmbedContentBatchStats? batchStats, - string? endTime, - string? updateTime, string? priority, - string? name, - global::Google.Gemini.InputEmbedContentConfig? inputConfig) + string? model, + global::Google.Gemini.InputEmbedContentConfig? inputConfig, + string? updateTime) { - this.Model = model; + this.Name = name; + this.BatchStats = batchStats; this.DisplayName = displayName; + this.EndTime = endTime; + this.Output = output; this.State = state; this.CreateTime = createTime; - this.Output = output; - this.BatchStats = batchStats; - this.EndTime = endTime; - this.UpdateTime = updateTime; this.Priority = priority; - this.Name = name; + this.Model = model; this.InputConfig = inputConfig; + this.UpdateTime = updateTime; } /// 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 ed4da1213..b342a6178 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 @@ -16,18 +16,18 @@ public sealed partial class EmbedContentBatchStats public string? PendingRequestCount { get; set; } /// - /// Output only. The number of requests that failed to be processed.
+ /// Output only. The number of requests in the batch.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] - public string? FailedRequestCount { 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 failed to be processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("requestCount")] - public string? RequestCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("failedRequestCount")] + public string? FailedRequestCount { get; set; } /// /// Output only. The number of requests that were successfully processed.
@@ -49,14 +49,14 @@ public sealed partial class EmbedContentBatchStats /// 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 failed to be processed.
+ /// Included only in responses + /// /// /// Output only. The number of requests that were successfully processed.
/// Included only in responses @@ -66,13 +66,13 @@ public sealed partial class EmbedContentBatchStats #endif public EmbedContentBatchStats( string? pendingRequestCount, - string? failedRequestCount, string? requestCount, + string? failedRequestCount, string? successfulRequestCount) { this.PendingRequestCount = pendingRequestCount; - this.FailedRequestCount = failedRequestCount; this.RequestCount = requestCount; + this.FailedRequestCount = failedRequestCount; this.SuccessfulRequestCount = successfulRequestCount; } 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 ea243724b..7a8f77e51 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 @@ -9,10 +9,11 @@ namespace Google.Gemini public sealed partial class EmbedContentConfig { /// - /// Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. + /// Optional. The task type of the embedding. /// - [global::System.Text.Json.Serialization.JsonPropertyName("autoTruncate")] - public bool? AutoTruncate { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("taskType")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentConfigTaskTypeJsonConverter))] + public global::Google.Gemini.EmbedContentConfigTaskType? TaskType { get; set; } /// /// Optional. Whether to extract audio from video content. @@ -21,17 +22,10 @@ public sealed partial class EmbedContentConfig public bool? AudioTrackExtraction { get; set; } /// - /// Optional. The task type of the embedding. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("taskType")] - [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. + /// Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("autoTruncate")] + public bool? AutoTruncate { get; set; } /// /// Optional. Reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. @@ -39,6 +33,12 @@ public sealed partial class EmbedContentConfig [global::System.Text.Json.Serialization.JsonPropertyName("outputDimensionality")] public int? OutputDimensionality { get; set; } + /// + /// Optional. The title for the text. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } + /// /// Optional. Whether to enable OCR for document content. /// @@ -54,21 +54,21 @@ public sealed partial class EmbedContentConfig /// /// Initializes a new instance of the class. /// - /// - /// Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. + /// + /// Optional. The task type of the embedding. /// /// /// Optional. Whether to extract audio from video content. /// - /// - /// Optional. The task type of the embedding. - /// - /// - /// Optional. The title for the text. + /// + /// Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. /// /// /// Optional. Reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. /// + /// + /// Optional. The title for the text. + /// /// /// Optional. Whether to enable OCR for document content. /// @@ -76,18 +76,18 @@ public sealed partial class EmbedContentConfig [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbedContentConfig( - bool? autoTruncate, - bool? audioTrackExtraction, global::Google.Gemini.EmbedContentConfigTaskType? taskType, - string? title, + bool? audioTrackExtraction, + bool? autoTruncate, int? outputDimensionality, + string? title, bool? documentOcr) { - this.AutoTruncate = autoTruncate; - this.AudioTrackExtraction = audioTrackExtraction; this.TaskType = taskType; - this.Title = title; + this.AudioTrackExtraction = audioTrackExtraction; + this.AutoTruncate = autoTruncate; this.OutputDimensionality = outputDimensionality; + this.Title = title; this.DocumentOcr = documentOcr; } 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 eb71c3146..974d5d69f 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,24 +11,23 @@ namespace Google.Gemini public sealed partial class EmbedContentRequest { /// - /// 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}` /// - [global::System.Text.Json.Serialization.JsonPropertyName("embedContentConfig")] - public global::Google.Gemini.EmbedContentConfig? EmbedContentConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { 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`). + /// 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("taskType")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter))] + [global::System.Text.Json.Serialization.JsonPropertyName("title")] [global::System.Obsolete("This property marked as deprecated.")] - public global::Google.Gemini.EmbedContentRequestTaskType? TaskType { get; set; } + public string? Title { get; set; } /// - /// 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}` + /// Configurations for the EmbedContent request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("embedContentConfig")] + public global::Google.Gemini.EmbedContentConfig? EmbedContentConfig { 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. @@ -44,11 +43,12 @@ public sealed partial class EmbedContentRequest public int? OutputDimensionality { 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. + /// 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`). /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] + [global::System.Text.Json.Serialization.JsonPropertyName("taskType")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.EmbedContentRequestTaskTypeJsonConverter))] [global::System.Obsolete("This property marked as deprecated.")] - public string? Title { get; set; } + public global::Google.Gemini.EmbedContentRequestTaskType? TaskType { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -59,12 +59,12 @@ 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}` /// + /// + /// 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. /// @@ -72,12 +72,12 @@ public sealed partial class EmbedContentRequest [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbedContentRequest( - global::Google.Gemini.EmbedContentConfig? embedContentConfig, string? model, + global::Google.Gemini.EmbedContentConfig? embedContentConfig, global::Google.Gemini.Content? content) { - this.EmbedContentConfig = embedContentConfig; this.Model = model; + this.EmbedContentConfig = embedContentConfig; this.Content = content; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbeddingUsageMetadata.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbeddingUsageMetadata.g.cs index 3be926cd7..5c161b4e0 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbeddingUsageMetadata.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.EmbeddingUsageMetadata.g.cs @@ -9,18 +9,18 @@ namespace Google.Gemini public sealed partial class EmbeddingUsageMetadata { /// - /// Output only. List of modalities that were processed in the request input.
+ /// Output only. Number of tokens in the prompt.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenDetails")] - public global::System.Collections.Generic.IList? PromptTokenDetails { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] + public int? PromptTokenCount { get; set; } /// - /// Output only. Number of tokens in the prompt.
+ /// Output only. List of modalities that were processed in the request input.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] - public int? PromptTokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenDetails")] + public global::System.Collections.Generic.IList? PromptTokenDetails { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -31,23 +31,23 @@ public sealed partial class EmbeddingUsageMetadata /// /// Initializes a new instance of the class. /// - /// - /// Output only. List of modalities that were processed in the request input.
- /// Included only in responses - /// /// /// Output only. Number of tokens in the prompt.
/// Included only in responses /// + /// + /// Output only. List of modalities that were processed in the request input.
+ /// Included only in responses + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public EmbeddingUsageMetadata( - global::System.Collections.Generic.IList? promptTokenDetails, - int? promptTokenCount) + int? promptTokenCount, + global::System.Collections.Generic.IList? promptTokenDetails) { - this.PromptTokenDetails = promptTokenDetails; this.PromptTokenCount = promptTokenCount; + this.PromptTokenDetails = promptTokenDetails; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ExecutableCode.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ExecutableCode.g.cs index 4f2c65f29..f9f4e11ff 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ExecutableCode.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ExecutableCode.g.cs @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class ExecutableCode { - /// - /// Required. The code to be executed. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("code")] - public string? Code { get; set; } - /// /// Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`. /// @@ -27,6 +21,12 @@ public sealed partial class ExecutableCode [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ExecutableCodeLanguageJsonConverter))] public global::Google.Gemini.ExecutableCodeLanguage? Language { get; set; } + /// + /// Required. The code to be executed. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("code")] + public string? Code { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -36,26 +36,26 @@ public sealed partial class ExecutableCode /// /// Initializes a new instance of the class. /// - /// - /// Required. The code to be executed. - /// /// /// Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`. /// /// /// Required. Programming language of the `code`. /// + /// + /// Required. The code to be executed. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ExecutableCode( - string? code, string? id, - global::Google.Gemini.ExecutableCodeLanguage? language) + global::Google.Gemini.ExecutableCodeLanguage? language, + string? code) { - this.Code = code; this.Id = id; this.Language = language; + this.Code = code; } /// 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 e678bd2e2..0943e5967 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,18 +9,23 @@ namespace Google.Gemini public sealed partial class File { /// - /// Source of the File. + /// Output only. MIME type of the file.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("source")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FileSourceJsonConverter))] - public global::Google.Gemini.FileSource? Source { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + public string? MimeType { get; set; } /// - /// Output only. The download uri of the `File`.
- /// Included only in responses + /// Metadata for a video `File`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("downloadUri")] - public string? DownloadUri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] + public global::Google.Gemini.VideoFileMetadata? VideoMetadata { 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; } /// /// Output only. Processing state of the File.
@@ -31,77 +36,72 @@ public sealed partial class File public global::Google.Gemini.FileState? State { get; set; } /// - /// Output only. The timestamp of when the `File` was created.
+ /// Output only. The uri of the `File`.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } /// - /// Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.
+ /// Output only. SHA-256 hash of the uploaded bytes.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("expirationTime")] - public string? ExpirationTime { get; set; } - - /// - /// Metadata for a video `File`. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("videoMetadata")] - public global::Google.Gemini.VideoFileMetadata? VideoMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sha256Hash")] + public byte[]? Sha256Hash { get; set; } /// - /// 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" ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } /// - /// Output only. SHA-256 hash of the uploaded bytes.
+ /// Output only. The download uri of the `File`.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sha256Hash")] - public byte[]? Sha256Hash { get; set; } + [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). + /// Source of the File. /// - [global::System.Text.Json.Serialization.JsonPropertyName("error")] - public global::Google.Gemini.Status? Error { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("source")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FileSourceJsonConverter))] + public global::Google.Gemini.FileSource? Source { 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 timestamp of when the `File` was created.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// - /// Output only. MIME type of the file.
+ /// Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - public string? MimeType { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("expirationTime")] + public string? ExpirationTime { get; set; } /// - /// Output only. Size of the file in bytes.
+ /// Output only. The timestamp of when the `File` was last updated.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] - public string? SizeBytes { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Output only. The uri of the `File`.
- /// 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). ///
- [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("error")] + public global::Google.Gemini.Status? Error { 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` + /// Output only. Size of the file in bytes.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] + public string? SizeBytes { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -112,17 +112,38 @@ public sealed partial class File /// /// Initializes a new instance of the class. /// - /// - /// Source of the File. - /// - /// - /// Output only. The download uri of the `File`.
+ /// + /// Output only. MIME type of the file.
/// Included only in responses /// + /// + /// Metadata for a video `File`. + /// + /// + /// 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` + /// /// /// Output only. Processing state of the File.
/// Included only in responses /// + /// + /// Output only. The uri of the `File`.
+ /// Included only in responses + /// + /// + /// Output only. SHA-256 hash of the uploaded bytes.
+ /// 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. The timestamp of when the `File` was created.
/// Included only in responses @@ -131,71 +152,50 @@ public sealed partial class File /// Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.
/// Included only in responses /// - /// - /// Metadata for a video `File`. - /// /// /// Output only. The timestamp of when the `File` was last updated.
/// Included only in responses /// - /// - /// Output only. SHA-256 hash of the uploaded 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). /// - /// - /// 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. MIME type of the file.
- /// Included only in responses - /// /// /// Output only. Size of the file in bytes.
/// Included only in responses /// - /// - /// Output only. The uri 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` - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public File( - global::Google.Gemini.FileSource? source, - string? downloadUri, + string? mimeType, + global::Google.Gemini.VideoFileMetadata? videoMetadata, + string? name, global::Google.Gemini.FileState? state, + string? uri, + byte[]? sha256Hash, + string? displayName, + string? downloadUri, + global::Google.Gemini.FileSource? source, string? createTime, string? expirationTime, - global::Google.Gemini.VideoFileMetadata? videoMetadata, string? updateTime, - byte[]? sha256Hash, global::Google.Gemini.Status? error, - string? displayName, - string? mimeType, - string? sizeBytes, - string? uri, - string? name) + string? sizeBytes) { - this.Source = source; - this.DownloadUri = downloadUri; + this.MimeType = mimeType; + this.VideoMetadata = videoMetadata; + this.Name = name; this.State = state; + this.Uri = uri; + this.Sha256Hash = sha256Hash; + this.DisplayName = displayName; + this.DownloadUri = downloadUri; + this.Source = source; this.CreateTime = createTime; this.ExpirationTime = expirationTime; - this.VideoMetadata = videoMetadata; this.UpdateTime = updateTime; - this.Sha256Hash = sha256Hash; this.Error = error; - this.DisplayName = displayName; - this.MimeType = mimeType; this.SizeBytes = sizeBytes; - this.Uri = uri; - 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 298bf9add..02bb5e253 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 @@ -9,31 +9,31 @@ namespace Google.Gemini public sealed partial class FileSearchStore { /// - /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
- /// 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("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { 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`.
+ /// 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("sizeBytes")] - public string? SizeBytes { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// - /// 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 ///
- [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] + public string? UpdateTime { get; set; } /// - /// Output only. The Timestamp of when the `FileSearchStore` was created.
+ /// Output only. The number of documents in the `FileSearchStore` that are being processed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("pendingDocumentsCount")] + public string? PendingDocumentsCount { get; set; } /// /// Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.
@@ -43,18 +43,18 @@ public sealed partial class FileSearchStore public string? ActiveDocumentsCount { 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.
+ /// 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 ///
- [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sizeBytes")] + public string? SizeBytes { get; set; } /// - /// Output only. The number of documents in the `FileSearchStore` that are being processed.
+ /// Output only. The Timestamp of when the `FileSearchStore` was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("pendingDocumentsCount")] - public string? PendingDocumentsCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { get; set; } /// /// Output only. The number of documents in the `FileSearchStore` that have failed processing.
@@ -72,31 +72,31 @@ public sealed partial class FileSearchStore /// /// Initializes a new instance of the class. /// - /// - /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
- /// 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" /// - /// - /// Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`.
+ /// + /// 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" + /// + /// Output only. The Timestamp of when the `FileSearchStore` was last updated.
+ /// Included only in responses /// - /// - /// Output only. The Timestamp of when the `FileSearchStore` was created.
+ /// + /// Output only. The number of documents in the `FileSearchStore` that are being processed.
/// 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. 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.
+ /// + /// 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 being processed.
+ /// + /// Output only. The Timestamp of when the `FileSearchStore` was created.
/// Included only in responses /// /// @@ -107,22 +107,22 @@ public sealed partial class FileSearchStore [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FileSearchStore( - string? updateTime, - string? sizeBytes, string? displayName, - string? createTime, - string? activeDocumentsCount, string? name, + string? updateTime, string? pendingDocumentsCount, + string? activeDocumentsCount, + string? sizeBytes, + string? createTime, string? failedDocumentsCount) { - this.UpdateTime = updateTime; - this.SizeBytes = sizeBytes; this.DisplayName = displayName; - this.CreateTime = createTime; - this.ActiveDocumentsCount = activeDocumentsCount; this.Name = name; + this.UpdateTime = updateTime; this.PendingDocumentsCount = pendingDocumentsCount; + this.ActiveDocumentsCount = activeDocumentsCount; + this.SizeBytes = sizeBytes; + this.CreateTime = createTime; this.FailedDocumentsCount = failedDocumentsCount; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionCall.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionCall.g.cs index f79aead3e..d8965a5f9 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionCall.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionCall.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class FunctionCall { /// - /// Optional. The function parameters and values in JSON object format. + /// Optional. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("args")] - public object? Args { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + public string? Id { 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. @@ -21,10 +21,10 @@ public sealed partial class FunctionCall public string? Name { get; set; } /// - /// Optional. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. + /// Optional. The function parameters and values in JSON object format. /// - [global::System.Text.Json.Serialization.JsonPropertyName("id")] - public string? Id { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("args")] + public object? Args { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -35,26 +35,26 @@ public sealed partial class FunctionCall /// /// Initializes a new instance of the class. /// - /// - /// Optional. The function parameters and values in JSON object format. + /// + /// Optional. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. /// /// /// 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. Unique identifier of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. + /// + /// Optional. The function parameters and values in JSON object format. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionCall( - object? args, + string? id, string? name, - string? id) + object? args) { - this.Args = args; - this.Name = name; this.Id = id; + this.Name = name; + this.Args = args; } /// 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 c3ef1d8d2..d622a198c 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,47 +9,47 @@ namespace Google.Gemini public sealed partial class FunctionDeclaration { /// - /// Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. + /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("behavior")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter))] - public global::Google.Gemini.FunctionDeclarationBehavior? Behavior { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { 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`. + /// 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("parametersJsonSchema")] - public object? ParametersJsonSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public global::Google.Gemini.Schema? Response { 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`. + /// 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("responseJsonSchema")] - public object? ResponseJsonSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("parametersJsonSchema")] + public object? ParametersJsonSchema { get; set; } /// - /// Required. A brief description of the function. + /// 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("description")] - public string? Description { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("parameters")] + public global::Google.Gemini.Schema? Parameters { 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. + /// 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("name")] - public string? Name { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] + public object? ResponseJsonSchema { 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. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. /// - [global::System.Text.Json.Serialization.JsonPropertyName("parameters")] - public global::Google.Gemini.Schema? Parameters { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("behavior")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.FunctionDeclarationBehaviorJsonConverter))] + public global::Google.Gemini.FunctionDeclarationBehavior? Behavior { 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). + /// Required. A brief description of the function. /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public global::Google.Gemini.Schema? Response { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -60,46 +60,46 @@ public sealed partial class FunctionDeclaration /// /// Initializes a new instance of the class. /// - /// - /// Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. + /// + /// 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. + /// + /// + /// 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. 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`. /// + /// + /// Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method. + /// /// /// Required. A brief description of the function. /// - /// - /// 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. - /// - /// - /// 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 `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). - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionDeclaration( - global::Google.Gemini.FunctionDeclarationBehavior? behavior, - object? parametersJsonSchema, - object? responseJsonSchema, - string? description, string? name, + global::Google.Gemini.Schema? response, + object? parametersJsonSchema, global::Google.Gemini.Schema? parameters, - global::Google.Gemini.Schema? response) + object? responseJsonSchema, + global::Google.Gemini.FunctionDeclarationBehavior? behavior, + string? description) { - this.Behavior = behavior; + this.Name = name; + this.Response = response; this.ParametersJsonSchema = parametersJsonSchema; + this.Parameters = parameters; this.ResponseJsonSchema = responseJsonSchema; + this.Behavior = behavior; this.Description = description; - this.Name = name; - this.Parameters = parameters; - this.Response = response; } /// 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 e2608b857..af8b82924 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 @@ -9,10 +9,16 @@ namespace Google.Gemini public sealed partial class FunctionResponse { /// - /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. + /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. /// - [global::System.Text.Json.Serialization.JsonPropertyName("id")] - public string? Id { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("parts")] + public global::System.Collections.Generic.IList? Parts { 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`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("willContinue")] + public bool? WillContinue { 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. @@ -28,22 +34,16 @@ public sealed partial class FunctionResponse public string? Name { 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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public object? Response { 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. 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("willContinue")] - public bool? WillContinue { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("id")] + public string? Id { get; set; } /// - /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. + /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("parts")] - public global::System.Collections.Generic.IList? Parts { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("response")] + public object? Response { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -54,8 +54,11 @@ public sealed partial class FunctionResponse /// /// Initializes a new instance of the class. /// - /// - /// Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`. + /// + /// Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. + /// + /// + /// 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. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE. @@ -63,32 +66,29 @@ public sealed partial class FunctionResponse /// /// 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`. + /// /// /// 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. /// - /// - /// 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. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionResponse( - string? id, + global::System.Collections.Generic.IList? parts, + bool? willContinue, global::Google.Gemini.FunctionResponseScheduling? scheduling, string? name, - object? response, - bool? willContinue, - global::System.Collections.Generic.IList? parts) + string? id, + object? response) { - this.Id = id; + this.Parts = parts; + this.WillContinue = willContinue; this.Scheduling = scheduling; this.Name = name; + this.Id = id; this.Response = response; - this.WillContinue = willContinue; - this.Parts = parts; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponseBlob.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponseBlob.g.cs index 68b61c647..d727aa3ec 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponseBlob.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.FunctionResponseBlob.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class FunctionResponseBlob { - /// - /// 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). - /// - [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; } + /// + /// 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). + /// + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + public string? MimeType { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class FunctionResponseBlob /// /// Initializes a new instance of the class. /// - /// - /// 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). - /// /// /// Raw bytes for media formats. /// + /// + /// 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). + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public FunctionResponseBlob( - string? mimeType, - byte[]? data) + byte[]? data, + string? mimeType) { - this.MimeType = mimeType; this.Data = data; + this.MimeType = mimeType; } /// 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 1a990e852..e3c07b16b 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,18 +9,17 @@ namespace Google.Gemini public sealed partial class GenerateContentBatch { /// - /// Output only. The time at which the batch processing completed.
- /// Included only in responses + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] - public string? EndTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("model")] + public string? Model { get; set; } /// - /// Output only. The time at which the batch was last updated.
+ /// Output only. The time at which the batch was created.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] + public string? CreateTime { 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. @@ -28,6 +27,14 @@ public sealed partial class GenerateContentBatch [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("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentBatchStateJsonConverter))] + public global::Google.Gemini.GenerateContentBatchState? State { get; set; } + /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// @@ -35,50 +42,43 @@ public sealed partial class GenerateContentBatch public global::Google.Gemini.GenerateContentBatchOutput? Output { get; set; } /// - /// Stats about the batch. + /// Required. The user-defined name of this batch. /// - [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] - public global::Google.Gemini.BatchStats? BatchStats { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { 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; } - - /// - /// Configures the input to the batch request. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("inputConfig")] - public global::Google.Gemini.InputConfig? InputConfig { 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}`. + /// Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("model")] - public string? Model { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { 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.GenerateContentBatchStateJsonConverter))] - public global::Google.Gemini.GenerateContentBatchState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("batchStats")] + public global::Google.Gemini.BatchStats? BatchStats { get; set; } /// - /// Required. The user-defined name of this batch. + /// Configures the input to the batch request. /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("inputConfig")] + public global::Google.Gemini.InputConfig? InputConfig { 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; } /// /// Additional properties that are not explicitly defined in the schema @@ -89,71 +89,71 @@ public sealed partial class GenerateContentBatch /// /// Initializes a new instance of the class. /// - /// - /// Output only. The time at which the batch processing completed.
- /// Included only in responses + /// + /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// Output only. The time at which the batch was last updated.
+ /// + /// Output only. The time at which the batch was created.
/// 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 + /// /// /// The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field. /// - /// - /// Stats about the batch. + /// + /// Required. The user-defined name of this batch. + /// + /// + /// Output only. The time at which the batch processing completed.
+ /// Included only in responses /// /// /// 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 name of the `Model` to use for generating the completion. Format: `models/{model}`. - /// - /// - /// Output only. The state of the batch.
- /// Included only in responses - /// - /// - /// Required. The user-defined name of this batch. - /// - /// - /// 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 /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentBatch( - string? endTime, - string? updateTime, + string? model, + string? createTime, string? priority, + global::Google.Gemini.GenerateContentBatchState? state, global::Google.Gemini.GenerateContentBatchOutput? output, - global::Google.Gemini.BatchStats? batchStats, + string? displayName, + string? endTime, string? name, + global::Google.Gemini.BatchStats? batchStats, global::Google.Gemini.InputConfig? inputConfig, - string? model, - global::Google.Gemini.GenerateContentBatchState? state, - string? displayName, - string? createTime) + string? updateTime) { - this.EndTime = endTime; - this.UpdateTime = updateTime; + this.Model = model; + this.CreateTime = createTime; this.Priority = priority; + this.State = state; this.Output = output; - this.BatchStats = batchStats; + this.DisplayName = displayName; + this.EndTime = endTime; this.Name = name; + this.BatchStats = batchStats; this.InputConfig = inputConfig; - this.Model = model; - this.State = state; - this.DisplayName = displayName; - this.CreateTime = createTime; + 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 7cdcb7266..b0e462995 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 @@ -8,12 +8,36 @@ namespace Google.Gemini /// public sealed partial class GenerateContentRequest { + /// + /// 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; } + + /// + /// 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. 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("store")] + public bool? Store { 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. /// [global::System.Text.Json.Serialization.JsonPropertyName("contents")] public global::System.Collections.Generic.IList? Contents { 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}` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("cachedContent")] + public string? CachedContent { get; set; } + /// /// Optional. The service tier of the request. /// @@ -21,6 +45,12 @@ public sealed partial class GenerateContentRequest [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GenerateContentRequestServiceTierJsonConverter))] public global::Google.Gemini.GenerateContentRequestServiceTier? ServiceTier { 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. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tools")] + public global::System.Collections.Generic.IList? Tools { get; set; } + /// /// The Tool configuration containing parameters for specifying `Tool` use in the request. /// @@ -39,36 +69,6 @@ public sealed partial class GenerateContentRequest [global::System.Text.Json.Serialization.JsonPropertyName("model")] public string? Model { 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; } - - /// - /// 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("cachedContent")] - public string? CachedContent { 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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("tools")] - public global::System.Collections.Generic.IList? Tools { get; set; } - - /// - /// 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("store")] - public bool? Store { 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("systemInstruction")] - public global::Google.Gemini.Content? SystemInstruction { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -78,12 +78,27 @@ public sealed partial class GenerateContentRequest /// /// Initializes a new instance of the class. /// + /// + /// Configuration options for model generation and outputs. Not all parameters are configurable for every 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. + /// + /// + /// Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config. + /// /// /// 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 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. The service tier of the request. /// + /// + /// 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. /// @@ -93,46 +108,31 @@ public sealed partial class GenerateContentRequest /// /// Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`. /// - /// - /// 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. 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. - /// - /// - /// 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. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentRequest( + global::Google.Gemini.GenerationConfig? generationConfig, + global::Google.Gemini.Content? systemInstruction, + bool? store, global::System.Collections.Generic.IList? contents, + string? cachedContent, global::Google.Gemini.GenerateContentRequestServiceTier? serviceTier, + global::System.Collections.Generic.IList? tools, global::Google.Gemini.ToolConfig? toolConfig, global::System.Collections.Generic.IList? safetySettings, - string? model, - global::Google.Gemini.GenerationConfig? generationConfig, - string? cachedContent, - global::System.Collections.Generic.IList? tools, - bool? store, - global::Google.Gemini.Content? systemInstruction) + string? model) { + this.GenerationConfig = generationConfig; + this.SystemInstruction = systemInstruction; + this.Store = store; this.Contents = contents; + this.CachedContent = cachedContent; this.ServiceTier = serviceTier; + this.Tools = tools; this.ToolConfig = toolConfig; this.SafetySettings = safetySettings; this.Model = model; - this.GenerationConfig = generationConfig; - this.CachedContent = cachedContent; - this.Tools = tools; - this.Store = store; - this.SystemInstruction = systemInstruction; } /// 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 f0093f21a..1f823191c 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,17 +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; } - - /// - /// Output only. The model version used to generate the response.
- /// Included only in responses + /// Candidate responses from the model. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("modelVersion")] - public string? ModelVersion { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("candidates")] + public global::System.Collections.Generic.IList? Candidates { get; set; } /// /// Metadata on the generation request's token usage. @@ -34,6 +27,12 @@ public sealed partial class GenerateContentResponse [global::System.Text.Json.Serialization.JsonPropertyName("responseId")] public string? ResponseId { get; set; } + /// + /// 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; } + /// /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. /// @@ -41,10 +40,11 @@ public sealed partial class GenerateContentResponse public global::Google.Gemini.ModelStatus? ModelStatus { get; set; } /// - /// Candidate responses from the model. + /// Output only. The model version used to generate the response.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("candidates")] - public global::System.Collections.Generic.IList? Candidates { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("modelVersion")] + public string? ModelVersion { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -55,12 +55,8 @@ public sealed partial class GenerateContentResponse /// /// Initializes a new instance of the class. /// - /// - /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. - /// - /// - /// Output only. The model version used to generate the response.
- /// Included only in responses + /// + /// Candidate responses from the model. /// /// /// Metadata on the generation request's token usage. @@ -69,29 +65,33 @@ public sealed partial class GenerateContentResponse /// Output only. response_id is used to identify each response.
/// Included only in responses /// + /// + /// A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`. + /// /// /// The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. /// - /// - /// Candidate responses from the model. + /// + /// Output only. The model version used to generate the response.
+ /// Included only in responses /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerateContentResponse( - global::Google.Gemini.PromptFeedback? promptFeedback, - string? modelVersion, + global::System.Collections.Generic.IList? candidates, global::Google.Gemini.UsageMetadata? usageMetadata, string? responseId, + global::Google.Gemini.PromptFeedback? promptFeedback, global::Google.Gemini.ModelStatus? modelStatus, - global::System.Collections.Generic.IList? candidates) + string? modelVersion) { - this.PromptFeedback = promptFeedback; - this.ModelVersion = modelVersion; + this.Candidates = candidates; this.UsageMetadata = usageMetadata; this.ResponseId = responseId; + this.PromptFeedback = promptFeedback; this.ModelStatus = modelStatus; - this.Candidates = candidates; + this.ModelVersion = modelVersion; } /// 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 1e5359b8d..897382f55 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 @@ -9,16 +9,12 @@ namespace Google.Gemini public sealed partial class GeneratedFile { /// - /// Identifier. The name of the generated file. Example: `generatedFiles/abc-123` - /// - [global::System.Text.Json.Serialization.JsonPropertyName("name")] - public string? Name { get; set; } - - /// - /// MIME type of the generatedFile. + /// Output only. The state of the GeneratedFile.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - public string? MimeType { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("state")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter))] + public global::Google.Gemini.GeneratedFileState? State { 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,12 +23,16 @@ public sealed partial class GeneratedFile public global::Google.Gemini.Status? Error { get; set; } /// - /// Output only. The state of the GeneratedFile.
- /// Included only in responses + /// MIME type of the generatedFile. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("state")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.GeneratedFileStateJsonConverter))] - public global::Google.Gemini.GeneratedFileState? State { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + public string? MimeType { get; set; } + + /// + /// Identifier. The name of the generated file. Example: `generatedFiles/abc-123` + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -43,32 +43,32 @@ public sealed partial class GeneratedFile /// /// Initializes a new instance of the class. /// - /// - /// 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 /// /// /// 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 state of the GeneratedFile.
- /// Included only in responses + /// + /// MIME type of the generatedFile. + /// + /// + /// Identifier. The name of the generated file. Example: `generatedFiles/abc-123` /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GeneratedFile( - string? name, - string? mimeType, + global::Google.Gemini.GeneratedFileState? state, global::Google.Gemini.Status? error, - global::Google.Gemini.GeneratedFileState? state) + string? mimeType, + string? name) { - this.Name = name; - this.MimeType = mimeType; - this.Error = error; this.State = state; + this.Error = error; + this.MimeType = mimeType; + this.Name = name; } /// 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 8cc130184..8d34a2e1b 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,10 +9,10 @@ namespace Google.Gemini public sealed partial class GenerationConfig { /// - /// 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. + /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. /// - [global::System.Text.Json.Serialization.JsonPropertyName("topK")] - public int? TopK { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("seed")] + public int? Seed { 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. @@ -21,113 +21,113 @@ public sealed partial class GenerationConfig public string? ResponseMimeType { 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. 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("frequencyPenalty")] - public float? FrequencyPenalty { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topP")] + public float? TopP { get; set; } /// - /// Config for speech generation and transcription. + /// Optional. Enables enhanced civic answers. It may not be available for all models. /// - [global::System.Text.Json.Serialization.JsonPropertyName("speechConfig")] - public global::Google.Gemini.SpeechConfig? SpeechConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("enableEnhancedCivicAnswers")] + public bool? EnableEnhancedCivicAnswers { 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]. + /// 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("logprobs")] - public int? Logprobs { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] + public float? Temperature { 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. 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("responseSchema")] - public global::Google.Gemini.Schema? ResponseSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("stopSequences")] + public global::System.Collections.Generic.IList? StopSequences { get; set; } /// - /// Optional. Seed used in decoding. If not set, the request uses a randomly generated seed. + /// Config for thinking features. /// - [global::System.Text.Json.Serialization.JsonPropertyName("seed")] - public int? Seed { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thinkingConfig")] + public global::Google.Gemini.ThinkingConfig? ThinkingConfig { 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. + /// 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("maxOutputTokens")] - public int? MaxOutputTokens { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseSchema")] + public global::Google.Gemini.Schema? ResponseSchema { get; set; } /// - /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. + /// Config for image generation features. /// - [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] - public object? ResponseJsonSchema { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("imageConfig")] + public global::Google.Gemini.ImageConfig? ImageConfig { get; set; } /// - /// 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. 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("candidateCount")] - public int? CandidateCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("logprobs")] + public int? Logprobs { get; set; } /// - /// Optional. Enables enhanced civic answers. It may not be available for all models. + /// 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("enableEnhancedCivicAnswers")] - public bool? EnableEnhancedCivicAnswers { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxOutputTokens")] + public int? MaxOutputTokens { 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. 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] - public float? Temperature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topK")] + public int? TopK { 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; } /// - /// 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 speech generation and transcription. /// - [global::System.Text.Json.Serialization.JsonPropertyName("presencePenalty")] - public float? PresencePenalty { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("speechConfig")] + public global::Google.Gemini.SpeechConfig? SpeechConfig { get; set; } /// - /// Config for thinking features. + /// Optional. If specified, the media resolution specified will be used. /// - [global::System.Text.Json.Serialization.JsonPropertyName("thinkingConfig")] - public global::Google.Gemini.ThinkingConfig? ThinkingConfig { 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. + /// 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("stopSequences")] - public global::System.Collections.Generic.IList? StopSequences { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("frequencyPenalty")] + public float? FrequencyPenalty { get; set; } /// - /// Config for image generation features. + /// Optional. If true, export the logprobs results in response. /// - [global::System.Text.Json.Serialization.JsonPropertyName("imageConfig")] - public global::Google.Gemini.ImageConfig? ImageConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseLogprobs")] + public bool? ResponseLogprobs { 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. 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("responseModalities")] - public global::System.Collections.Generic.IList? ResponseModalities { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("candidateCount")] + public int? CandidateCount { 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. + /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. /// - [global::System.Text.Json.Serialization.JsonPropertyName("topP")] - public float? TopP { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("responseJsonSchema")] + public object? ResponseJsonSchema { get; set; } /// - /// Optional. If specified, the media resolution specified will be used. + /// 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("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("presencePenalty")] + public float? PresencePenalty { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -138,35 +138,14 @@ public sealed partial class GenerationConfig /// /// Initializes a new instance of the class. /// - /// - /// 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. - /// - /// - /// 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. 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 speech generation and transcription. - /// - /// - /// 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]. - /// - /// - /// 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. Seed used in decoding. If not set, the request uses a randomly generated seed. /// - /// - /// 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. - /// - /// - /// Optional. An internal detail. Use `responseJsonSchema` rather than this field. + /// + /// 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. 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. @@ -174,75 +153,96 @@ public sealed partial class GenerationConfig /// /// 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 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. 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. /// /// /// Config for thinking features. /// - /// - /// 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). /// /// /// Config for image generation features. /// + /// + /// 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 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. + /// + /// + /// 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. + /// /// /// 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. 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 speech generation and transcription. /// /// /// Optional. If specified, the media resolution specified will be used. /// + /// + /// 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 true, export the logprobs results in response. + /// + /// + /// 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. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GenerationConfig( - int? topK, - string? responseMimeType, - float? frequencyPenalty, - global::Google.Gemini.SpeechConfig? speechConfig, - int? logprobs, - global::Google.Gemini.Schema? responseSchema, int? seed, - int? maxOutputTokens, - object? responseJsonSchema, - int? candidateCount, + string? responseMimeType, + float? topP, bool? enableEnhancedCivicAnswers, float? temperature, - bool? responseLogprobs, - float? presencePenalty, - global::Google.Gemini.ThinkingConfig? thinkingConfig, global::System.Collections.Generic.IList? stopSequences, + global::Google.Gemini.ThinkingConfig? thinkingConfig, + global::Google.Gemini.Schema? responseSchema, global::Google.Gemini.ImageConfig? imageConfig, + int? logprobs, + int? maxOutputTokens, + int? topK, global::System.Collections.Generic.IList? responseModalities, - float? topP, - global::Google.Gemini.GenerationConfigMediaResolution? mediaResolution) + global::Google.Gemini.SpeechConfig? speechConfig, + global::Google.Gemini.GenerationConfigMediaResolution? mediaResolution, + float? frequencyPenalty, + bool? responseLogprobs, + int? candidateCount, + object? responseJsonSchema, + float? presencePenalty) { - this.TopK = topK; - this.ResponseMimeType = responseMimeType; - this.FrequencyPenalty = frequencyPenalty; - this.SpeechConfig = speechConfig; - this.Logprobs = logprobs; - this.ResponseSchema = responseSchema; this.Seed = seed; - this.MaxOutputTokens = maxOutputTokens; - this.ResponseJsonSchema = responseJsonSchema; - this.CandidateCount = candidateCount; + this.ResponseMimeType = responseMimeType; + this.TopP = topP; this.EnableEnhancedCivicAnswers = enableEnhancedCivicAnswers; this.Temperature = temperature; - this.ResponseLogprobs = responseLogprobs; - this.PresencePenalty = presencePenalty; - this.ThinkingConfig = thinkingConfig; this.StopSequences = stopSequences; + this.ThinkingConfig = thinkingConfig; + this.ResponseSchema = responseSchema; this.ImageConfig = imageConfig; + this.Logprobs = logprobs; + this.MaxOutputTokens = maxOutputTokens; + this.TopK = topK; this.ResponseModalities = responseModalities; - this.TopP = topP; + this.SpeechConfig = speechConfig; this.MediaResolution = mediaResolution; + this.FrequencyPenalty = frequencyPenalty; + this.ResponseLogprobs = responseLogprobs; + this.CandidateCount = candidateCount; + this.ResponseJsonSchema = responseJsonSchema; + this.PresencePenalty = presencePenalty; } /// 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 221642aa0..74993cd9f 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 @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport { - /// - /// Segment of the content. - /// - [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). /// @@ -33,6 +27,12 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport [global::System.Text.Json.Serialization.JsonPropertyName("renderedParts")] public global::System.Collections.Generic.IList? RenderedParts { get; set; } + /// + /// Segment of the content. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("segment")] + public global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? Segment { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -42,9 +42,6 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport /// /// Initializes a new instance of the class. /// - /// - /// 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). /// @@ -55,19 +52,22 @@ public sealed partial class GoogleAiGenerativelanguageV1betaGroundingSupport /// 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 /// + /// + /// Segment of the content. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #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? renderedParts) + global::System.Collections.Generic.IList? renderedParts, + global::Google.Gemini.GoogleAiGenerativelanguageV1betaSegment? segment) { - this.Segment = segment; this.GroundingChunkIndices = groundingChunkIndices; this.ConfidenceScores = confidenceScores; this.RenderedParts = renderedParts; + this.Segment = segment; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaSegment.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaSegment.g.cs index 603af360c..06a377fbc 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaSegment.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.GoogleAiGenerativelanguageV1betaSegment.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class GoogleAiGenerativelanguageV1betaSegment { /// - /// End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. + /// The index of a Part object within its parent Content object. /// - [global::System.Text.Json.Serialization.JsonPropertyName("endIndex")] - public int? EndIndex { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("partIndex")] + public int? PartIndex { get; set; } /// /// Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero. @@ -21,16 +21,16 @@ public sealed partial class GoogleAiGenerativelanguageV1betaSegment public int? StartIndex { get; set; } /// - /// The text corresponding to the segment from the response. + /// End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. /// - [global::System.Text.Json.Serialization.JsonPropertyName("text")] - public string? Text { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("endIndex")] + public int? EndIndex { get; set; } /// - /// The index of a Part object within its parent Content object. + /// The text corresponding to the segment from the response. /// - [global::System.Text.Json.Serialization.JsonPropertyName("partIndex")] - public int? PartIndex { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("text")] + public string? Text { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -41,31 +41,31 @@ public sealed partial class GoogleAiGenerativelanguageV1betaSegment /// /// Initializes a new instance of the class. /// - /// - /// End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. + /// + /// The index of a Part object within its parent Content object. /// /// /// Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero. /// + /// + /// End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. + /// /// /// The text corresponding to the segment from the response. /// - /// - /// The index of a Part object within its parent Content object. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GoogleAiGenerativelanguageV1betaSegment( - int? endIndex, + int? partIndex, int? startIndex, - string? text, - int? partIndex) + int? endIndex, + string? text) { - this.EndIndex = endIndex; + this.PartIndex = partIndex; this.StartIndex = startIndex; + this.EndIndex = endIndex; this.Text = text; - this.PartIndex = partIndex; } /// 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 364544621..bcc9b423f 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 { - /// - /// 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; } + /// + /// 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; } + /// /// 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. /// - /// - /// 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. /// + /// + /// Different types of search that can be enabled on the GoogleSearch tool. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GoogleSearch( - global::Google.Gemini.SearchTypes? searchTypes, - global::Google.Gemini.Interval? timeRangeFilter) + global::Google.Gemini.Interval? timeRangeFilter, + global::Google.Gemini.SearchTypes? searchTypes) { - this.SearchTypes = searchTypes; this.TimeRangeFilter = timeRangeFilter; + this.SearchTypes = searchTypes; } /// 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 2363445ad..f33a82f52 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 @@ -8,18 +8,6 @@ namespace Google.Gemini /// public sealed partial class GroundingChunk { - /// - /// Chunk from the web. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("web")] - public global::Google.Gemini.Web? Web { 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 image search. /// @@ -32,6 +20,18 @@ 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; } + + /// + /// Chunk from the web. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("web")] + public global::Google.Gemini.Web? Web { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -41,31 +41,31 @@ public sealed partial class GroundingChunk /// /// Initializes a new instance of the class. /// - /// - /// Chunk from the web. - /// - /// - /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. - /// /// /// Chunk from image search. /// /// /// Chunk from context retrieved by the file search tool. /// + /// + /// A grounding chunk from Google Maps. A Maps chunk corresponds to a single place. + /// + /// + /// Chunk from the web. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingChunk( - global::Google.Gemini.Web? web, - global::Google.Gemini.Maps? maps, global::Google.Gemini.Image? image, - global::Google.Gemini.RetrievedContext? retrievedContext) + global::Google.Gemini.RetrievedContext? retrievedContext, + global::Google.Gemini.Maps? maps, + global::Google.Gemini.Web? web) { - this.Web = web; - this.Maps = maps; this.Image = image; this.RetrievedContext = retrievedContext; + this.Maps = maps; + this.Web = web; } /// 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 a3516d3a2..c16283ecb 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 @@ -9,16 +9,16 @@ namespace Google.Gemini public sealed partial class GroundingMetadata { /// - /// Image search queries used for grounding. + /// Metadata related to retrieval in the grounding flow. /// - [global::System.Text.Json.Serialization.JsonPropertyName("imageSearchQueries")] - public global::System.Collections.Generic.IList? ImageSearchQueries { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("retrievalMetadata")] + public global::Google.Gemini.RetrievalMetadata? RetrievalMetadata { get; set; } /// - /// 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. + /// Web search queries for the following-up web search. /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleMapsWidgetContextToken")] - public string? GoogleMapsWidgetContextToken { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("webSearchQueries")] + public global::System.Collections.Generic.IList? WebSearchQueries { get; set; } /// /// List of grounding support. @@ -27,10 +27,16 @@ public sealed partial class GroundingMetadata public global::System.Collections.Generic.IList? GroundingSupports { get; set; } /// - /// Web search queries for the following-up web search. + /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("webSearchQueries")] - public global::System.Collections.Generic.IList? WebSearchQueries { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("googleMapsWidgetContextToken")] + public string? GoogleMapsWidgetContextToken { get; set; } + + /// + /// Image search queries used for grounding. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("imageSearchQueries")] + public global::System.Collections.Generic.IList? ImageSearchQueries { get; set; } /// /// Google search entry point. @@ -44,12 +50,6 @@ public sealed partial class GroundingMetadata [global::System.Text.Json.Serialization.JsonPropertyName("groundingChunks")] public global::System.Collections.Generic.IList? GroundingChunks { get; set; } - /// - /// Metadata related to retrieval in the grounding flow. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("retrievalMetadata")] - public global::Google.Gemini.RetrievalMetadata? RetrievalMetadata { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -59,17 +59,20 @@ public sealed partial class GroundingMetadata /// /// Initializes a new instance of the class. /// - /// - /// Image search queries used for grounding. + /// + /// Metadata related to retrieval in the grounding flow. /// - /// - /// 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. + /// + /// Web search queries for the following-up web search. /// /// /// List of grounding support. /// - /// - /// Web search queries for the following-up web search. + /// + /// 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. + /// + /// + /// Image search queries used for grounding. /// /// /// Google search entry point. @@ -77,28 +80,25 @@ public sealed partial class GroundingMetadata /// /// 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. /// - /// - /// Metadata related to retrieval in the grounding flow. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GroundingMetadata( - global::System.Collections.Generic.IList? imageSearchQueries, - string? googleMapsWidgetContextToken, - global::System.Collections.Generic.IList? groundingSupports, + global::Google.Gemini.RetrievalMetadata? retrievalMetadata, global::System.Collections.Generic.IList? webSearchQueries, + global::System.Collections.Generic.IList? groundingSupports, + string? googleMapsWidgetContextToken, + global::System.Collections.Generic.IList? imageSearchQueries, global::Google.Gemini.SearchEntryPoint? searchEntryPoint, - global::System.Collections.Generic.IList? groundingChunks, - global::Google.Gemini.RetrievalMetadata? retrievalMetadata) + global::System.Collections.Generic.IList? groundingChunks) { - this.ImageSearchQueries = imageSearchQueries; - this.GoogleMapsWidgetContextToken = googleMapsWidgetContextToken; - this.GroundingSupports = groundingSupports; + this.RetrievalMetadata = retrievalMetadata; this.WebSearchQueries = webSearchQueries; + this.GroundingSupports = groundingSupports; + this.GoogleMapsWidgetContextToken = googleMapsWidgetContextToken; + this.ImageSearchQueries = imageSearchQueries; this.SearchEntryPoint = searchEntryPoint; this.GroundingChunks = groundingChunks; - this.RetrievalMetadata = retrievalMetadata; } /// 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 9264e6ba5..9bc3820b2 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 @@ -14,6 +14,12 @@ public sealed partial class Hyperparameters [global::System.Text.Json.Serialization.JsonPropertyName("learningRate")] public float? LearningRate { get; set; } + /// + /// 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; } + /// /// 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. /// @@ -26,12 +32,6 @@ public sealed partial class Hyperparameters [global::System.Text.Json.Serialization.JsonPropertyName("batchSize")] public int? BatchSize { get; set; } - /// - /// 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; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -44,28 +44,28 @@ public sealed partial class Hyperparameters /// /// 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. /// + /// + /// 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 number of training epochs. An epoch is one pass through the training data. If not set, a default of 5 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. /// - /// - /// 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. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Hyperparameters( float? learningRate, + float? learningRateMultiplier, int? epochCount, - int? batchSize, - float? learningRateMultiplier) + int? batchSize) { this.LearningRate = learningRate; + this.LearningRateMultiplier = learningRateMultiplier; this.EpochCount = epochCount; this.BatchSize = batchSize; - this.LearningRateMultiplier = learningRateMultiplier; } /// 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 ab421f3d7..7fa6bd850 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,10 +9,10 @@ namespace Google.Gemini public sealed partial class Image { /// - /// The title of the web page that the image is from. + /// The web page URI for attribution. /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("sourceUri")] + public string? SourceUri { get; set; } /// /// The root domain of the web page that the image is from, e.g. "example.com". @@ -21,16 +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. + /// 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; } /// /// 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 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 title of the web page that the image is from. + /// /// /// The image asset URL. /// - /// - /// The web page URI for attribution. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Image( - string? title, + string? sourceUri, string? domain, - string? imageUri, - string? sourceUri) + string? title, + string? imageUri) { - this.Title = title; + this.SourceUri = sourceUri; this.Domain = domain; + this.Title = title; this.ImageUri = imageUri; - this.SourceUri = sourceUri; } /// 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 99bdd63dd..2f4a44cad 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,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class ImportFileRequest { + /// + /// 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; } + /// /// Required. The name of the `File` to import. Example: `files/abc-123` /// @@ -20,12 +26,6 @@ public sealed partial class ImportFileRequest [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; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -35,26 +35,26 @@ public sealed partial class ImportFileRequest /// /// Initializes a new instance of the class. /// + /// + /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto + /// /// /// Required. The name of the `File` to import. Example: `files/abc-123` /// /// /// Custom metadata to be associated with the file. /// - /// - /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ImportFileRequest( + global::Google.Gemini.ChunkingConfig? chunkingConfig, string? fileName, - global::System.Collections.Generic.IList? customMetadata, - global::Google.Gemini.ChunkingConfig? chunkingConfig) + global::System.Collections.Generic.IList? customMetadata) { + this.ChunkingConfig = chunkingConfig; this.FileName = fileName; this.CustomMetadata = customMetadata; - this.ChunkingConfig = chunkingConfig; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentRequest.g.cs index c70f6aa29..a3b4bba3f 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedEmbedContentRequest.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class InlinedEmbedContentRequest { - /// - /// Request containing the `Content` for the model to embed. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("request")] - public global::Google.Gemini.EmbedContentRequest? Request { get; set; } - /// /// Optional. The metadata to be associated with the request. /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] public object? Metadata { get; set; } + /// + /// Request containing the `Content` for the model to embed. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("request")] + public global::Google.Gemini.EmbedContentRequest? Request { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class InlinedEmbedContentRequest /// /// Initializes a new instance of the class. /// - /// - /// Request containing the `Content` for the model to embed. - /// /// /// Optional. The metadata to be associated with the request. /// + /// + /// Request containing the `Content` for the model to embed. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedEmbedContentRequest( - global::Google.Gemini.EmbedContentRequest? request, - object? metadata) + object? metadata, + global::Google.Gemini.EmbedContentRequest? request) { - this.Request = request; this.Metadata = metadata; + this.Request = request; } /// 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 d705a9787..5849d8d11 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 @@ -8,18 +8,18 @@ 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). - /// - [global::System.Text.Json.Serialization.JsonPropertyName("error")] - public global::Google.Gemini.Status? Error { get; set; } - /// /// The response to an `EmbedContentRequest`. /// [global::System.Text.Json.Serialization.JsonPropertyName("response")] public global::Google.Gemini.EmbedContentResponse? Response { 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; } + /// /// Output only. The metadata associated with the request.
/// Included only in responses @@ -36,12 +36,12 @@ 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`. /// + /// + /// 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 @@ -50,12 +50,12 @@ public sealed partial class InlinedEmbedContentResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedEmbedContentResponse( - global::Google.Gemini.Status? error, global::Google.Gemini.EmbedContentResponse? response, + global::Google.Gemini.Status? error, object? metadata) { - this.Error = error; this.Response = response; + this.Error = error; this.Metadata = metadata; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedRequest.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedRequest.g.cs index 3815f3fd4..9a6afbda5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedRequest.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InlinedRequest.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini ///
public sealed partial class InlinedRequest { - /// - /// Request to generate a completion from the model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("request")] - public global::Google.Gemini.GenerateContentRequest? Request { get; set; } - /// /// Optional. The metadata to be associated with the request. /// [global::System.Text.Json.Serialization.JsonPropertyName("metadata")] public object? Metadata { get; set; } + /// + /// Request to generate a completion from the model. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("request")] + public global::Google.Gemini.GenerateContentRequest? Request { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class InlinedRequest /// /// Initializes a new instance of the class. /// - /// - /// Request to generate a completion from the model. - /// /// /// Optional. The metadata to be associated with the request. /// + /// + /// Request to generate a completion from the model. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedRequest( - global::Google.Gemini.GenerateContentRequest? request, - object? metadata) + object? metadata, + global::Google.Gemini.GenerateContentRequest? request) { - this.Request = request; this.Metadata = metadata; + this.Request = request; } /// 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 4edfdb2b4..5993a5bbc 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 @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class InlinedResponse { - /// - /// 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; } - /// /// 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("response")] public global::Google.Gemini.GenerateContentResponse? Response { 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; } + /// /// Output only. The metadata associated with the request.
/// Included only in responses @@ -36,12 +36,12 @@ public sealed partial class InlinedResponse /// /// 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). - /// /// /// 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`. /// + /// + /// 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 @@ -50,12 +50,12 @@ public sealed partial class InlinedResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public InlinedResponse( - global::Google.Gemini.Status? error, global::Google.Gemini.GenerateContentResponse? response, + global::Google.Gemini.Status? error, object? metadata) { - this.Error = error; this.Response = response; + this.Error = error; this.Metadata = metadata; } 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 01a06fc30..c37f2158f 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.InputEmbedContentConfig.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputEmbedContentConfig.g.cs index d91125c9f..acc98cfe5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputEmbedContentConfig.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.InputEmbedContentConfig.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class InputEmbedContentConfig { - /// - /// 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.InlinedEmbedContentRequests? 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 InputEmbedContentConfig /// /// 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 InputEmbedContentConfig( - string? fileName, - global::Google.Gemini.InlinedEmbedContentRequests? requests) + global::Google.Gemini.InlinedEmbedContentRequests? requests, + string? fileName) { - this.FileName = fileName; this.Requests = requests; + this.FileName = fileName; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Interval.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Interval.g.cs index d5800e1d6..0ba65b3e8 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Interval.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.Interval.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class Interval { - /// - /// Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("startTime")] - public string? StartTime { get; set; } - /// /// Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end. /// [global::System.Text.Json.Serialization.JsonPropertyName("endTime")] public string? EndTime { get; set; } + /// + /// Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("startTime")] + public string? StartTime { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class Interval /// /// Initializes a new instance of the class. /// - /// - /// Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. - /// /// /// Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end. /// + /// + /// Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Interval( - string? startTime, - string? endTime) + string? endTime, + string? startTime) { - this.StartTime = startTime; this.EndTime = endTime; + this.StartTime = startTime; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LatLng.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LatLng.g.cs index d54084716..8f9cc3b2c 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LatLng.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LatLng.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class LatLng { - /// - /// The latitude in degrees. It must be in the range [-90.0, +90.0]. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("latitude")] - public double? Latitude { get; set; } - /// /// The longitude in degrees. It must be in the range [-180.0, +180.0]. /// [global::System.Text.Json.Serialization.JsonPropertyName("longitude")] public double? Longitude { get; set; } + /// + /// The latitude in degrees. It must be in the range [-90.0, +90.0]. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("latitude")] + public double? Latitude { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class LatLng /// /// Initializes a new instance of the class. /// - /// - /// The latitude in degrees. It must be in the range [-90.0, +90.0]. - /// /// /// The longitude in degrees. It must be in the range [-180.0, +180.0]. /// + /// + /// The latitude in degrees. It must be in the range [-90.0, +90.0]. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public LatLng( - double? latitude, - double? longitude) + double? longitude, + double? latitude) { - this.Latitude = latitude; this.Longitude = longitude; + this.Latitude = latitude; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListCachedContentsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListCachedContentsResponse.g.cs index d8960e0af..6b112b840 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListCachedContentsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListCachedContentsResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListCachedContentsResponse { - /// - /// List of cached contents. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("cachedContents")] - public global::System.Collections.Generic.IList? CachedContents { get; set; } - /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// List of cached contents. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("cachedContents")] + public global::System.Collections.Generic.IList? CachedContents { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListCachedContentsResponse /// /// Initializes a new instance of the class. /// - /// - /// List of cached contents. - /// /// /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. /// + /// + /// List of cached contents. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListCachedContentsResponse( - global::System.Collections.Generic.IList? cachedContents, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? cachedContents) { - this.CachedContents = cachedContents; this.NextPageToken = nextPageToken; + this.CachedContents = cachedContents; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListDocumentsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListDocumentsResponse.g.cs index 9e87f2f8e..a3b1d8553 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListDocumentsResponse.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListDocumentsResponse.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListDocumentsResponse { - /// - /// The returned `Document`s. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("documents")] - public global::System.Collections.Generic.IList? Documents { 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 `Document`s. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("documents")] + public global::System.Collections.Generic.IList? Documents { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class ListDocumentsResponse /// /// Initializes a new instance of the class. /// - /// - /// The returned `Document`s. - /// /// /// 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 `Document`s. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListDocumentsResponse( - global::System.Collections.Generic.IList? documents, - string? nextPageToken) + string? nextPageToken, + global::System.Collections.Generic.IList? documents) { - this.Documents = documents; this.NextPageToken = nextPageToken; + this.Documents = documents; } /// 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 841ed8850..b64b02ebd 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 00f5c2a1e..7b51e54bd 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.ListOperationsResponse.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ListOperationsResponse.g.cs index 35553f7f9..ade5a8ecf 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 @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ListOperationsResponse { - /// - /// A list of operations that matches the specified filter in the request. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("operations")] - public global::System.Collections.Generic.IList? Operations { get; set; } - /// /// The standard List next-page token. /// [global::System.Text.Json.Serialization.JsonPropertyName("nextPageToken")] public string? NextPageToken { get; set; } + /// + /// A list of operations that matches the specified filter in the request. + /// + [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. /// @@ -35,12 +35,12 @@ public sealed partial class ListOperationsResponse /// /// Initializes a new instance of the class. /// - /// - /// A list of operations that matches the specified filter in the request. - /// /// /// The standard List next-page token. /// + /// + /// 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. /// @@ -48,12 +48,12 @@ public sealed partial class ListOperationsResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListOperationsResponse( - global::System.Collections.Generic.IList? operations, string? nextPageToken, + global::System.Collections.Generic.IList? operations, global::System.Collections.Generic.IList? unreachable) { - this.Operations = operations; this.NextPageToken = nextPageToken; + this.Operations = operations; this.Unreachable = unreachable; } 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 1429aa96a..d717cd002 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 @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class LogprobsResult { /// - /// Length = total number of decoding steps. + /// Sum of log probabilities for all tokens. /// - [global::System.Text.Json.Serialization.JsonPropertyName("topCandidates")] - public global::System.Collections.Generic.IList? TopCandidates { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("logProbabilitySum")] + public float? LogProbabilitySum { get; set; } /// /// Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates. @@ -21,10 +21,10 @@ public sealed partial class LogprobsResult public global::System.Collections.Generic.IList? ChosenCandidates { get; set; } /// - /// Sum of log probabilities for all tokens. + /// Length = total number of decoding steps. /// - [global::System.Text.Json.Serialization.JsonPropertyName("logProbabilitySum")] - public float? LogProbabilitySum { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topCandidates")] + public global::System.Collections.Generic.IList? TopCandidates { 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. + /// + /// Sum of log probabilities for all tokens. /// /// /// 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. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public LogprobsResult( - global::System.Collections.Generic.IList? topCandidates, + float? logProbabilitySum, global::System.Collections.Generic.IList? chosenCandidates, - float? logProbabilitySum) + global::System.Collections.Generic.IList? topCandidates) { - this.TopCandidates = topCandidates; - this.ChosenCandidates = chosenCandidates; this.LogProbabilitySum = logProbabilitySum; + this.ChosenCandidates = chosenCandidates; + this.TopCandidates = topCandidates; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResultCandidate.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResultCandidate.g.cs index 0d7b89520..5c9ddd1b0 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResultCandidate.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.LogprobsResultCandidate.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class LogprobsResultCandidate { - /// - /// The candidate's log probability. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("logProbability")] - public float? LogProbability { get; set; } - /// /// The candidate’s token string value. /// [global::System.Text.Json.Serialization.JsonPropertyName("token")] public string? Token { get; set; } + /// + /// The candidate's log probability. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("logProbability")] + public float? LogProbability { get; set; } + /// /// The candidate’s token id value. /// @@ -35,12 +35,12 @@ public sealed partial class LogprobsResultCandidate /// /// Initializes a new instance of the class. /// - /// - /// The candidate's log probability. - /// /// /// The candidate’s token string value. /// + /// + /// The candidate's log probability. + /// /// /// The candidate’s token id value. /// @@ -48,12 +48,12 @@ public sealed partial class LogprobsResultCandidate [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public LogprobsResultCandidate( - float? logProbability, string? token, + float? logProbability, int? tokenId) { - this.LogProbability = logProbability; this.Token = token; + this.LogProbability = logProbability; this.TokenId = tokenId; } 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 aefb66f25..5ae973792 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,16 +21,16 @@ public sealed partial class Maps public string? Text { get; set; } /// - /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("placeAnswerSources")] + public global::Google.Gemini.PlaceAnswerSources? PlaceAnswerSources { get; set; } /// - /// URI reference of the place. + /// Title of the place. /// - [global::System.Text.Json.Serialization.JsonPropertyName("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { get; set; } /// /// The ID of the place, in `places/{place_id}` format. A user can use this ID to look up that place. @@ -32,12 +38,6 @@ public sealed partial class Maps [global::System.Text.Json.Serialization.JsonPropertyName("placeId")] public string? PlaceId { 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; } - /// /// 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. /// + /// + /// 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. /// - /// - /// 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. /// - /// - /// 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. - /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Maps( + string? uri, string? text, + global::Google.Gemini.PlaceAnswerSources? placeAnswerSources, string? title, - string? uri, - string? placeId, - global::Google.Gemini.PlaceAnswerSources? placeAnswerSources) + string? placeId) { + this.Uri = uri; this.Text = text; + this.PlaceAnswerSources = placeAnswerSources; this.Title = title; - this.Uri = uri; this.PlaceId = placeId; - this.PlaceAnswerSources = placeAnswerSources; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.McpServer.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.McpServer.g.cs index d1c47b483..ab8cc3280 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.McpServer.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.McpServer.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class McpServer { - /// - /// A transport that can stream HTTP requests and responses. Next ID: 6 - /// - [global::System.Text.Json.Serialization.JsonPropertyName("streamableHttpTransport")] - public global::Google.Gemini.StreamableHttpTransport? StreamableHttpTransport { get; set; } - /// /// The name of the MCPServer. /// [global::System.Text.Json.Serialization.JsonPropertyName("name")] public string? Name { get; set; } + /// + /// A transport that can stream HTTP requests and responses. Next ID: 6 + /// + [global::System.Text.Json.Serialization.JsonPropertyName("streamableHttpTransport")] + public global::Google.Gemini.StreamableHttpTransport? StreamableHttpTransport { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class McpServer /// /// Initializes a new instance of the class. /// - /// - /// A transport that can stream HTTP requests and responses. Next ID: 6 - /// /// /// The name of the MCPServer. /// + /// + /// A transport that can stream HTTP requests and responses. Next ID: 6 + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public McpServer( - global::Google.Gemini.StreamableHttpTransport? streamableHttpTransport, - string? name) + string? name, + global::Google.Gemini.StreamableHttpTransport? streamableHttpTransport) { - this.StreamableHttpTransport = streamableHttpTransport; this.Name = name; + this.StreamableHttpTransport = streamableHttpTransport; } /// 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 54099dbd5..23489fd6f 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 @@ -9,64 +9,64 @@ namespace Google.Gemini public sealed partial class Model { /// - /// Maximum number of input tokens allowed for this model. + /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` /// - [global::System.Text.Json.Serialization.JsonPropertyName("inputTokenLimit")] - public int? InputTokenLimit { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("baseModelId")] + public string? BaseModelId { get; set; } /// - /// Maximum number of output tokens available for this model. + /// 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("outputTokenLimit")] - public int? OutputTokenLimit { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] + public float? Temperature { get; set; } /// - /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) + /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("version")] - public string? Version { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topP")] + public float? TopP { 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. + /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) /// - [global::System.Text.Json.Serialization.JsonPropertyName("topK")] - public int? TopK { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("version")] + public string? Version { get; set; } /// - /// Whether the model supports thinking. + /// Maximum number of input tokens allowed for this model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("thinking")] - public bool? Thinking { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("inputTokenLimit")] + public int? InputTokenLimit { 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. + /// 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("topP")] - public float? TopP { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] + public string? DisplayName { get; set; } /// - /// The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`. + /// The maximum temperature this model can use. /// - [global::System.Text.Json.Serialization.JsonPropertyName("supportedGenerationMethods")] - public global::System.Collections.Generic.IList? SupportedGenerationMethods { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxTemperature")] + public float? MaxTemperature { get; set; } /// - /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` + /// Maximum number of output tokens available for this model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("baseModelId")] - public string? BaseModelId { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("outputTokenLimit")] + public int? OutputTokenLimit { 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; } /// - /// The maximum temperature this model can use. + /// The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxTemperature")] - public float? MaxTemperature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("supportedGenerationMethods")] + public global::System.Collections.Generic.IList? SupportedGenerationMethods { 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` @@ -75,16 +75,16 @@ public sealed partial class Model public string? Name { 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. + /// A short description of the model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("displayName")] - public string? DisplayName { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { 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. + /// Whether the model supports thinking. /// - [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] - public float? Temperature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thinking")] + public bool? Thinking { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -95,76 +95,76 @@ public sealed partial class Model /// /// Initializes a new instance of the class. /// + /// + /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` + /// + /// + /// 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. + /// + /// + /// 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. + /// + /// + /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) + /// /// /// 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. + /// + /// + /// The maximum temperature this model can use. + /// /// /// Maximum number of output tokens available for this model. /// - /// - /// Required. The version number of the model. This represents the major version (`1.0` or `1.5`) - /// /// /// 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. /// - /// - /// 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. - /// /// /// The model's supported generation methods. The corresponding API method names are defined as Pascal case strings, such as `generateMessage` and `generateContent`. /// - /// - /// Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash` - /// - /// - /// A short description of the model. - /// - /// - /// The maximum temperature this model can use. - /// /// /// 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` /// - /// - /// 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. + /// + /// A short description of the model. /// - /// - /// 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. + /// + /// Whether the model supports thinking. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Model( + string? baseModelId, + float? temperature, + float? topP, + string? version, int? inputTokenLimit, + string? displayName, + float? maxTemperature, int? outputTokenLimit, - string? version, int? topK, - bool? thinking, - float? topP, global::System.Collections.Generic.IList? supportedGenerationMethods, - string? baseModelId, - string? description, - float? maxTemperature, string? name, - string? displayName, - float? temperature) + string? description, + bool? thinking) { + this.BaseModelId = baseModelId; + this.Temperature = temperature; + this.TopP = topP; + this.Version = version; this.InputTokenLimit = inputTokenLimit; + this.DisplayName = displayName; + this.MaxTemperature = maxTemperature; this.OutputTokenLimit = outputTokenLimit; - this.Version = version; this.TopK = topK; - this.Thinking = thinking; - this.TopP = topP; this.SupportedGenerationMethods = supportedGenerationMethods; - this.BaseModelId = baseModelId; - this.Description = description; - this.MaxTemperature = maxTemperature; this.Name = name; - this.DisplayName = displayName; - this.Temperature = temperature; + this.Description = description; + this.Thinking = thinking; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ModelStatus.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ModelStatus.g.cs index 10303d151..0da3ec088 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ModelStatus.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.ModelStatus.g.cs @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class ModelStatus { /// - /// A message explaining the model status. + /// The time at which the model will be retired. /// - [global::System.Text.Json.Serialization.JsonPropertyName("message")] - public string? Message { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("retirementTime")] + public string? RetirementTime { get; set; } /// /// The stage of the underlying model. @@ -22,10 +22,10 @@ public sealed partial class ModelStatus public global::Google.Gemini.ModelStatusModelStage? ModelStage { get; set; } /// - /// The time at which the model will be retired. + /// A message explaining the model status. /// - [global::System.Text.Json.Serialization.JsonPropertyName("retirementTime")] - public string? RetirementTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("message")] + public string? Message { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -36,26 +36,26 @@ public sealed partial class ModelStatus /// /// Initializes a new instance of the class. /// - /// - /// A message explaining the model status. + /// + /// The time at which the model will be retired. /// /// /// The stage of the underlying model. /// - /// - /// The time at which the model will be retired. + /// + /// A message explaining the model status. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ModelStatus( - string? message, + string? retirementTime, global::Google.Gemini.ModelStatusModelStage? modelStage, - string? retirementTime) + string? message) { - this.Message = message; - this.ModelStage = modelStage; this.RetirementTime = retirementTime; + this.ModelStage = modelStage; + this.Message = message; } /// 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 97cadfd92..f4d74a00e 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 @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class Operation { - /// - /// 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. /// @@ -21,10 +15,10 @@ public sealed partial class Operation public bool? Done { 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}`. + /// 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("name")] - public string? Name { 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). @@ -38,6 +32,12 @@ public sealed partial class Operation [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}`. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -47,14 +47,11 @@ public sealed partial class Operation /// /// Initializes a new instance of the class. /// - /// - /// 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 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}`. + /// + /// 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). @@ -62,21 +59,24 @@ public sealed partial class Operation /// /// 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 NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Operation( - object? metadata, bool? done, - string? name, + object? metadata, global::Google.Gemini.Status? error, - object? response) + object? response, + string? name) { - this.Metadata = metadata; this.Done = done; - this.Name = name; + this.Metadata = metadata; this.Error = error; this.Response = response; + this.Name = name; } /// 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 f9a648b2a..7d255466b 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 @@ -10,6 +10,12 @@ namespace Google.Gemini /// public sealed partial class Part { + /// + /// 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("functionCall")] + public global::Google.Gemini.FunctionCall? FunctionCall { get; set; } + /// /// URI based data. /// @@ -17,16 +23,23 @@ public sealed partial class Part public global::Google.Gemini.FileData? FileData { 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`. + /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. /// - [global::System.Text.Json.Serialization.JsonPropertyName("toolCall")] - public global::Google.Gemini.ToolCall? ToolCall { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("inlineData")] + public global::Google.Gemini.Blob? InlineData { 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. + /// Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content. /// - [global::System.Text.Json.Serialization.JsonPropertyName("executableCode")] - public global::Google.Gemini.ExecutableCode? ExecutableCode { 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; } + + /// + /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("codeExecutionResult")] + public global::Google.Gemini.CodeExecutionResult? CodeExecutionResult { 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`. @@ -41,29 +54,22 @@ public sealed partial class Part public global::Google.Gemini.FunctionResponse? FunctionResponse { get; set; } /// - /// Optional. Indicates if the part is thought from the model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("thought")] - public bool? Thought { get; set; } - - /// - /// A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. + /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. /// - [global::System.Text.Json.Serialization.JsonPropertyName("functionCall")] - public global::Google.Gemini.FunctionCall? FunctionCall { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thoughtSignature")] + public byte[]? ThoughtSignature { get; set; } /// - /// Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content. + /// Optional. Indicates if the part is thought from the model. /// - [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("thought")] + public bool? Thought { get; set; } /// - /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. + /// 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("inlineData")] - public global::Google.Gemini.Blob? InlineData { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("partMetadata")] + public object? PartMetadata { get; set; } /// /// Inline text. @@ -72,22 +78,16 @@ public sealed partial class Part public string? Text { get; set; } /// - /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("codeExecutionResult")] - public global::Google.Gemini.CodeExecutionResult? CodeExecutionResult { get; set; } - - /// - /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. + /// 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("thoughtSignature")] - public byte[]? ThoughtSignature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("toolCall")] + public global::Google.Gemini.ToolCall? ToolCall { 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. + /// 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("partMetadata")] - public object? PartMetadata { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("executableCode")] + public global::Google.Gemini.ExecutableCode? ExecutableCode { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -98,14 +98,17 @@ public sealed partial class Part /// /// Initializes a new instance of the class. /// + /// + /// A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. + /// /// /// URI based data. /// - /// - /// 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`. + /// + /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. /// - /// - /// 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. + /// + /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. /// /// /// 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`. @@ -113,56 +116,53 @@ public sealed partial class Part /// /// 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. /// + /// + /// 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 `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values. - /// - /// - /// Raw media bytes. Text should not be sent as raw bytes, use the 'text' field. + /// + /// 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. /// /// /// Inline text. /// - /// - /// Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used. - /// - /// - /// Optional. An opaque signature for the thought so it can be reused in subsequent requests. + /// + /// 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`. /// - /// - /// 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. + /// + /// 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. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Part( + global::Google.Gemini.FunctionCall? functionCall, global::Google.Gemini.FileData? fileData, - global::Google.Gemini.ToolCall? toolCall, - global::Google.Gemini.ExecutableCode? executableCode, + global::Google.Gemini.Blob? inlineData, + global::Google.Gemini.CodeExecutionResult? codeExecutionResult, global::Google.Gemini.ToolResponse? toolResponse, global::Google.Gemini.FunctionResponse? functionResponse, + byte[]? thoughtSignature, bool? thought, - global::Google.Gemini.FunctionCall? functionCall, - global::Google.Gemini.Blob? inlineData, + object? partMetadata, string? text, - global::Google.Gemini.CodeExecutionResult? codeExecutionResult, - byte[]? thoughtSignature, - object? partMetadata) + global::Google.Gemini.ToolCall? toolCall, + global::Google.Gemini.ExecutableCode? executableCode) { - this.FileData = fileData; - this.ToolCall = toolCall; - this.ExecutableCode = executableCode; - this.ToolResponse = toolResponse; - this.FunctionResponse = functionResponse; - this.Thought = thought; this.FunctionCall = functionCall; + this.FileData = fileData; this.InlineData = inlineData; - this.Text = text; this.CodeExecutionResult = codeExecutionResult; + this.ToolResponse = toolResponse; + this.FunctionResponse = functionResponse; this.ThoughtSignature = thoughtSignature; + this.Thought = thought; this.PartMetadata = partMetadata; + this.Text = text; + this.ToolCall = toolCall; + this.ExecutableCode = executableCode; } /// 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 9a41c0152..1711e68d8 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,6 +8,12 @@ namespace Google.Gemini /// public sealed partial class Permission { + /// + /// 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; } + /// /// 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,12 +28,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; } - /// /// Required. The role granted by this permission. /// @@ -44,6 +44,9 @@ public sealed partial class Permission /// /// Initializes a new instance of the class. /// + /// + /// 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. + /// /// /// 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 @@ -51,9 +54,6 @@ public sealed partial class 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. - /// /// /// Required. The role granted by this permission. /// @@ -61,14 +61,14 @@ public sealed partial class Permission [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Permission( + string? emailAddress, string? name, global::Google.Gemini.PermissionGranteeType? granteeType, - string? emailAddress, global::Google.Gemini.PermissionRole? role) { + this.EmailAddress = emailAddress; this.Name = name; this.GranteeType = granteeType; - this.EmailAddress = emailAddress; this.Role = role; } 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 458cc7a70..f7e526d8a 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,6 +8,12 @@ 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. /// @@ -15,12 +21,6 @@ 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. /// - /// - /// 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. /// + /// + /// Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public PromptFeedback( - global::Google.Gemini.PromptFeedbackBlockReason? blockReason, - global::System.Collections.Generic.IList? safetyRatings) + global::System.Collections.Generic.IList? safetyRatings, + global::Google.Gemini.PromptFeedbackBlockReason? blockReason) { - this.BlockReason = blockReason; this.SafetyRatings = safetyRatings; + this.BlockReason = blockReason; } /// 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 975f0a1a3..ad8167917 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,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class RetrievedContext { - /// - /// Optional. Text of the chunk. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("text")] - public string? Text { get; set; } - /// /// Optional. User-provided metadata about the retrieved context. /// @@ -21,10 +15,16 @@ public sealed partial class RetrievedContext public global::System.Collections.Generic.IList? CustomMetadata { get; set; } /// - /// Optional. Title of the document. + /// Optional. URI reference of the semantic retrieval document. /// - [global::System.Text.Json.Serialization.JsonPropertyName("title")] - public string? Title { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("uri")] + public string? Uri { get; set; } + + /// + /// Optional. Text of the chunk. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("text")] + public string? Text { get; set; } /// /// Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123` @@ -33,22 +33,22 @@ public sealed partial class RetrievedContext public string? FileSearchStore { get; set; } /// - /// Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id} + /// Optional. Page number of the retrieved context, if applicable. /// - [global::System.Text.Json.Serialization.JsonPropertyName("mediaId")] - public string? MediaId { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("pageNumber")] + public int? PageNumber { get; set; } /// - /// Optional. URI reference of the semantic retrieval document. + /// 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("uri")] - public string? Uri { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mediaId")] + public string? MediaId { 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; } /// /// Additional properties that are not explicitly defined in the schema @@ -59,46 +59,46 @@ public sealed partial class RetrievedContext /// /// Initializes a new instance of the class. /// - /// - /// Optional. Text of the chunk. - /// /// /// Optional. User-provided metadata about the retrieved context. /// - /// - /// Optional. Title of the document. + /// + /// Optional. URI reference of the semantic retrieval document. + /// + /// + /// Optional. Text of the chunk. /// /// /// Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123` /// + /// + /// 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. Page number of the retrieved context, if applicable. + /// + /// Optional. Title of the document. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public RetrievedContext( - string? text, global::System.Collections.Generic.IList? customMetadata, - string? title, + string? uri, + string? text, string? fileSearchStore, + int? pageNumber, string? mediaId, - string? uri, - int? pageNumber) + string? title) { - this.Text = text; this.CustomMetadata = customMetadata; - this.Title = title; - this.FileSearchStore = fileSearchStore; - this.MediaId = mediaId; this.Uri = uri; + this.Text = text; + this.FileSearchStore = fileSearchStore; this.PageNumber = pageNumber; + this.MediaId = mediaId; + this.Title = title; } /// 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 dcbe94b62..9317125e8 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 { - /// - /// The ID of the review snippet. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("reviewId")] - public string? ReviewId { get; set; } - /// /// Title of the review. /// [global::System.Text.Json.Serialization.JsonPropertyName("title")] public string? Title { 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. /// @@ -35,12 +35,12 @@ public sealed partial class ReviewSnippet /// /// Initializes a new instance of the class. /// - /// - /// The ID of the review snippet. - /// /// /// Title of the review. /// + /// + /// The ID of the review snippet. + /// /// /// A link that corresponds to the user review on Google Maps. /// @@ -48,12 +48,12 @@ public sealed partial class ReviewSnippet [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ReviewSnippet( - string? reviewId, string? title, + string? reviewId, string? googleMapsUri) { - this.ReviewId = reviewId; this.Title = title; + this.ReviewId = reviewId; this.GoogleMapsUri = googleMapsUri; } 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 4d10712f5..d173960d9 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 @@ -8,6 +8,13 @@ namespace Google.Gemini /// public sealed partial class SafetyRating { + /// + /// Required. The category for this rating. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("category")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter))] + public global::Google.Gemini.SafetyRatingCategory? Category { get; set; } + /// /// Required. The probability of harm for this content. /// @@ -21,13 +28,6 @@ public sealed partial class SafetyRating [global::System.Text.Json.Serialization.JsonPropertyName("blocked")] public bool? Blocked { get; set; } - /// - /// Required. The category for this rating. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("category")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetyRatingCategoryJsonConverter))] - public global::Google.Gemini.SafetyRatingCategory? Category { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -37,26 +37,26 @@ public sealed partial class SafetyRating /// /// Initializes a new instance of the class. /// + /// + /// Required. The category for this rating. + /// /// /// Required. The probability of harm for this content. /// /// /// Was this content blocked because of this rating? /// - /// - /// Required. The category for this rating. - /// #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, - global::Google.Gemini.SafetyRatingCategory? category) + bool? blocked) { + this.Category = category; this.Probability = probability; this.Blocked = blocked; - this.Category = category; } /// diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetySetting.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetySetting.g.cs index ba09cc052..77c5a29f5 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetySetting.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.SafetySetting.g.cs @@ -8,13 +8,6 @@ namespace Google.Gemini /// public sealed partial class SafetySetting { - /// - /// Required. The category for this setting. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("category")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter))] - public global::Google.Gemini.SafetySettingCategory? Category { get; set; } - /// /// Required. Controls the probability threshold at which harm is blocked. /// @@ -22,6 +15,13 @@ public sealed partial class SafetySetting [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetySettingThresholdJsonConverter))] public global::Google.Gemini.SafetySettingThreshold? Threshold { get; set; } + /// + /// Required. The category for this setting. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("category")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SafetySettingCategoryJsonConverter))] + public global::Google.Gemini.SafetySettingCategory? Category { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,21 +31,21 @@ public sealed partial class SafetySetting /// /// Initializes a new instance of the class. /// - /// - /// Required. The category for this setting. - /// /// /// Required. Controls the probability threshold at which harm is blocked. /// + /// + /// Required. The category for this setting. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SafetySetting( - global::Google.Gemini.SafetySettingCategory? category, - global::Google.Gemini.SafetySettingThreshold? threshold) + global::Google.Gemini.SafetySettingThreshold? threshold, + global::Google.Gemini.SafetySettingCategory? category) { - this.Category = category; this.Threshold = threshold; + this.Category = category; } /// 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 246067f71..b1df42266 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 @@ -9,65 +9,64 @@ namespace Google.Gemini public sealed partial class Schema { /// - /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. + /// Optional. Indicates if the value may be null. /// - [global::System.Text.Json.Serialization.JsonPropertyName("format")] - public string? Format { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("nullable")] + public bool? Nullable { get; set; } /// - /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. + /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING /// - [global::System.Text.Json.Serialization.JsonPropertyName("description")] - public string? Description { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("minLength")] + public string? MinLength { 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. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER /// - [global::System.Text.Json.Serialization.JsonPropertyName("default")] - public object? Default { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("minimum")] + public double? Minimum { get; set; } /// - /// Required. Data type. + /// Optional. Maximum value of the Type.INTEGER and Type.NUMBER /// - [global::System.Text.Json.Serialization.JsonPropertyName("type")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter))] - public global::Google.Gemini.SchemaType? Type { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maximum")] + public double? Maximum { get; set; } /// - /// Optional. Maximum number of the properties for Type.OBJECT. + /// Optional. Maximum length of the Type.STRING /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxProperties")] - public string? MaxProperties { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxLength")] + public string? MaxLength { get; set; } /// - /// Optional. Properties of Type.OBJECT. + /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. /// - [global::System.Text.Json.Serialization.JsonPropertyName("properties")] - public global::System.Collections.Generic.Dictionary? Properties { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("pattern")] + public string? Pattern { 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. Maximum 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("maximum")] - public double? Maximum { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { get; set; } /// - /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING + /// Optional. Maximum number of the elements for Type.ARRAY. /// - [global::System.Text.Json.Serialization.JsonPropertyName("minLength")] - public string? MinLength { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxItems")] + public string? MaxItems { get; set; } /// - /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. + /// 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"]} /// - [global::System.Text.Json.Serialization.JsonPropertyName("pattern")] - public string? Pattern { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("enum")] + public global::System.Collections.Generic.IList? Enum { get; set; } /// /// Optional. Required properties of Type.OBJECT. @@ -75,12 +74,6 @@ public sealed partial class Schema [global::System.Text.Json.Serialization.JsonPropertyName("required")] public global::System.Collections.Generic.IList? Required { 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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("propertyOrdering")] - public global::System.Collections.Generic.IList? PropertyOrdering { get; set; } - /// /// Optional. Example of the object. Will only populated when the object is the root. /// @@ -88,16 +81,22 @@ public sealed partial class Schema public object? Example { 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"]} + /// 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("enum")] - public global::System.Collections.Generic.IList? Enum { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("propertyOrdering")] + public global::System.Collections.Generic.IList? PropertyOrdering { get; set; } /// - /// Optional. Indicates if the value may be null. + /// Optional. Minimum number of the properties for Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("nullable")] - public bool? Nullable { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("minProperties")] + public string? MinProperties { get; set; } + + /// + /// Optional. Minimum number of the elements for Type.ARRAY. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("minItems")] + public string? MinItems { get; set; } /// /// Optional. The value should be validated against any (one or more) of the subschemas in the list. @@ -106,40 +105,41 @@ public sealed partial class Schema public global::System.Collections.Generic.IList? AnyOf { get; set; } /// - /// Optional. Maximum number of the elements for Type.ARRAY. + /// 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("maxItems")] - public string? MaxItems { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("default")] + public object? Default { get; set; } /// - /// Optional. Maximum length of the Type.STRING + /// Required. Data type. /// - [global::System.Text.Json.Serialization.JsonPropertyName("maxLength")] - public string? MaxLength { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("type")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.SchemaTypeJsonConverter))] + public global::Google.Gemini.SchemaType? Type { get; set; } /// - /// Optional. Minimum number of the elements for Type.ARRAY. + /// 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("minItems")] - public string? MinItems { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("items")] + public global::Google.Gemini.Schema? Items { get; set; } /// - /// Optional. Minimum number of the properties for Type.OBJECT. + /// Optional. Maximum number of the properties for Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("minProperties")] - public string? MinProperties { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("maxProperties")] + public string? MaxProperties { get; set; } /// - /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER + /// Optional. The title of the schema. /// - [global::System.Text.Json.Serialization.JsonPropertyName("minimum")] - public double? Minimum { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("title")] + public string? Title { 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. Properties of Type.OBJECT. /// - [global::System.Text.Json.Serialization.JsonPropertyName("items")] - public global::Google.Gemini.Schema? Items { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("properties")] + public global::System.Collections.Generic.Dictionary? Properties { 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. The format of the data. Any value is allowed, but most do not trigger any special functionality. - /// - /// - /// Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. - /// - /// - /// 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. - /// - /// - /// Required. Data type. - /// - /// - /// Optional. Maximum number of the properties for Type.OBJECT. + /// + /// Optional. Indicates if the value may be null. /// - /// - /// Optional. Properties of Type.OBJECT. + /// + /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING /// - /// - /// Optional. The title of the schema. + /// + /// Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER /// /// /// Optional. Maximum value of the Type.INTEGER and Type.NUMBER /// - /// - /// Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING + /// + /// Optional. Maximum length of the Type.STRING /// /// /// Optional. Pattern of the Type.STRING to restrict a string to a regular expression. /// - /// - /// Optional. Required properties of Type.OBJECT. + /// + /// Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality. /// - /// - /// 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. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown. /// - /// - /// Optional. Example of the object. Will only populated when the object is the root. + /// + /// Optional. Maximum number of the elements for Type.ARRAY. /// /// /// 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. Indicates if the value may be null. + /// + /// Optional. Required properties of Type.OBJECT. /// - /// - /// Optional. The value should be validated against any (one or more) of the subschemas in the list. + /// + /// Optional. Example of the object. Will only populated when the object is the root. /// - /// - /// Optional. Maximum 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 length of the Type.STRING + /// + /// Optional. Minimum number of the properties for Type.OBJECT. /// /// /// Optional. Minimum number of the elements for Type.ARRAY. /// - /// - /// Optional. Minimum number of the properties for Type.OBJECT. + /// + /// 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. 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. + /// + /// + /// 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. Maximum number of the properties for Type.OBJECT. + /// + /// + /// Optional. The title of the schema. + /// + /// + /// Optional. Properties of Type.OBJECT. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Schema( + bool? nullable, + string? minLength, + double? minimum, + double? maximum, + string? maxLength, + string? pattern, string? format, string? description, + string? maxItems, + global::System.Collections.Generic.IList? @enum, + global::System.Collections.Generic.IList? required, + object? example, + global::System.Collections.Generic.IList? propertyOrdering, + string? minProperties, + string? minItems, + global::System.Collections.Generic.IList? anyOf, object? @default, global::Google.Gemini.SchemaType? type, + global::Google.Gemini.Schema? items, string? maxProperties, - global::System.Collections.Generic.Dictionary? properties, string? title, - double? maximum, - string? minLength, - string? pattern, - global::System.Collections.Generic.IList? required, - global::System.Collections.Generic.IList? propertyOrdering, - object? example, - global::System.Collections.Generic.IList? @enum, - bool? nullable, - global::System.Collections.Generic.IList? anyOf, - string? maxItems, - string? maxLength, - string? minItems, - string? minProperties, - double? minimum, - global::Google.Gemini.Schema? items) + global::System.Collections.Generic.Dictionary? properties) { - this.Format = format; - this.Description = description; - this.Default = @default; - this.Type = type; - this.MaxProperties = maxProperties; - this.Properties = properties; - this.Title = title; - this.Maximum = maximum; + this.Nullable = nullable; this.MinLength = minLength; + this.Minimum = minimum; + this.Maximum = maximum; + this.MaxLength = maxLength; this.Pattern = pattern; + this.Format = format; + this.Description = description; + this.MaxItems = maxItems; + this.Enum = @enum; this.Required = required; - this.PropertyOrdering = propertyOrdering; this.Example = example; - this.Enum = @enum; - this.Nullable = nullable; - this.AnyOf = anyOf; - this.MaxItems = maxItems; - this.MaxLength = maxLength; - this.MinItems = minItems; + this.PropertyOrdering = propertyOrdering; this.MinProperties = minProperties; - this.Minimum = minimum; + this.MinItems = minItems; + this.AnyOf = anyOf; + this.Default = @default; + this.Type = type; this.Items = items; + this.MaxProperties = maxProperties; + this.Title = title; + this.Properties = properties; } /// 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 3c8418594..d7b2aff2c 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 @@ -9,10 +9,10 @@ namespace Google.Gemini public sealed partial class SpeechConfig { /// - /// The configuration for the multi-speaker setup. + /// 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`. /// - [global::System.Text.Json.Serialization.JsonPropertyName("multiSpeakerVoiceConfig")] - public global::Google.Gemini.MultiSpeakerVoiceConfig? MultiSpeakerVoiceConfig { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("languageCode")] + public string? LanguageCode { get; set; } /// /// The configuration for the voice to use. @@ -21,10 +21,10 @@ public sealed partial class SpeechConfig public global::Google.Gemini.VoiceConfig? VoiceConfig { get; set; } /// - /// 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 multi-speaker setup. /// - [global::System.Text.Json.Serialization.JsonPropertyName("languageCode")] - public string? LanguageCode { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("multiSpeakerVoiceConfig")] + public global::Google.Gemini.MultiSpeakerVoiceConfig? MultiSpeakerVoiceConfig { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -35,26 +35,26 @@ public sealed partial class SpeechConfig /// /// Initializes a new instance of the class. /// - /// - /// The configuration for the multi-speaker setup. + /// + /// 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. /// - /// - /// 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 multi-speaker setup. /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public SpeechConfig( - global::Google.Gemini.MultiSpeakerVoiceConfig? multiSpeakerVoiceConfig, + string? languageCode, global::Google.Gemini.VoiceConfig? voiceConfig, - string? languageCode) + global::Google.Gemini.MultiSpeakerVoiceConfig? multiSpeakerVoiceConfig) { - this.MultiSpeakerVoiceConfig = multiSpeakerVoiceConfig; - this.VoiceConfig = voiceConfig; this.LanguageCode = languageCode; + this.VoiceConfig = voiceConfig; + this.MultiSpeakerVoiceConfig = multiSpeakerVoiceConfig; } /// 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 08b874895..7f09920ee 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 @@ -14,18 +14,18 @@ public sealed partial class Status [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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("message")] - public string? Message { get; set; } - /// /// A list of messages that carry the error details. There is a common set of message types for APIs to use. /// [global::System.Text.Json.Serialization.JsonPropertyName("details")] public global::System.Collections.Generic.IList? Details { 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. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("message")] + public string? Message { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -38,23 +38,23 @@ public sealed partial class Status /// /// 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. /// + /// + /// 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. + /// #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, + string? message) { this.Code = code; - this.Message = message; this.Details = details; + this.Message = message; } /// 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 b733658a7..4ae8ae8a1 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 @@ -14,12 +14,6 @@ public sealed partial class StreamableHttpTransport [global::System.Text.Json.Serialization.JsonPropertyName("timeout")] public string? Timeout { get; set; } - /// - /// Optional: Fields for authentication headers, timeouts, etc., if needed. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("headers")] - public global::System.Collections.Generic.Dictionary? Headers { get; set; } - /// /// Whether to close the client session when the transport closes. /// @@ -32,6 +26,12 @@ public sealed partial class StreamableHttpTransport [global::System.Text.Json.Serialization.JsonPropertyName("url")] public string? Url { get; set; } + /// + /// Optional: Fields for authentication headers, timeouts, etc., if needed. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("headers")] + public global::System.Collections.Generic.Dictionary? Headers { get; set; } + /// /// Timeout for SSE read operations. /// @@ -50,15 +50,15 @@ public sealed partial class StreamableHttpTransport /// /// HTTP timeout for regular operations. /// - /// - /// 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" /// + /// + /// Optional: Fields for authentication headers, timeouts, etc., if needed. + /// /// /// Timeout for SSE read operations. /// @@ -67,15 +67,15 @@ public sealed partial class StreamableHttpTransport #endif public StreamableHttpTransport( string? timeout, - global::System.Collections.Generic.Dictionary? headers, bool? terminateOnClose, string? url, + global::System.Collections.Generic.Dictionary? headers, string? sseReadTimeout) { this.Timeout = timeout; - this.Headers = headers; this.TerminateOnClose = terminateOnClose; this.Url = url; + this.Headers = headers; this.SseReadTimeout = sseReadTimeout; } 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 0f2df624d..5e903db23 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,6 +8,12 @@ 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. /// @@ -21,12 +27,6 @@ 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. If not specified, the default is HIGH. 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, - bool? includeThoughts) + global::Google.Gemini.ThinkingConfigThinkingLevel? thinkingLevel) { + 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 5163010cb..104d31e6c 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 @@ -8,12 +8,6 @@ namespace Google.Gemini /// public sealed partial class Tool { - /// - /// Optional. MCP Servers to connect to. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mcpServers")] - public global::System.Collections.Generic.IList? McpServers { 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. /// @@ -21,40 +15,46 @@ public sealed partial class Tool public global::Google.Gemini.CodeExecution? CodeExecution { get; set; } /// - /// Computer Use tool type. + /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. /// - [global::System.Text.Json.Serialization.JsonPropertyName("computerUse")] - public global::Google.Gemini.ComputerUse? ComputerUse { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("googleSearch")] + public global::Google.Gemini.GoogleSearch? GoogleSearch { get; set; } /// - /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("urlContext")] - public global::Google.Gemini.UrlContext? UrlContext { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("fileSearch")] + public global::Google.Gemini.FileSearch? FileSearch { 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. + /// Optional. MCP Servers to connect to. /// - [global::System.Text.Json.Serialization.JsonPropertyName("functionDeclarations")] - public global::System.Collections.Generic.IList? FunctionDeclarations { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("mcpServers")] + public global::System.Collections.Generic.IList? McpServers { get; set; } /// - /// Tool to retrieve public web data for grounding, powered by Google. + /// Computer Use tool type. /// - [global::System.Text.Json.Serialization.JsonPropertyName("googleSearchRetrieval")] - public global::Google.Gemini.GoogleSearchRetrieval? GoogleSearchRetrieval { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("computerUse")] + public global::Google.Gemini.ComputerUse? ComputerUse { get; set; } /// - /// 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; } /// - /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. + /// Tool to support URL context retrieval. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fileSearch")] - public global::Google.Gemini.FileSearch? FileSearch { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("urlContext")] + public global::Google.Gemini.UrlContext? UrlContext { get; set; } + + /// + /// Tool to retrieve public web data for grounding, powered by Google. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("googleSearchRetrieval")] + public global::Google.Gemini.GoogleSearchRetrieval? GoogleSearchRetrieval { get; set; } /// /// The GoogleMaps Tool that provides geospatial context for the user's query. @@ -71,30 +71,30 @@ public sealed partial class Tool /// /// Initializes a new instance of the class. /// - /// - /// 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. /// + /// + /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. + /// + /// + /// The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API. + /// + /// + /// Optional. MCP Servers to connect to. + /// /// /// Computer Use tool type. /// - /// - /// Tool to support URL context retrieval. - /// /// /// 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 support URL context retrieval. + /// /// /// Tool to retrieve public web data for grounding, powered by Google. /// - /// - /// GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. - /// - /// - /// 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. /// @@ -102,24 +102,24 @@ public sealed partial class Tool [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public Tool( - global::System.Collections.Generic.IList? mcpServers, global::Google.Gemini.CodeExecution? codeExecution, + global::Google.Gemini.GoogleSearch? googleSearch, + global::Google.Gemini.FileSearch? fileSearch, + global::System.Collections.Generic.IList? mcpServers, global::Google.Gemini.ComputerUse? computerUse, - global::Google.Gemini.UrlContext? urlContext, global::System.Collections.Generic.IList? functionDeclarations, + global::Google.Gemini.UrlContext? urlContext, global::Google.Gemini.GoogleSearchRetrieval? googleSearchRetrieval, - global::Google.Gemini.GoogleSearch? googleSearch, - global::Google.Gemini.FileSearch? fileSearch, global::Google.Gemini.GoogleMaps? googleMaps) { - this.McpServers = mcpServers; this.CodeExecution = codeExecution; + this.GoogleSearch = googleSearch; + this.FileSearch = fileSearch; + this.McpServers = mcpServers; this.ComputerUse = computerUse; - this.UrlContext = urlContext; this.FunctionDeclarations = functionDeclarations; + this.UrlContext = urlContext; this.GoogleSearchRetrieval = googleSearchRetrieval; - this.GoogleSearch = googleSearch; - this.FileSearch = fileSearch; this.GoogleMaps = googleMaps; } 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 4fcef779c..eb31d18b5 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,12 +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`. /// @@ -27,6 +21,12 @@ 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; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -36,26 +36,26 @@ 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`. /// /// /// Required. The type of tool that was called. /// + /// + /// Optional. The tool call arguments. Example: {"arg1" : "value1", "arg2" : "value2" , ...} + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolCall( - object? args, string? id, - global::Google.Gemini.ToolCallToolType? toolType) + global::Google.Gemini.ToolCallToolType? toolType, + object? args) { - this.Args = args; this.Id = id; this.ToolType = toolType; + this.Args = args; } /// 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 6357a634c..40f9f938e 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 @@ -8,18 +8,18 @@ namespace Google.Gemini /// public sealed partial class ToolConfig { - /// - /// 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; } + /// /// Configuration for specifying function calling behavior. /// @@ -35,12 +35,12 @@ public sealed partial class ToolConfig /// /// Initializes a new instance of the class. /// - /// - /// 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. + /// /// /// Configuration for specifying function calling behavior. /// @@ -48,12 +48,12 @@ public sealed partial class ToolConfig [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolConfig( - global::Google.Gemini.RetrievalConfig? retrievalConfig, bool? includeServerSideToolInvocations, + global::Google.Gemini.RetrievalConfig? retrievalConfig, global::Google.Gemini.FunctionCallingConfig? functionCallingConfig) { - this.RetrievalConfig = retrievalConfig; this.IncludeServerSideToolInvocations = includeServerSideToolInvocations; + this.RetrievalConfig = retrievalConfig; this.FunctionCallingConfig = functionCallingConfig; } 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 21b7c61e8..8a47cf0e5 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 @@ -14,6 +14,12 @@ public sealed partial class ToolResponse [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`. /// @@ -21,12 +27,6 @@ public sealed partial class ToolResponse [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Google.Gemini.JsonConverters.ToolResponseToolTypeJsonConverter))] public global::Google.Gemini.ToolResponseToolType? ToolType { get; set; } - /// - /// Optional. The tool response. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("response")] - public object? Response { get; set; } - /// /// Additional properties that are not explicitly defined in the schema /// @@ -39,23 +39,23 @@ public sealed partial class ToolResponse /// /// Optional. The identifier of the tool call this response is for. /// - /// - /// Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`. - /// /// /// Optional. The tool response. /// + /// + /// Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ToolResponse( string? id, - global::Google.Gemini.ToolResponseToolType? toolType, - object? response) + object? response, + global::Google.Gemini.ToolResponseToolType? toolType) { this.Id = id; - this.ToolType = toolType; 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 4c0f5eeab..e54bb1774 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 @@ -9,23 +9,11 @@ namespace Google.Gemini public sealed partial class TunedModel { /// - /// Output only. The timestamp when this model was created.
+ /// 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`
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("createTime")] - public string? CreateTime { 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. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("topK")] - public int? TopK { get; set; } - - /// - /// Tuned model as a source for training a new model. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("tunedModelSource")] - public global::Google.Gemini.TunedModelSource? TunedModelSource { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("name")] + public string? Name { get; set; } /// /// Output only. The state of the tuned model.
@@ -36,10 +24,10 @@ public sealed partial class TunedModel public global::Google.Gemini.TunedModelState? State { get; set; } /// - /// Tuning tasks that create tuned models. + /// Tuned model as a source for training a new model. /// - [global::System.Text.Json.Serialization.JsonPropertyName("tuningTask")] - public global::Google.Gemini.TuningTask? TuningTask { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tunedModelSource")] + public global::Google.Gemini.TunedModelSource? TunedModelSource { get; set; } /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` @@ -48,17 +36,16 @@ public sealed partial class TunedModel public string? BaseModel { get; set; } /// - /// Output only. The timestamp when this model was updated.
- /// Included only in responses + /// Optional. A short description of this model. ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updateTime")] - public string? UpdateTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("description")] + public string? Description { 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. + /// 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. /// - [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] - public float? Temperature { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("topK")] + public int? TopK { get; set; } /// /// Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. @@ -67,17 +54,17 @@ public sealed partial class TunedModel public string? DisplayName { get; set; } /// - /// 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`
+ /// Output only. The timestamp when this model 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. A short description of this model. + /// Tuning tasks that create tuned models. /// - [global::System.Text.Json.Serialization.JsonPropertyName("description")] - public string? Description { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("tuningTask")] + public global::Google.Gemini.TuningTask? TuningTask { get; set; } /// /// Optional. List of project numbers that have read access to the tuned model. @@ -85,6 +72,19 @@ public sealed partial class TunedModel [global::System.Text.Json.Serialization.JsonPropertyName("readerProjectNumbers")] public global::System.Collections.Generic.IList? ReaderProjectNumbers { 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. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("temperature")] + public float? Temperature { 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; } + /// /// 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. /// @@ -100,46 +100,46 @@ public sealed partial class TunedModel /// /// Initializes a new instance of the class. /// - /// - /// Output only. The timestamp when this model was created.
+ /// + /// 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`
/// Included only in responses /// - /// - /// 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. - /// - /// - /// Tuned model as a source for training a new model. - /// /// /// Output only. The state of the tuned model.
/// Included only in responses /// - /// - /// Tuning tasks that create tuned models. + /// + /// Tuned model as a source for training a new model. /// /// /// Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001` /// - /// - /// Output only. The timestamp when this model was updated.
- /// Included only in responses + /// + /// 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. 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. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces. /// - /// - /// 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`
+ /// + /// Output only. The timestamp when this model was created.
/// Included only in responses /// - /// - /// Optional. A short description of this model. + /// + /// Tuning tasks that create tuned models. /// /// /// Optional. List of project numbers that have read access to the tuned 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. + /// + /// + /// 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. /// @@ -147,32 +147,32 @@ public sealed partial class TunedModel [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TunedModel( - string? createTime, - int? topK, - global::Google.Gemini.TunedModelSource? tunedModelSource, + string? name, global::Google.Gemini.TunedModelState? state, - global::Google.Gemini.TuningTask? tuningTask, + global::Google.Gemini.TunedModelSource? tunedModelSource, string? baseModel, - string? updateTime, - float? temperature, - string? displayName, - string? name, string? description, + int? topK, + string? displayName, + string? createTime, + global::Google.Gemini.TuningTask? tuningTask, global::System.Collections.Generic.IList? readerProjectNumbers, + float? temperature, + string? updateTime, float? topP) { - this.CreateTime = createTime; - this.TopK = topK; - this.TunedModelSource = tunedModelSource; + this.Name = name; this.State = state; - this.TuningTask = tuningTask; + this.TunedModelSource = tunedModelSource; this.BaseModel = baseModel; - this.UpdateTime = updateTime; - this.Temperature = temperature; - this.DisplayName = displayName; - this.Name = name; this.Description = description; + this.TopK = topK; + this.DisplayName = displayName; + this.CreateTime = createTime; + this.TuningTask = tuningTask; this.ReaderProjectNumbers = readerProjectNumbers; + this.Temperature = temperature; + this.UpdateTime = updateTime; this.TopP = topP; } diff --git a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningExample.g.cs b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningExample.g.cs index 4b05ee7f7..d503fa2c6 100644 --- a/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningExample.g.cs +++ b/src/libs/Google.Gemini/Generated/Google.Gemini.Models.TuningExample.g.cs @@ -8,18 +8,18 @@ namespace Google.Gemini ///
public sealed partial class TuningExample { - /// - /// Optional. Text model input. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("textInput")] - public string? TextInput { get; set; } - /// /// Required. The expected model output. /// [global::System.Text.Json.Serialization.JsonPropertyName("output")] public string? Output { get; set; } + /// + /// Optional. Text model input. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("textInput")] + public string? TextInput { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -29,21 +29,21 @@ public sealed partial class TuningExample /// /// Initializes a new instance of the class. /// - /// - /// Optional. Text model input. - /// /// /// Required. The expected model output. /// + /// + /// Optional. Text model input. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TuningExample( - string? textInput, - string? output) + string? output, + string? textInput) { - this.TextInput = textInput; this.Output = output; + this.TextInput = textInput; } /// 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 a27a7d7e3..0b711d433 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 tuning step.
+ /// Output only. The timestamp when this metric was computed.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("step")] - public int? Step { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("computeTime")] + public string? ComputeTime { get; set; } /// - /// Output only. The timestamp when this metric was computed.
+ /// Output only. The epoch this step was part of.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("computeTime")] - public string? ComputeTime { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("epoch")] + public int? Epoch { 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 epoch this step was part of.
+ /// Output only. The mean loss of the training examples for this step.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("epoch")] - public int? Epoch { 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 tuning step.
- /// Included only in responses - /// /// /// Output only. The timestamp when this metric was computed.
/// Included only in responses /// - /// - /// Output only. The mean loss of the training examples for this step.
- /// Included only in responses - /// /// /// Output only. The epoch this step was part of.
/// Included only in responses /// + /// + /// Output only. The tuning step.
+ /// 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? step, string? computeTime, - float? meanLoss, - int? epoch) + int? epoch, + int? step, + float? meanLoss) { - this.Step = step; this.ComputeTime = computeTime; - this.MeanLoss = meanLoss; this.Epoch = epoch; + this.Step = step; + this.MeanLoss = meanLoss; } /// 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 a50b0cb20..07e0e05d4 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 @@ -8,18 +8,6 @@ namespace Google.Gemini /// public sealed partial class TuningTask { - /// - /// Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance - /// - [global::System.Text.Json.Serialization.JsonPropertyName("hyperparameters")] - 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. The timestamp when tuning this model started.
/// Included only in responses @@ -34,6 +22,18 @@ public sealed partial class TuningTask [global::System.Text.Json.Serialization.JsonPropertyName("completeTime")] public string? CompleteTime { get; set; } + /// + /// Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance + /// + [global::System.Text.Json.Serialization.JsonPropertyName("hyperparameters")] + 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.
/// Included only in responses @@ -50,12 +50,6 @@ public sealed partial class TuningTask /// /// Initializes a new instance of the class. /// - /// - /// Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance - /// - /// - /// Dataset for training or validation. - /// /// /// Output only. The timestamp when tuning this model started.
/// Included only in responses @@ -64,6 +58,12 @@ public sealed partial class TuningTask /// Output only. The timestamp when tuning this model completed.
/// Included only in responses /// + /// + /// 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.
/// Included only in responses @@ -72,16 +72,16 @@ public sealed partial class TuningTask [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public TuningTask( - global::Google.Gemini.Hyperparameters? hyperparameters, - global::Google.Gemini.Dataset? trainingData, string? startTime, string? completeTime, + global::Google.Gemini.Hyperparameters? hyperparameters, + global::Google.Gemini.Dataset? trainingData, global::System.Collections.Generic.IList? snapshots) { - this.Hyperparameters = hyperparameters; - this.TrainingData = trainingData; this.StartTime = startTime; this.CompleteTime = completeTime; + this.Hyperparameters = hyperparameters; + this.TrainingData = trainingData; this.Snapshots = snapshots; } 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 2768899cd..7d2d27cbb 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; } - /// - /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. - /// - [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] - public string? MimeType { 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. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("mimeType")] + public string? MimeType { 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 /// @@ -44,12 +44,12 @@ public sealed partial class UploadToFileSearchStoreRequest /// /// Optional. Display name of the created document. /// - /// - /// Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content. - /// /// /// 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. + /// /// /// Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto /// @@ -58,13 +58,13 @@ public sealed partial class UploadToFileSearchStoreRequest #endif public UploadToFileSearchStoreRequest( string? displayName, - string? mimeType, global::System.Collections.Generic.IList? customMetadata, + string? mimeType, global::Google.Gemini.ChunkingConfig? chunkingConfig) { this.DisplayName = displayName; - this.MimeType = mimeType; this.CustomMetadata = customMetadata; + this.MimeType = mimeType; this.ChunkingConfig = chunkingConfig; } 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 18503b730..1464a4868 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,13 +8,6 @@ namespace Google.Gemini ///
public sealed partial class UsageMetadata { - /// - /// Output only. List of modalities that were processed in the request input.
- /// Included only in responses - ///
- [global::System.Text.Json.Serialization.JsonPropertyName("promptTokensDetails")] - public global::System.Collections.Generic.IList? PromptTokensDetails { get; set; } - /// /// Output only. List of modalities that were processed for tool-use request inputs.
/// Included only in responses @@ -23,17 +16,10 @@ public sealed partial class UsageMetadata public global::System.Collections.Generic.IList? ToolUsePromptTokensDetails { 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; } - - /// - /// Total number of tokens across all the generated response candidates. + /// Total token count for the generation request (prompt + response candidates). /// - [global::System.Text.Json.Serialization.JsonPropertyName("candidatesTokenCount")] - public int? CandidatesTokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("totalTokenCount")] + public int? TotalTokenCount { get; set; } /// /// Number of tokens in the cached part of the prompt (the cached content) @@ -42,17 +28,17 @@ public sealed partial class UsageMetadata public int? CachedContentTokenCount { get; set; } /// - /// Total token count for the generation request (prompt + response candidates). + /// 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("totalTokenCount")] - public int? TotalTokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] + public int? PromptTokenCount { get; set; } /// - /// Output only. List of modalities that were returned in the response.
+ /// Output only. Number of tokens of thoughts for thinking models.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("candidatesTokensDetails")] - public global::System.Collections.Generic.IList? CandidatesTokensDetails { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("thoughtsTokenCount")] + public int? ThoughtsTokenCount { get; set; } /// /// Output only. Number of tokens present in tool-use prompt(s).
@@ -62,17 +48,31 @@ public sealed partial class UsageMetadata public int? ToolUsePromptTokenCount { 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. + /// Output only. List of modalities of the cached content in the request input.
+ /// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("promptTokenCount")] - public int? PromptTokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("cacheTokensDetails")] + public global::System.Collections.Generic.IList? CacheTokensDetails { get; set; } /// - /// Output only. Number of tokens of thoughts for thinking models.
+ /// Output only. List of modalities that were processed in the request input.
/// Included only in responses ///
- [global::System.Text.Json.Serialization.JsonPropertyName("thoughtsTokenCount")] - public int? ThoughtsTokenCount { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("promptTokensDetails")] + public global::System.Collections.Generic.IList? PromptTokensDetails { 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 returned in the response.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("candidatesTokensDetails")] + public global::System.Collections.Generic.IList? CandidatesTokensDetails { get; set; } /// /// Output only. Number of tokens in the response. Used by Gemini 3.1+ Live API models instead of candidatesTokenCount.
@@ -97,40 +97,40 @@ public sealed partial class UsageMetadata /// /// Initializes a new instance of the class. /// - /// - /// Output only. List of modalities that were processed in the request input.
- /// Included only in responses - /// /// /// Output only. List of modalities that were processed for tool-use request inputs.
/// Included only in responses /// - /// - /// Output only. List of modalities of the cached content in the request input.
- /// Included only in responses - /// - /// - /// Total number of tokens across all the generated response candidates. + /// + /// Total token count for the generation request (prompt + response candidates). /// /// /// Number of tokens in the cached part of the prompt (the cached content) /// - /// - /// Total token count for the generation request (prompt + response candidates). + /// + /// 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. List of modalities that were returned in the response.
+ /// + /// Output only. Number of tokens of thoughts for thinking models.
/// Included only in responses /// /// /// Output only. Number of tokens present in tool-use prompt(s).
/// 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. + /// + /// Output only. List of modalities of the cached content in the request input.
+ /// Included only in responses /// - /// - /// Output only. Number of tokens of thoughts for thinking models.
+ /// + /// Output only. List of modalities that were processed in the request input.
+ /// Included only in responses + /// + /// + /// Total number of tokens across all the generated response candidates. + /// + /// + /// Output only. List of modalities that were returned in the response.
/// Included only in responses /// /// @@ -145,29 +145,29 @@ public sealed partial class UsageMetadata [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public UsageMetadata( - global::System.Collections.Generic.IList? promptTokensDetails, global::System.Collections.Generic.IList? toolUsePromptTokensDetails, - global::System.Collections.Generic.IList? cacheTokensDetails, - int? candidatesTokenCount, - int? cachedContentTokenCount, int? totalTokenCount, - global::System.Collections.Generic.IList? candidatesTokensDetails, - int? toolUsePromptTokenCount, + int? cachedContentTokenCount, int? promptTokenCount, int? thoughtsTokenCount, + int? toolUsePromptTokenCount, + global::System.Collections.Generic.IList? cacheTokensDetails, + global::System.Collections.Generic.IList? promptTokensDetails, + int? candidatesTokenCount, + global::System.Collections.Generic.IList? candidatesTokensDetails, int? responseTokenCount, global::System.Collections.Generic.IList? responseTokensDetails) { - this.PromptTokensDetails = promptTokensDetails; this.ToolUsePromptTokensDetails = toolUsePromptTokensDetails; - this.CacheTokensDetails = cacheTokensDetails; - this.CandidatesTokenCount = candidatesTokenCount; - this.CachedContentTokenCount = cachedContentTokenCount; this.TotalTokenCount = totalTokenCount; - this.CandidatesTokensDetails = candidatesTokensDetails; - this.ToolUsePromptTokenCount = toolUsePromptTokenCount; + this.CachedContentTokenCount = cachedContentTokenCount; this.PromptTokenCount = promptTokenCount; this.ThoughtsTokenCount = thoughtsTokenCount; + this.ToolUsePromptTokenCount = toolUsePromptTokenCount; + this.CacheTokensDetails = cacheTokensDetails; + this.PromptTokensDetails = promptTokensDetails; + this.CandidatesTokenCount = candidatesTokenCount; + this.CandidatesTokensDetails = candidatesTokensDetails; 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 3719af7e4..1ade518a8 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 @@ -17,18 +17,18 @@ public sealed partial class VideoMetadata public string? StartOffset { 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 end offset of the video. /// - [global::System.Text.Json.Serialization.JsonPropertyName("fps")] + [global::System.Text.Json.Serialization.JsonPropertyName("endOffset")] [global::System.Obsolete("This property marked as deprecated.")] - public double? Fps { get; set; } + public string? EndOffset { get; set; } /// - /// Optional. The end 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("endOffset")] + [global::System.Text.Json.Serialization.JsonPropertyName("fps")] [global::System.Obsolete("This property marked as deprecated.")] - public string? EndOffset { get; set; } + public double? Fps { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -42,23 +42,23 @@ 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]. - /// /// /// Optional. The end 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]. + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public VideoMetadata( string? startOffset, - double? fps, - string? endOffset) + string? endOffset, + double? fps) { this.StartOffset = startOffset; - this.Fps = fps; this.EndOffset = endOffset; + this.Fps = fps; } /// 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 df96fff2d..6775dc957 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 f39d1e7c7..d498734aa 100644 --- a/src/libs/Google.Gemini/openapi.json +++ b/src/libs/Google.Gemini/openapi.json @@ -11,27 +11,15 @@ } ], "paths": { - "/dynamic/{dynamicId}:generateContent": { + "/files": { "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", - "parameters": [ - { - "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": "^dynamic/[^/]+$" - } - } - ], + "description": "Creates a `File`.", + "operationId": "media.upload", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "$ref": "#/components/schemas/CreateFileRequest" } } } @@ -42,51 +30,42 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/CreateFileResponse" } } } } } - } - }, - "/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", + }, + "get": { + "description": "Lists the metadata for `File`s owned by the requesting project.", + "operationId": "files.list", "parameters": [ { - "name": "dynamicId", - "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 `File`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 100.", "schema": { - "type": "string", - "pattern": "^dynamic/[^/]+$" + "type": "integer", + "format": "int32" } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" - } + }, + { + "name": "pageToken", + "in": "query", + "description": "Optional. A page token from a previous `ListFiles` call.", + "schema": { + "type": "string" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" - } - }, - "text/event-stream": { - "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/ListFilesResponse" } } } @@ -94,28 +73,19 @@ } } }, - "/cachedContents/{cachedContentsId}": { - "patch": { - "description": "Updates CachedContent resource (only expiration is updatable).", - "operationId": "cachedContents.patch", + "/fileSearchStores/{fileSearchStoresId}:uploadToFileSearchStore": { + "post": { + "description": "Uploads data to a FileSearchStore, preprocesses and chunks before storing it in a FileSearchStore Document.", + "operationId": "media.uploadToFileSearchStore", "parameters": [ { - "name": "cachedContentsId", + "name": "fileSearchStoresId", "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.", + "description": "Required. Immutable. The name of the `FileSearchStore` to upload the file into. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "format": "google-fieldmask" + "pattern": "^fileSearchStores/[^/]+$" } } ], @@ -123,7 +93,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/UploadToFileSearchStoreRequest" } } } @@ -134,63 +104,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" - } - } - } - } - } - }, - "get": { - "description": "Reads CachedContent resource.", - "operationId": "cachedContents.get", - "parameters": [ - { - "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" - } - } - } - } - } - }, - "delete": { - "description": "Deletes CachedContent resource.", - "operationId": "cachedContents.delete", - "parameters": [ - { - "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/Empty" + "$ref": "#/components/schemas/CustomLongRunningOperation" } } } @@ -198,15 +112,15 @@ } } }, - "/cachedContents": { + "/corpora": { "get": { - "description": "Lists CachedContents.", - "operationId": "cachedContents.list", + "description": "Lists all `Corpora` owned by the user.", + "operationId": "corpora.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 `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" @@ -215,7 +129,7 @@ { "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 `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" } @@ -227,7 +141,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListCachedContentsResponse" + "$ref": "#/components/schemas/ListCorporaResponse" } } } @@ -235,13 +149,13 @@ } }, "post": { - "description": "Creates CachedContent resource.", - "operationId": "cachedContents.create", + "description": "Creates an empty `Corpus`.", + "operationId": "corpora.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/Corpus" } } } @@ -252,7 +166,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CachedContent" + "$ref": "#/components/schemas/Corpus" } } } @@ -260,19 +174,19 @@ } } }, - "/files/{filesId}": { + "/corpora/{corporaId}": { "get": { - "description": "Gets the metadata for the given `File`.", - "operationId": "files.get", + "description": "Gets information about a specific `Corpus`.", + "operationId": "corpora.get", "parameters": [ { - "name": "filesId", + "name": "corporaId", "in": "path", "required": true, - "description": "Required. The name of the `File` to get. Example: `files/abc-123`", + "description": "Required. The name of the `Corpus`. Example: `corpora/my-corpus-123`", "schema": { "type": "string", - "pattern": "^files/[^/]+$" + "pattern": "^corpora/[^/]+$" } } ], @@ -282,7 +196,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/File" + "$ref": "#/components/schemas/Corpus" } } } @@ -290,17 +204,25 @@ } }, "delete": { - "description": "Deletes the `File`.", - "operationId": "files.delete", + "description": "Deletes a `Corpus`.", + "operationId": "corpora.delete", "parameters": [ { - "name": "filesId", + "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 `File` to delete. Example: `files/abc-123`", + "description": "Required. The resource name of the `Corpus`. Example: `corpora/my-corpus-123`", "schema": { "type": "string", - "pattern": "^files/[^/]+$" + "pattern": "^corpora/[^/]+$" } } ], @@ -318,26 +240,27 @@ } } }, - "/files": { + "/corpora/{corporaId}/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": "corpora.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": "corporaId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", "schema": { - "type": "string" + "type": "string", + "pattern": "^corpora/[^/]+/operations/[^/]+$" } } ], @@ -347,32 +270,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListFilesResponse" - } - } - } - } - } - }, - "post": { - "description": "Creates a `File`.", - "operationId": "media.upload", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateFileRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateFileResponse" + "$ref": "#/components/schemas/Operation" } } } @@ -380,46 +278,72 @@ } } }, - "/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" - } + "/corpora/{corporaId}/permissions/{permissionsId}": { + "delete": { + "description": "Deletes the permission.", + "operationId": "corpora.permissions.delete", + "parameters": [ + { + "name": "permissionsId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "schema": { + "type": "string", + "pattern": "^corpora/[^/]+/permissions/[^/]+$" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/RegisterFilesResponse" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/fileSearchStores/{fileSearchStoresId}:importFile": { - "post": { - "description": "Imports a `File` from File Service to a `FileSearchStore`.", - "operationId": "fileSearchStores.importFile", + }, + "patch": { + "description": "Updates the permission.", + "operationId": "corpora.permissions.patch", "parameters": [ { - "name": "fileSearchStoresId", + "name": "permissionsId", "in": "path", "required": true, - "description": "Required. Immutable. The name of the `FileSearchStore` to import the file into. Example: `fileSearchStores/my-file-search-store-123`", + "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": "^fileSearchStores/[^/]+$" + "pattern": "^corpora/[^/]+/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" } } ], @@ -427,7 +351,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ImportFileRequest" + "$ref": "#/components/schemas/Permission" } } } @@ -438,27 +362,33 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Permission" } } } } } - } - }, - "/fileSearchStores/{fileSearchStoresId}": { + }, "get": { - "description": "Gets information about a specific `FileSearchStore`.", - "operationId": "fileSearchStores.get", + "description": "Gets information about a specific Permission.", + "operationId": "corpora.permissions.get", "parameters": [ { - "name": "fileSearchStoresId", + "name": "permissionsId", "in": "path", "required": true, - "description": "Required. The name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", + "schema": { + "type": "string" + } + }, + { + "name": "corporaId", + "in": "path", + "required": true, + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^corpora/[^/]+/permissions/[^/]+$" } } ], @@ -468,33 +398,44 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/FileSearchStore" + "$ref": "#/components/schemas/Permission" } } } } } - }, - "delete": { - "description": "Deletes a `FileSearchStore`.", - "operationId": "fileSearchStores.delete", + } + }, + "/corpora/{corporaId}/permissions": { + "get": { + "description": "Lists permissions for the specific resource.", + "operationId": "corpora.permissions.list", "parameters": [ { - "name": "force", + "name": "pageSize", "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.", + "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": "boolean" + "type": "integer", + "format": "int32" } }, { - "name": "fileSearchStoresId", + "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", "in": "path", "required": true, - "description": "Required. The resource name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", + "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+$" + "pattern": "^corpora/[^/]+$" } } ], @@ -504,23 +445,33 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/ListPermissionsResponse" } } } } } - } - }, - "/fileSearchStores": { + }, "post": { - "description": "Creates an empty `FileSearchStore`.", - "operationId": "fileSearchStores.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/FileSearchStore" + "$ref": "#/components/schemas/Permission" } } } @@ -531,21 +482,23 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/FileSearchStore" + "$ref": "#/components/schemas/Permission" } } } } } - }, + } + }, + "/generatedFiles": { "get": { - "description": "Lists all `FileSearchStores` owned by the user.", - "operationId": "fileSearchStores.list", + "description": "Lists the generated files owned by the requesting project.", + "operationId": "generatedFiles.list", "parameters": [ { "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. Maximum number of `GeneratedFile`s to return per page. If unspecified, defaults to 10. Maximum `page_size` is 50.", "schema": { "type": "integer", "format": "int32" @@ -554,7 +507,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 from a previous `ListGeneratedFiles` call.", "schema": { "type": "string" } @@ -566,7 +519,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListFileSearchStoresResponse" + "$ref": "#/components/schemas/ListGeneratedFilesResponse" } } } @@ -574,10 +527,10 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/upload/operations/{operationsId}": { + "/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": "fileSearchStores.upload.operations.get", + "operationId": "generatedFiles.operations.get", "parameters": [ { "name": "operationsId", @@ -588,13 +541,13 @@ } }, { - "name": "fileSearchStoresId", + "name": "generatedFilesId", "in": "path", "required": true, "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/upload/operations/[^/]+$" + "pattern": "^generatedFiles/[^/]+/operations/[^/]+$" } } ], @@ -612,27 +565,26 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/operations/{operationsId}": { + "/fileSearchStores": { "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", + "description": "Lists all `FileSearchStores` owned by the user.", + "operationId": "fileSearchStores.list", "parameters": [ { - "name": "operationsId", - "in": "path", - "required": true, + "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" + "type": "integer", + "format": "int32" } }, { - "name": "fileSearchStoresId", - "in": "path", - "required": true, - "description": "The name of the operation resource.", + "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", - "pattern": "^fileSearchStores/[^/]+/operations/[^/]+$" + "type": "string" } } ], @@ -642,7 +594,32 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/ListFileSearchStoresResponse" + } + } + } + } + } + }, + "post": { + "description": "Creates an empty `FileSearchStore`.", + "operationId": "fileSearchStores.create", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/FileSearchStore" + } + } + } + }, + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/FileSearchStore" } } } @@ -650,35 +627,27 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}/documents/{documentsId}": { + "/fileSearchStores/{fileSearchStoresId}": { "delete": { - "description": "Deletes a `Document`.", - "operationId": "fileSearchStores.documents.delete", + "description": "Deletes a `FileSearchStore`.", + "operationId": "fileSearchStores.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.", + "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": "documentsId", + "name": "fileSearchStoresId", "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`", + "description": "Required. The resource name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], @@ -696,35 +665,104 @@ } }, "get": { - "description": "Gets information about a specific `Document`.", - "operationId": "fileSearchStores.documents.get", + "description": "Gets information about a specific `FileSearchStore`.", + "operationId": "fileSearchStores.get", "parameters": [ { "name": "fileSearchStoresId", "in": "path", "required": true, + "description": "Required. The name of the `FileSearchStore`. Example: `fileSearchStores/my-file-search-store-123`", "schema": { - "type": "string" + "type": "string", + "pattern": "^fileSearchStores/[^/]+$" } - }, + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/FileSearchStore" + } + } + } + } + } + } + }, + "/fileSearchStores/{fileSearchStoresId}:importFile": { + "post": { + "description": "Imports a `File` from File Service to a `FileSearchStore`.", + "operationId": "fileSearchStores.importFile", + "parameters": [ { - "name": "documentsId", + "name": "fileSearchStoresId", "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": "Required. Immutable. The name of the `FileSearchStore` to import the file into. Example: `fileSearchStores/my-file-search-store-123`", "schema": { "type": "string", - "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" + "pattern": "^fileSearchStores/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ImportFileRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Document" + "$ref": "#/components/schemas/Operation" + } + } + } + } + } + } + }, + "/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", + "parameters": [ + { + "name": "operationsId", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "fileSearchStoresId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", + "schema": { + "type": "string", + "pattern": "^fileSearchStores/[^/]+/operations/[^/]+$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Operation" } } } @@ -779,65 +817,71 @@ } } }, - "/fileSearchStores/{fileSearchStoresId}:uploadToFileSearchStore": { - "post": { - "description": "Uploads data to a FileSearchStore, preprocesses and chunks before storing it in a FileSearchStore Document.", - "operationId": "media.uploadToFileSearchStore", + "/fileSearchStores/{fileSearchStoresId}/documents/{documentsId}": { + "get": { + "description": "Gets information about a specific `Document`.", + "operationId": "fileSearchStores.documents.get", "parameters": [ { "name": "fileSearchStoresId", "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": "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/[^/]+$" + "pattern": "^fileSearchStores/[^/]+/documents/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UploadToFileSearchStoreRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CustomLongRunningOperation" + "$ref": "#/components/schemas/Document" } } } } } - } - }, - "/generatedFiles": { - "get": { - "description": "Lists the generated files owned by the requesting project.", - "operationId": "generatedFiles.list", + }, + "delete": { + "description": "Deletes a `Document`.", + "operationId": "fileSearchStores.documents.delete", "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.", + "name": "fileSearchStoresId", + "in": "path", + "required": true, "schema": { - "type": "integer", - "format": "int32" + "type": "string" } }, { - "name": "pageToken", + "name": "force", "in": "query", - "description": "Optional. A page token from a previous `ListGeneratedFiles` call.", + "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": "string" + "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/[^/]+$" } } ], @@ -847,7 +891,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListGeneratedFilesResponse" + "$ref": "#/components/schemas/Empty" } } } @@ -855,10 +899,10 @@ } } }, - "/generatedFiles/{generatedFilesId}/operations/{operationsId}": { + "/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": "generatedFiles.operations.get", + "operationId": "fileSearchStores.upload.operations.get", "parameters": [ { "name": "operationsId", @@ -869,13 +913,13 @@ } }, { - "name": "generatedFilesId", + "name": "fileSearchStoresId", "in": "path", "required": true, "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^generatedFiles/[^/]+/operations/[^/]+$" + "pattern": "^fileSearchStores/[^/]+/upload/operations/[^/]+$" } } ], @@ -893,66 +937,50 @@ } } }, - "/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", + "/cachedContents": { + "get": { + "description": "Lists CachedContents.", + "operationId": "cachedContents.list", "parameters": [ { - "name": "modelsId", - "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. 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": "string", - "pattern": "^models/[^/]+$" + "type": "integer", + "format": "int32" } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" - } + }, + { + "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.", + "schema": { + "type": "string" } } - }, + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/ListCachedContentsResponse" } } } } } - } - }, - "/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": "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 CachedContent resource.", + "operationId": "cachedContents.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentRequest" + "$ref": "#/components/schemas/CachedContent" } } } @@ -963,7 +991,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentResponse" + "$ref": "#/components/schemas/CachedContent" } } } @@ -971,19 +999,19 @@ } } }, - "/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", + "/cachedContents/{cachedContentsId}": { + "delete": { + "description": "Deletes CachedContent resource.", + "operationId": "cachedContents.delete", "parameters": [ { - "name": "modelsId", + "name": "cachedContentsId", "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}`", + "description": "Required. The resource name referring to the content cache entry Format: `cachedContents/{id}`", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^cachedContents/[^/]+$" } } ], @@ -993,27 +1021,34 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Model" + "$ref": "#/components/schemas/Empty" } } } } } - } - }, - "/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", + }, + "patch": { + "description": "Updates CachedContent resource (only expiration is updatable).", + "operationId": "cachedContents.patch", "parameters": [ { - "name": "modelsId", + "name": "cachedContentsId", "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": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^cachedContents/[^/]+$" + } + }, + { + "name": "updateMask", + "in": "query", + "description": "The list of fields to update.", + "schema": { + "type": "string", + "format": "google-fieldmask" } } ], @@ -1021,7 +1056,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/BatchEmbedContentsRequest" + "$ref": "#/components/schemas/CachedContent" } } } @@ -1032,34 +1067,25 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/BatchEmbedContentsResponse" + "$ref": "#/components/schemas/CachedContent" } } } } } - } - }, - "/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": "Reads CachedContent resource.", + "operationId": "cachedContents.get", "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.", - "schema": { - "type": "integer", - "format": "int32" - } - }, - { - "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.", + "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/[^/]+$" } } ], @@ -1069,7 +1095,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ListModelsResponse" + "$ref": "#/components/schemas/CachedContent" } } } @@ -1077,19 +1103,19 @@ } } }, - "/models/{modelsId}:batchGenerateContent": { + "/dynamic/{dynamicId}:streamGenerateContent": { "post": { - "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", - "operationId": "models.batchGenerateContent", + "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": "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/[^/]+$" } } ], @@ -1097,7 +1123,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/BatchGenerateContentRequest" + "$ref": "#/components/schemas/GenerateContentRequest" } } } @@ -1108,7 +1134,12 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentResponse" + } + }, + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -1116,19 +1147,19 @@ } } }, - "/models/{modelsId}:asyncBatchEmbedContent": { + "/dynamic/{dynamicId}:generateContent": { "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", + "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", "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/[^/]+$" } } ], @@ -1136,7 +1167,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" + "$ref": "#/components/schemas/GenerateContentRequest" } } } @@ -1147,7 +1178,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -1155,43 +1186,57 @@ } } }, - "/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", + "/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": "modelsId", + "name": "batchesId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^batches/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Operation" + } } } } - }, + } + }, + "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": "batchesId", + "in": "path", + "required": true, + "description": "The name of the operation resource to be deleted.", + "schema": { + "type": "string", + "pattern": "^batches/[^/]+$" + } + } + ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" - } - }, - "text/event-stream": { - "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/Empty" } } } @@ -1199,19 +1244,28 @@ } } }, - "/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", + "/batches/{batchesId}:updateEmbedContentBatch": { + "patch": { + "description": "Updates a batch of EmbedContent requests for batch processing.", + "operationId": "batches.updateEmbedContentBatch", "parameters": [ { - "name": "modelsId", + "name": "batchesId", "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": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", "schema": { "type": "string", - "pattern": "^models/[^/]+$" + "pattern": "^batches/[^/]+$" + } + }, + { + "name": "updateMask", + "in": "query", + "description": "Optional. The list of fields to update.", + "schema": { + "type": "string", + "format": "google-fieldmask" } } ], @@ -1219,7 +1273,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CountTokensRequest" + "$ref": "#/components/schemas/EmbedContentBatch" } } } @@ -1230,7 +1284,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CountTokensResponse" + "$ref": "#/components/schemas/EmbedContentBatch" } } } @@ -1238,27 +1292,19 @@ } } }, - "/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", + "/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": "operationsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "modelsId", + "name": "batchesId", "in": "path", "required": true, - "description": "The name of the operation resource.", + "description": "The name of the operation resource to be cancelled.", "schema": { "type": "string", - "pattern": "^models/[^/]+/operations/[^/]+$" + "pattern": "^batches/[^/]+$" } } ], @@ -1268,7 +1314,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/Empty" } } } @@ -1276,10 +1322,10 @@ } } }, - "/models/{modelsId}/operations": { + "/batches": { "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", + "operationId": "batches.list", "parameters": [ { "name": "filter", @@ -1289,16 +1335,6 @@ "type": "string" } }, - { - "name": "modelsId", - "in": "path", - "required": true, - "description": "The name of the operation's parent resource.", - "schema": { - "type": "string", - "pattern": "^models/[^/]+$" - } - }, { "name": "pageSize", "in": "query", @@ -1339,10 +1375,58 @@ } } }, - "/tunedModels/{tunedModelsId}:generateContent": { + "/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" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentBatch" + } + } + } + }, + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentBatch" + } + } + } + } + } + } + }, + "/tunedModels/{tunedModelsId}:batchGenerateContent": { "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", + "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", + "operationId": "tunedModels.batchGenerateContent", "parameters": [ { "name": "tunedModelsId", @@ -1359,7 +1443,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "$ref": "#/components/schemas/BatchGenerateContentRequest" } } } @@ -1370,7 +1454,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/Operation" } } } @@ -1458,64 +1542,27 @@ } } }, - "/tunedModels/{tunedModelsId}": { - "get": { - "description": "Gets information about a specific TunedModel.", - "operationId": "tunedModels.get", + "/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", "parameters": [ { "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", "pattern": "^tunedModels/[^/]+$" } } ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TunedModel" - } - } - } - } - } - }, - "patch": { - "description": "Updates a tuned model.", - "operationId": "tunedModels.patch", - "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`", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - }, - { - "name": "updateMask", - "in": "query", - "description": "Optional. The list of fields to update.", - "schema": { - "type": "string", - "format": "google-fieldmask" - } - } - ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/GenerateContentRequest" } } } @@ -1526,35 +1573,51 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TunedModel" + "$ref": "#/components/schemas/GenerateContentResponse" + } + }, + "text/event-stream": { + "schema": { + "$ref": "#/components/schemas/GenerateContentResponse" } } } } } - }, - "delete": { - "description": "Deletes a tuned model.", - "operationId": "tunedModels.delete", + } + }, + "/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": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", + "description": "Required. The resource name of the tuned model to transfer ownership. Format: `tunedModels/my-model-id`", "schema": { "type": "string", "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TransferOwnershipRequest" + } + } + } + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/TransferOwnershipResponse" } } } @@ -1562,10 +1625,10 @@ } } }, - "/tunedModels/{tunedModelsId}:batchGenerateContent": { + "/tunedModels/{tunedModelsId}:generateContent": { "post": { - "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", - "operationId": "tunedModels.batchGenerateContent", + "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", @@ -1582,7 +1645,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/BatchGenerateContentRequest" + "$ref": "#/components/schemas/GenerateContentRequest" } } } @@ -1593,7 +1656,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -1640,66 +1703,64 @@ } } }, - "/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", + "/tunedModels/{tunedModelsId}": { + "get": { + "description": "Gets information about a specific TunedModel.", + "operationId": "tunedModels.get", "parameters": [ { "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The resource name of the tuned model to transfer ownership. Format: `tunedModels/my-model-id`", + "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", "schema": { "type": "string", "pattern": "^tunedModels/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TransferOwnershipRequest" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/TransferOwnershipResponse" + "$ref": "#/components/schemas/TunedModel" } } } } } - } - }, - "/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", + }, + "patch": { + "description": "Updates a tuned model.", + "operationId": "tunedModels.patch", "parameters": [ { "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "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", "pattern": "^tunedModels/[^/]+$" } + }, + { + "name": "updateMask", + "in": "query", + "description": "Optional. The list of fields to update.", + "schema": { + "type": "string", + "format": "google-fieldmask" + } } ], "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentRequest" + "$ref": "#/components/schemas/TunedModel" } } } @@ -1710,12 +1771,35 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/TunedModel" } - }, - "text/event-stream": { + } + } + } + } + }, + "delete": { + "description": "Deletes a tuned model.", + "operationId": "tunedModels.delete", + "parameters": [ + { + "name": "tunedModelsId", + "in": "path", + "required": true, + "description": "Required. The resource name of the model. Format: `tunedModels/my-model-id`", + "schema": { + "type": "string", + "pattern": "^tunedModels/[^/]+$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentResponse" + "$ref": "#/components/schemas/Empty" } } } @@ -1723,30 +1807,76 @@ } } }, - "/tunedModels/{tunedModelsId}/permissions/{permissionsId}": { + "/tunedModels/{tunedModelsId}/permissions": { "get": { - "description": "Gets information about a specific Permission.", - "operationId": "tunedModels.permissions.get", + "description": "Lists permissions for the specific resource.", + "operationId": "tunedModels.permissions.list", "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": "tunedModelsId", "in": "path", "required": true, + "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", "schema": { - "type": "string" + "type": "string", + "pattern": "^tunedModels/[^/]+$" } - }, + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListPermissionsResponse" + } + } + } + } + } + }, + "post": { + "description": "Create a permission to a specific resource.", + "operationId": "tunedModels.permissions.create", + "parameters": [ { - "name": "permissionsId", + "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" + "pattern": "^tunedModels/[^/]+$" } } ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Permission" + } + } + } + }, "responses": { "200": { "description": "Successful response", @@ -1759,7 +1889,9 @@ } } } - }, + } + }, + "/tunedModels/{tunedModelsId}/permissions/{permissionsId}": { "delete": { "description": "Deletes the permission.", "operationId": "tunedModels.permissions.delete", @@ -1849,33 +1981,30 @@ } } } - } - }, - "/tunedModels/{tunedModelsId}/permissions": { - "post": { - "description": "Create a permission to a specific resource.", - "operationId": "tunedModels.permissions.create", + }, + "get": { + "description": "Gets information about a specific Permission.", + "operationId": "tunedModels.permissions.get", "parameters": [ { "name": "tunedModelsId", "in": "path", "required": true, - "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "schema": { + "type": "string" + } + }, + { + "name": "permissionsId", + "in": "path", + "required": true, + "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", "schema": { "type": "string", - "pattern": "^tunedModels/[^/]+$" + "pattern": "^tunedModels/[^/]+/permissions/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Permission" - } - } - } - }, "responses": { "200": { "description": "Successful response", @@ -1888,60 +2017,15 @@ } } } - }, + } + }, + "/tunedModels/{tunedModelsId}/operations": { "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": "tunedModels.operations.list", "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": "tunedModelsId", - "in": "path", - "required": true, - "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", - "schema": { - "type": "string", - "pattern": "^tunedModels/[^/]+$" - } - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ListPermissionsResponse" - } - } - } - } - } - } - }, - "/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": "filter", + "name": "filter", "in": "query", "description": "The standard list filter.", "schema": { @@ -2036,81 +2120,66 @@ } } }, - "/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}: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": "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 name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^models/[^/]+$" } } ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Empty" - } - } - } - } - } - } - }, - "/corpora": { - "post": { - "description": "Creates an empty `Corpus`.", - "operationId": "corpora.create", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/AsyncBatchEmbedContentRequest" } } } @@ -2121,42 +2190,51 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Corpus" + "$ref": "#/components/schemas/Operation" } } } } } - }, - "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" } } } @@ -2164,36 +2242,19 @@ } } }, - "/corpora/{corporaId}/permissions/{permissionsId}": { - "patch": { - "description": "Updates the permission.", - "operationId": "corpora.permissions.patch", + "/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": "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 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", - "format": "google-fieldmask" + "pattern": "^models/[^/]+$" } } ], @@ -2201,7 +2262,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/BatchEmbedContentsRequest" } } } @@ -2212,33 +2273,27 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/BatchEmbedContentsResponse" } } } } } - }, + } + }, + "/models/{modelsId}": { "get": { - "description": "Gets information about a specific Permission.", - "operationId": "corpora.permissions.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": "permissionsId", - "in": "path", - "required": true, - "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": "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/[^/]+/permissions/[^/]+$" + "pattern": "^models/[^/]+$" } } ], @@ -2248,33 +2303,34 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Model" } } } } } - }, - "delete": { - "description": "Deletes the permission.", - "operationId": "corpora.permissions.delete", + } + }, + "/models": { + "get": { + "description": "Lists the [`Model`s](https://ai.google.dev/gemini-api/docs/models/gemini) available through the Gemini API.", + "operationId": "models.list", "parameters": [ { - "name": "permissionsId", - "in": "path", - "required": true, + "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.", "schema": { - "type": "string" + "type": "integer", + "format": "int32" } }, { - "name": "corporaId", - "in": "path", - "required": true, - "description": "Required. The resource name of the permission. Formats: `tunedModels/{tuned_model}/permissions/{permission}` `corpora/{corpus}/permissions/{permission}`", + "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.", "schema": { - "type": "string", - "pattern": "^corpora/[^/]+/permissions/[^/]+$" + "type": "string" } } ], @@ -2284,7 +2340,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/ListModelsResponse" } } } @@ -2292,19 +2348,19 @@ } } }, - "/corpora/{corporaId}/permissions": { + "/models/{modelsId}:batchGenerateContent": { "post": { - "description": "Create a permission to a specific resource.", - "operationId": "corpora.permissions.create", + "description": "Enqueues a batch of `GenerateContent` requests for batch processing.", + "operationId": "models.batchGenerateContent", "parameters": [ { - "name": "corporaId", + "name": "modelsId", "in": "path", "required": true, - "description": "Required. The parent resource of the `Permission`. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^models/[^/]+$" } } ], @@ -2312,7 +2368,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/BatchGenerateContentRequest" } } } @@ -2323,90 +2379,46 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Permission" + "$ref": "#/components/schemas/Operation" } } } } } - }, - "get": { - "description": "Lists permissions for the specific resource.", - "operationId": "corpora.permissions.list", + } + }, + "/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": "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": "modelsId", "in": "path", "required": true, - "description": "Required. The parent resource of the permissions. Formats: `tunedModels/{tuned_model}` `corpora/{corpus}`", + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", "schema": { "type": "string", - "pattern": "^corpora/[^/]+$" + "pattern": "^models/[^/]+$" } } ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ListPermissionsResponse" - } + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenerateContentRequest" } } } - } - } - }, - "/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", - "parameters": [ - { - "name": "operationsId", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "corporaId", - "in": "path", - "required": true, - "description": "The name of the operation resource.", - "schema": { - "type": "string", - "pattern": "^corpora/[^/]+/operations/[^/]+$" - } - } - ], + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/GenerateContentResponse" } } } @@ -2414,28 +2426,19 @@ } } }, - "/batches/{batchesId}:updateEmbedContentBatch": { - "patch": { - "description": "Updates a batch of EmbedContent requests for batch processing.", - "operationId": "batches.updateEmbedContentBatch", + "/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", "parameters": [ { - "name": "batchesId", + "name": "modelsId", "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 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", - "format": "google-fieldmask" + "pattern": "^models/[^/]+$" } } ], @@ -2443,7 +2446,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentBatch" + "$ref": "#/components/schemas/CountTokensRequest" } } } @@ -2454,7 +2457,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/EmbedContentBatch" + "$ref": "#/components/schemas/CountTokensResponse" } } } @@ -2462,10 +2465,10 @@ } } }, - "/batches": { + "/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": "batches.list", + "operationId": "models.operations.list", "parameters": [ { "name": "filter", @@ -2475,6 +2478,16 @@ "type": "string" } }, + { + "name": "modelsId", + "in": "path", + "required": true, + "description": "The name of the operation's parent resource.", + "schema": { + "type": "string", + "pattern": "^models/[^/]+$" + } + }, { "name": "pageSize", "in": "query", @@ -2515,19 +2528,27 @@ } } }, - "/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", + "/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", "parameters": [ { - "name": "batchesId", + "name": "operationsId", "in": "path", "required": true, - "description": "The name of the operation resource to be deleted.", + "schema": { + "type": "string" + } + }, + { + "name": "modelsId", + "in": "path", + "required": true, + "description": "The name of the operation resource.", "schema": { "type": "string", - "pattern": "^batches/[^/]+$" + "pattern": "^models/[^/]+/operations/[^/]+$" } } ], @@ -2537,35 +2558,34 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/Operation" } } } } } - }, - "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": "batchesId", - "in": "path", - "required": true, - "description": "The name of the operation resource.", - "schema": { - "type": "string", - "pattern": "^batches/[^/]+$" + } + }, + "/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" + } } } - ], + }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/RegisterFilesResponse" } } } @@ -2573,19 +2593,19 @@ } } }, - "/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", + "/files/{filesId}": { + "get": { + "description": "Gets the metadata for the given `File`.", + "operationId": "files.get", "parameters": [ { - "name": "batchesId", + "name": "filesId", "in": "path", "required": true, - "description": "The name of the operation resource to be cancelled.", + "description": "Required. The name of the `File` to get. Example: `files/abc-123`", "schema": { "type": "string", - "pattern": "^batches/[^/]+$" + "pattern": "^files/[^/]+$" } } ], @@ -2595,55 +2615,35 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Empty" + "$ref": "#/components/schemas/File" } } } } } - } - }, - "/batches/{batchesId}:updateGenerateContentBatch": { - "patch": { - "description": "Updates a batch of GenerateContent requests for batch processing.", - "operationId": "batches.updateGenerateContentBatch", + }, + "delete": { + "description": "Deletes the `File`.", + "operationId": "files.delete", "parameters": [ { - "name": "batchesId", + "name": "filesId", "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 name of the `File` to delete. Example: `files/abc-123`", "schema": { "type": "string", - "format": "google-fieldmask" + "pattern": "^files/[^/]+$" } } ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GenerateContentBatch" - } - } - } - }, "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GenerateContentBatch" + "$ref": "#/components/schemas/Empty" } } } @@ -2654,479 +2654,404 @@ }, "components": { "schemas": { - "EmbedContentBatch": { - "description": "A resource representing a batch of `EmbedContent` requests.", + "GoogleAiGenerativelanguageV1betaSegment": { "type": "object", "properties": { - "model": { - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", - "type": "string" + "partIndex": { + "description": "The index of a Part object within its parent Content object.", + "format": "int32", + "type": "integer" }, - "displayName": { - "description": "Required. The user-defined name of this batch.", - "type": "string" + "startIndex": { + "type": "integer", + "description": "Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero.", + "format": "int32" }, - "state": { - "description": "Output only. The state of the batch.", - "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." - ], - "enum": [ - "BATCH_STATE_UNSPECIFIED", - "BATCH_STATE_PENDING", - "BATCH_STATE_RUNNING", - "BATCH_STATE_SUCCEEDED", - "BATCH_STATE_FAILED", - "BATCH_STATE_CANCELLED", - "BATCH_STATE_EXPIRED" - ], - "readOnly": true, - "type": "string" - }, - "createTime": { - "description": "Output only. The time at which the batch was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "output": { - "$ref": "#/components/schemas/EmbedContentBatchOutput", - "description": "Output only. The output of the batch request.", - "readOnly": true - }, - "batchStats": { - "$ref": "#/components/schemas/EmbedContentBatchStats", - "description": "Output only. Stats about the batch.", - "readOnly": true - }, - "endTime": { - "description": "Output only. The time at which the batch processing completed.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "updateTime": { - "description": "Output only. The time at which the batch was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "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" + "endIndex": { + "description": "End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero.", + "format": "int32", + "type": "integer" }, - "name": { - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", - "readOnly": true, + "text": { + "description": "The text corresponding to the segment from the response.", "type": "string" - }, - "inputConfig": { - "description": "Required. Input configuration of the instances on which batch processing are performed.", - "$ref": "#/components/schemas/InputEmbedContentConfig" } - } + }, + "description": "Segment of the content." }, - "EmbedContentConfig": { - "description": "Configurations for the EmbedContent request.", + "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", "properties": { - "autoTruncate": { - "description": "Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length.", - "type": "boolean" - }, - "audioTrackExtraction": { - "description": "Optional. Whether to extract audio from video content.", - "type": "boolean" + "id": { + "description": "Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`.", + "type": "string" }, - "taskType": { - "description": "Optional. The task type of the embedding.", + "language": { "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.", - "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." + "Unspecified language. This value should not be used.", + "Python >= 3.10, with numpy and simpy available. Python is the default language." ], "enum": [ - "TASK_TYPE_UNSPECIFIED", - "RETRIEVAL_QUERY", - "RETRIEVAL_DOCUMENT", - "SEMANTIC_SIMILARITY", - "CLASSIFICATION", - "CLUSTERING", - "QUESTION_ANSWERING", - "FACT_VERIFICATION", - "CODE_RETRIEVAL_QUERY" - ] + "LANGUAGE_UNSPECIFIED", + "PYTHON" + ], + "description": "Required. Programming language of the `code`." }, - "title": { - "description": "Optional. The title for the text.", + "code": { + "description": "Required. The code to be executed.", "type": "string" - }, - "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" - }, - "documentOcr": { - "description": "Optional. Whether to enable OCR for document content.", - "type": "boolean" } } }, - "InlinedRequest": { - "description": "The request to be processed in the batch.", + "Blob": { + "description": "Raw media bytes. Text should not be sent as raw bytes, use the 'text' field.", "type": "object", "properties": { - "request": { - "description": "Required. The request to be processed in the batch.", - "$ref": "#/components/schemas/GenerateContentRequest" + "data": { + "type": "string", + "description": "Raw bytes for media formats.", + "format": "byte" }, - "metadata": { - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Optional. The metadata to be associated with the request.", - "type": "object" + "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" } } }, - "ThinkingConfig": { - "description": "Config for thinking features.", + "Tool": { "type": "object", "properties": { - "thinkingBudget": { - "description": "The number of thoughts tokens that the model should generate.", - "type": "integer", - "format": "int32" + "codeExecution": { + "$ref": "#/components/schemas/CodeExecution", + "description": "Optional. Enables the model to execute code as part of generation." }, - "thinkingLevel": { - "description": "Optional. Controls the maximum depth of the model's internal reasoning process before it produces a response. If not specified, the default is HIGH. Recommended for Gemini 3 or later models. Use with earlier models results in an error.", - "type": "string", - "x-enum-descriptions": [ - "Default value.", - "Little to no thinking.", - "Low thinking level.", - "Medium thinking level.", - "High thinking level." - ], - "enum": [ - "THINKING_LEVEL_UNSPECIFIED", - "MINIMAL", - "LOW", - "MEDIUM", - "HIGH" - ] + "googleSearch": { + "description": "Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", + "$ref": "#/components/schemas/GoogleSearch" }, - "includeThoughts": { - "description": "Indicates whether to include thoughts in the response. If true, thoughts are returned only when available.", - "type": "boolean" + "fileSearch": { + "$ref": "#/components/schemas/FileSearch", + "description": "Optional. FileSearch tool type. Tool to retrieve knowledge from Semantic Retrieval corpora." + }, + "mcpServers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/McpServer" + }, + "description": "Optional. MCP Servers to connect to." + }, + "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" + }, + "functionDeclarations": { + "type": "array", + "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." + }, + "urlContext": { + "description": "Optional. Tool to support URL context retrieval.", + "$ref": "#/components/schemas/UrlContext" + }, + "googleSearchRetrieval": { + "description": "Optional. Retrieval tool that is powered by Google search.", + "$ref": "#/components/schemas/GoogleSearchRetrieval" + }, + "googleMaps": { + "description": "Optional. Tool that allows grounding the model's response with geospatial context related to the user's query.", + "$ref": "#/components/schemas/GoogleMaps" } - } + }, + "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" }, - "TuningExample": { - "description": "A single example for tuning.", + "CodeExecutionResult": { + "description": "Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used.", "type": "object", "properties": { - "textInput": { - "description": "Optional. Text model input.", + "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." + ], + "enum": [ + "OUTCOME_UNSPECIFIED", + "OUTCOME_OK", + "OUTCOME_FAILED", + "OUTCOME_DEADLINE_EXCEEDED" + ], + "description": "Required. Outcome of the code execution.", "type": "string" }, "output": { - "description": "Required. The expected model output.", + "description": "Optional. Contains stdout when code execution is successful, stderr or other description otherwise.", + "type": "string" + }, + "id": { + "description": "Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id.", "type": "string" } } }, - "InlinedEmbedContentRequests": { - "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "WebSearch": { + "description": "Standard web search for grounding and related configurations.", "type": "object", - "properties": { - "requests": { - "description": "Required. The requests to be processed in the batch.", - "type": "array", - "items": { - "$ref": "#/components/schemas/InlinedEmbedContentRequest" - } - } - } + "properties": {} }, - "SearchTypes": { - "description": "Different types of search that can be enabled on the GoogleSearch tool.", + "ListFileSearchStoresResponse": { "type": "object", "properties": { - "webSearch": { - "$ref": "#/components/schemas/WebSearch", - "description": "Optional. Enables web search. Only text results are returned." + "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" }, - "imageSearch": { - "$ref": "#/components/schemas/ImageSearch", - "description": "Optional. Enables image search. Image bytes are returned." + "fileSearchStores": { + "description": "The returned rag_stores.", + "type": "array", + "items": { + "$ref": "#/components/schemas/FileSearchStore" + } } - } + }, + "description": "Response from `ListFileSearchStores` containing a paginated list of `FileSearchStores`. The results are sorted by ascending `file_search_store.create_time`." }, - "RegisterFilesResponse": { - "description": "Response for `RegisterFiles`.", + "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", "properties": { - "files": { - "description": "The registered files to be used when calling GenerateContent.", + "contents": { + "description": "Optional. The input given to the model as a prompt. This field is ignored when `generate_content_request` is set.", "type": "array", "items": { - "$ref": "#/components/schemas/File" + "$ref": "#/components/schemas/Content" } + }, + "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" } } }, - "ListTunedModelsResponse": { - "description": "Response from `ListTunedModels` containing a paginated list of Models.", + "UrlContext": { + "description": "Tool to support URL context retrieval.", + "type": "object", + "properties": {} + }, + "SpeakerVoiceConfig": { + "description": "The configuration for a single speaker in a multi speaker setup.", "type": "object", "properties": { - "tunedModels": { - "description": "The returned Models.", - "type": "array", - "items": { - "$ref": "#/components/schemas/TunedModel" - } - }, - "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.", + "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" } } }, - "UrlContextMetadata": { - "description": "Metadata related to url context retrieval tool.", + "CitationMetadata": { + "description": "A collection of source attributions for a piece of content.", "type": "object", "properties": { - "urlMetadata": { - "description": "List of url context.", + "citationSources": { + "description": "Citations to sources for a specific response.", "type": "array", "items": { - "$ref": "#/components/schemas/UrlMetadata" + "$ref": "#/components/schemas/CitationSource" } } } }, - "RetrievalMetadata": { - "description": "Metadata related to retrieval in the grounding flow.", - "type": "object", - "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" - } - } - }, - "ReviewSnippet": { - "description": "Encapsulates a snippet of a user review that answers a question about the features of a specific place in Google Maps.", + "GeneratedFile": { "type": "object", "properties": { - "reviewId": { - "description": "The ID of the review snippet.", + "state": { + "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." + ], + "enum": [ + "STATE_UNSPECIFIED", + "GENERATING", + "GENERATED", + "FAILED" + ], + "description": "Output only. The state of the GeneratedFile.", + "readOnly": true, "type": "string" }, - "title": { - "description": "Title of the review.", + "error": { + "description": "Error details if the GeneratedFile ends up in the STATE_FAILED state.", + "$ref": "#/components/schemas/Status" + }, + "mimeType": { + "description": "MIME type of the generatedFile.", "type": "string" }, - "googleMapsUri": { - "description": "A link that corresponds to the user review on Google Maps.", + "name": { + "description": "Identifier. The name of the generated file. Example: `generatedFiles/abc-123`", "type": "string" } - } + }, + "description": "A file generated on behalf of a user." }, - "TunedModel": { - "description": "A fine-tuned model created using ModelService.CreateTunedModel.", + "Schema": { "type": "object", "properties": { - "createTime": { - "description": "Output only. The timestamp when this model was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "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" - }, - "tunedModelSource": { - "description": "Optional. TunedModel to use as the starting point for training the new model.", - "$ref": "#/components/schemas/TunedModelSource" + "nullable": { + "description": "Optional. Indicates if the value may be null.", + "type": "boolean" }, - "state": { - "readOnly": true, + "minLength": { "type": "string", - "description": "Output only. The state of the tuned model.", - "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." - ], - "enum": [ - "STATE_UNSPECIFIED", - "CREATING", - "ACTIVE", - "FAILED" - ] + "description": "Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING", + "format": "int64" }, - "tuningTask": { - "$ref": "#/components/schemas/TuningTask", - "description": "Required. The tuning task that creates the tuned model." + "minimum": { + "type": "number", + "description": "Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER", + "format": "double" }, - "baseModel": { - "description": "Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001`", - "type": "string" + "maximum": { + "type": "number", + "description": "Optional. Maximum value of the Type.INTEGER and Type.NUMBER", + "format": "double" }, - "updateTime": { - "description": "Output only. The timestamp when this model was updated.", - "readOnly": true, + "maxLength": { "type": "string", - "format": "google-datetime" - }, - "temperature": { - "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", - "format": "float" + "description": "Optional. Maximum length of the Type.STRING", + "format": "int64" }, - "displayName": { - "description": "Optional. The name to display for this model in user interfaces. The display name must be up to 40 characters including spaces.", + "pattern": { + "description": "Optional. Pattern of the Type.STRING to restrict a string to a regular expression.", "type": "string" }, - "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, + "format": { + "description": "Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality.", "type": "string" }, "description": { - "description": "Optional. A short description of this model.", + "description": "Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown.", "type": "string" }, - "readerProjectNumbers": { - "description": "Optional. List of project numbers that have read access to the tuned model.", + "maxItems": { + "type": "string", + "description": "Optional. Maximum number of the elements for Type.ARRAY.", + "format": "int64" + }, + "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", "items": { - "type": "string", - "format": "int64" + "type": "string" } }, - "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" - } - } - }, - "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", - "properties": { - "mcpServers": { - "description": "Optional. MCP Servers to connect to.", + "required": { + "description": "Optional. Required properties of Type.OBJECT.", "type": "array", "items": { - "$ref": "#/components/schemas/McpServer" + "type": "string" } }, - "codeExecution": { - "description": "Optional. Enables the model to execute code as part of generation.", - "$ref": "#/components/schemas/CodeExecution" + "example": { + "description": "Optional. Example of the object. Will only populated when the object is the root." }, - "computerUse": { - "$ref": "#/components/schemas/ComputerUse", - "description": "Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations." + "propertyOrdering": { + "type": "array", + "items": { + "type": "string" + }, + "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." }, - "urlContext": { - "$ref": "#/components/schemas/UrlContext", - "description": "Optional. Tool to support URL context retrieval." + "minProperties": { + "type": "string", + "description": "Optional. Minimum number of the properties for Type.OBJECT.", + "format": "int64" }, - "functionDeclarations": { + "minItems": { + "type": "string", + "description": "Optional. Minimum number of the elements for Type.ARRAY.", + "format": "int64" + }, + "anyOf": { + "description": "Optional. The value should be validated against any (one or more) of the subschemas in the list.", + "type": "array", "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" + "$ref": "#/components/schemas/Schema" + } }, - "googleSearchRetrieval": { - "description": "Optional. Retrieval tool that is powered by Google search.", - "$ref": "#/components/schemas/GoogleSearchRetrieval" + "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." }, - "googleSearch": { - "$ref": "#/components/schemas/GoogleSearch", - "description": "Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google." + "type": { + "type": "string", + "description": "Required. Data type.", + "x-enum-descriptions": [ + "Not specified, should not be used.", + "String type.", + "Number type.", + "Integer type.", + "Boolean type.", + "Array type.", + "Object type.", + "Null type." + ], + "enum": [ + "TYPE_UNSPECIFIED", + "STRING", + "NUMBER", + "INTEGER", + "BOOLEAN", + "ARRAY", + "OBJECT", + "NULL" + ] }, - "fileSearch": { - "description": "Optional. FileSearch tool type. Tool to retrieve knowledge from Semantic Retrieval corpora.", - "$ref": "#/components/schemas/FileSearch" + "items": { + "description": "Optional. Schema of the elements of Type.ARRAY.", + "$ref": "#/components/schemas/Schema" }, - "googleMaps": { - "$ref": "#/components/schemas/GoogleMaps", - "description": "Optional. Tool that allows grounding the model's response with geospatial context related to the user's query." + "maxProperties": { + "description": "Optional. Maximum number of the properties for Type.OBJECT.", + "format": "int64", + "type": "string" + }, + "title": { + "description": "Optional. The title of the schema.", + "type": "string" + }, + "properties": { + "description": "Optional. Properties of Type.OBJECT.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/Schema" + } } - } + }, + "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)." }, - "GenerateContentBatchOutput": { - "description": "The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field.", + "PromptFeedback": { "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" - }, - "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" - } - } - }, - "RetrievalConfig": { - "description": "Retrieval config.", - "type": "object", - "properties": { - "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" + "safetyRatings": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SafetyRating" + }, + "description": "Ratings for safety of the prompt. There is at most one rating per category." }, - "latLng": { - "$ref": "#/components/schemas/LatLng", - "description": "Optional. The location of the user." - } - } - }, - "VoiceConfig": { - "description": "The configuration for the voice to use.", - "type": "object", - "properties": { - "prebuiltVoiceConfig": { - "description": "The configuration for the prebuilt voice to use.", - "$ref": "#/components/schemas/PrebuiltVoiceConfig" - } - } - }, - "PromptFeedback": { - "description": "A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`.", - "type": "object", - "properties": { "blockReason": { - "description": "Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt.", "type": "string", + "description": "Optional. If set, the prompt was blocked and no candidates are returned. Rephrase the prompt.", "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.", @@ -3143,1018 +3068,1113 @@ "PROHIBITED_CONTENT", "IMAGE_SAFETY" ] + } + }, + "description": "A set of the feedback metadata the prompt specified in `GenerateContentRequest.content`." + }, + "EmbedContentResponse": { + "type": "object", + "properties": { + "embedding": { + "description": "Output only. The embedding generated from the input content.", + "readOnly": true, + "$ref": "#/components/schemas/ContentEmbedding" }, - "safetyRatings": { + "usageMetadata": { + "description": "Output only. The usage metadata for the request.", + "readOnly": true, + "$ref": "#/components/schemas/EmbeddingUsageMetadata" + } + }, + "description": "The response to an `EmbedContentRequest`." + }, + "VoiceConfig": { + "description": "The configuration for the voice to use.", + "type": "object", + "properties": { + "prebuiltVoiceConfig": { + "$ref": "#/components/schemas/PrebuiltVoiceConfig", + "description": "The configuration for the prebuilt voice to use." + } + } + }, + "InlinedEmbedContentResponses": { + "description": "The responses to the requests in the batch.", + "type": "object", + "properties": { + "inlinedResponses": { + "readOnly": true, + "type": "array", "items": { - "$ref": "#/components/schemas/SafetyRating" + "$ref": "#/components/schemas/InlinedEmbedContentResponse" }, - "description": "Ratings for safety of the prompt. There is at most one rating per category.", - "type": "array" + "description": "Output only. The responses to the requests in the batch." } } }, - "RetrievedContext": { - "description": "Chunk from context retrieved by the file search tool.", + "Status": { + "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", "properties": { - "text": { - "description": "Optional. Text of the chunk.", - "type": "string" + "code": { + "description": "The status code, which should be an enum value of google.rpc.Code.", + "format": "int32", + "type": "integer" }, - "customMetadata": { - "description": "Optional. User-provided metadata about the retrieved context.", + "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/GroundingChunkCustomMetadata" + "type": "object", + "additionalProperties": { + "description": "Properties of the object. Contains field @type with type URL." + } } }, - "title": { - "description": "Optional. Title of the document.", - "type": "string" - }, - "fileSearchStore": { - "description": "Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123`", - "type": "string" - }, - "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.", + "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" - }, - "pageNumber": { - "description": "Optional. Page number of the retrieved context, if applicable.", - "type": "integer", - "format": "int32" } } }, - "File": { - "description": "A file uploaded to the API. Next ID: 15", + "GoogleMaps": { "type": "object", "properties": { - "source": { - "description": "Source of the File.", - "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." - ], - "enum": [ - "SOURCE_UNSPECIFIED", - "UPLOADED", - "GENERATED", - "REGISTERED" - ] - }, - "downloadUri": { - "description": "Output only. The download uri of the `File`.", + "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" + } + }, + "description": "The GoogleMaps Tool that provides geospatial context for the user's query." + }, + "BatchGenerateContentRequest": { + "type": "object", + "properties": { + "batch": { + "description": "Required. The batch to create.", + "$ref": "#/components/schemas/GenerateContentBatch" + } + }, + "description": "Request for a `BatchGenerateContent` operation." + }, + "TuningTask": { + "description": "Tuning tasks that create tuned models.", + "type": "object", + "properties": { + "startTime": { + "description": "Output only. The timestamp when tuning this model started.", + "format": "google-datetime", "readOnly": true, "type": "string" }, - "state": { - "readOnly": true, - "type": "string", - "description": "Output only. Processing state of the File.", - "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." - ], - "enum": [ - "STATE_UNSPECIFIED", - "PROCESSING", - "ACTIVE", - "FAILED" - ] - }, - "createTime": { - "description": "Output only. The timestamp of when the `File` was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "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" - }, - "videoMetadata": { - "$ref": "#/components/schemas/VideoFileMetadata", - "description": "Output only. Metadata for a video.", - "readOnly": true - }, - "updateTime": { - "description": "Output only. The timestamp of when the `File` was last updated.", + "completeTime": { "readOnly": true, "type": "string", + "description": "Output only. The timestamp when tuning this model completed.", "format": "google-datetime" }, - "sha256Hash": { - "description": "Output only. SHA-256 hash of the uploaded bytes.", - "readOnly": true, - "type": "string", - "format": "byte" - }, - "error": { - "description": "Output only. Error status if File processing failed.", - "readOnly": true, - "$ref": "#/components/schemas/Status" - }, - "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" - }, - "mimeType": { - "description": "Output only. MIME type of the file.", - "readOnly": true, - "type": "string" + "hyperparameters": { + "description": "Immutable. Hyperparameters controlling the tuning process. If not provided, default values will be used.", + "$ref": "#/components/schemas/Hyperparameters" }, - "sizeBytes": { - "description": "Output only. Size of the file in bytes.", - "readOnly": true, - "type": "string", - "format": "int64" + "trainingData": { + "$ref": "#/components/schemas/Dataset", + "description": "Required. Input only. Immutable. The model training data." }, - "uri": { - "description": "Output only. The uri of the `File`.", + "snapshots": { + "description": "Output only. Metrics collected during tuning.", "readOnly": true, - "type": "string" - }, - "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": "array", + "items": { + "$ref": "#/components/schemas/TuningSnapshot" + } } } }, - "AttributionSourceId": { - "description": "Identifier for the source contributing to this attribution.", + "ListDocumentsResponse": { + "description": "Response from `ListDocuments` containing a paginated list of `Document`s. The `Document`s are sorted by ascending `document.create_time`.", "type": "object", "properties": { - "semanticRetrieverChunk": { - "description": "Identifier for a `Chunk` fetched via Semantic Retriever.", - "$ref": "#/components/schemas/SemanticRetrieverChunk" + "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" }, - "groundingPassage": { - "$ref": "#/components/schemas/GroundingPassageId", - "description": "Identifier for an inline passage." + "documents": { + "description": "The returned `Document`s.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Document" + } } } }, - "FunctionResponseBlob": { - "description": "Raw media bytes for function response. Text should not be sent as raw bytes, use the 'FunctionResponse.response' field.", + "ImageSearch": { + "description": "Image search for grounding and related configurations.", + "type": "object", + "properties": {} + }, + "CreateFileRequest": { + "description": "Request for `CreateFile`.", "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).", - "type": "string" - }, - "data": { - "description": "Raw bytes for media formats.", - "type": "string", - "format": "byte" + "file": { + "$ref": "#/components/schemas/File", + "description": "Optional. Metadata for the file to create." } } }, - "GoogleSearch": { - "description": "GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.", + "UsageMetadata": { + "description": "Metadata on the generation request's token usage.", "type": "object", "properties": { - "searchTypes": { - "description": "Optional. The set of search types to enable. If not set, web search is enabled by default.", - "$ref": "#/components/schemas/SearchTypes" + "toolUsePromptTokensDetails": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + }, + "description": "Output only. List of modalities that were processed for tool-use request inputs." }, - "timeRangeFilter": { - "$ref": "#/components/schemas/Interval", - "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)." + "totalTokenCount": { + "type": "integer", + "description": "Total token count for the generation request (prompt + response candidates).", + "format": "int32" + }, + "cachedContentTokenCount": { + "type": "integer", + "description": "Number of tokens in the cached part of the prompt (the cached content)", + "format": "int32" + }, + "promptTokenCount": { + "type": "integer", + "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.", + "format": "int32" + }, + "thoughtsTokenCount": { + "readOnly": true, + "type": "integer", + "description": "Output only. Number of tokens of thoughts for thinking models.", + "format": "int32" + }, + "toolUsePromptTokenCount": { + "readOnly": true, + "type": "integer", + "description": "Output only. Number of tokens present in tool-use prompt(s).", + "format": "int32" + }, + "cacheTokensDetails": { + "description": "Output only. List of modalities of the cached content in the request input.", + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } + }, + "promptTokensDetails": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + }, + "description": "Output only. List of modalities that were processed in the request input." + }, + "candidatesTokenCount": { + "description": "Total number of tokens across all the generated response candidates.", + "format": "int32", + "type": "integer" + }, + "candidatesTokensDetails": { + "description": "Output only. List of modalities that were returned in the response.", + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/ModalityTokenCount" + } + }, + "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" + } } } }, - "SafetyRating": { - "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.", + "TopCandidates": { + "description": "Candidates with top log probabilities at each decoding step.", "type": "object", "properties": { - "probability": { - "description": "Required. The probability of harm for this content.", - "type": "string", - "x-enum-descriptions": [ - "Probability is unspecified.", - "Content has a negligible chance of being unsafe.", - "Content has a low chance of being unsafe.", - "Content has a medium chance of being unsafe.", - "Content has a high chance of being unsafe." - ], - "enum": [ - "HARM_PROBABILITY_UNSPECIFIED", - "NEGLIGIBLE", - "LOW", - "MEDIUM", - "HIGH" - ] - }, - "blocked": { - "description": "Was this content blocked because of this rating?", - "type": "boolean" - }, - "category": { - "description": "Required. The category for this rating.", - "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." - ], - "enumDeprecated": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - true - ], - "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" - ], - "type": "string" + "candidates": { + "description": "Sorted by log probability in descending order.", + "type": "array", + "items": { + "$ref": "#/components/schemas/LogprobsResultCandidate" + } } } }, - "TunedModelSource": { - "description": "Tuned model as a source for training a new model.", + "ListCachedContentsResponse": { + "description": "Response with CachedContents list.", "type": "object", "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`", + "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" }, - "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" + "cachedContents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CachedContent" + }, + "description": "List of cached contents." } } }, - "Interval": { - "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.", + "UrlMetadata": { + "description": "Context of the a single url retrieval.", "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" + "retrievedUrl": { + "description": "Retrieved url by the tool.", + "type": "string" }, - "endTime": { - "description": "Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.", + "urlRetrievalStatus": { "type": "string", - "format": "google-datetime" + "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." + ], + "enum": [ + "URL_RETRIEVAL_STATUS_UNSPECIFIED", + "URL_RETRIEVAL_STATUS_SUCCESS", + "URL_RETRIEVAL_STATUS_ERROR", + "URL_RETRIEVAL_STATUS_PAYWALL", + "URL_RETRIEVAL_STATUS_UNSAFE" + ], + "description": "Status of the url retrieval." } } }, - "ToolConfig": { - "description": "The Tool configuration containing parameters for specifying `Tool` use in the request.", + "RegisterFilesRequest": { + "description": "Request for `RegisterFiles`.", "type": "object", "properties": { - "retrievalConfig": { - "$ref": "#/components/schemas/RetrievalConfig", - "description": "Optional. Retrieval config." - }, - "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" - }, - "functionCallingConfig": { - "$ref": "#/components/schemas/FunctionCallingConfig", - "description": "Optional. Function calling config." + "uris": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Required. The Google Cloud Storage URIs to register. Example: `gs://bucket/object`." } } }, - "BatchEmbedContentsRequest": { - "description": "Batch request to get embeddings from the model for a list of prompts.", + "FileSearch": { "type": "object", "properties": { - "requests": { + "metadataFilter": { + "description": "Optional. Metadata filter to apply to the semantic retrieval documents and chunks.", + "type": "string" + }, + "topK": { + "type": "integer", + "description": "Optional. The number of semantic retrieval chunks to retrieve.", + "format": "int32" + }, + "fileSearchStoreNames": { + "description": "Required. The names of the file_search_stores to retrieve from. Example: `fileSearchStores/my-file-search-store-123`", + "type": "array", "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" + "type": "string" + } } - } + }, + "description": "The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API." }, - "TuningTask": { - "description": "Tuning tasks that create tuned models.", + "ListGeneratedFilesResponse": { "type": "object", "properties": { - "hyperparameters": { - "description": "Immutable. Hyperparameters controlling the tuning process. If not provided, default values will be used.", - "$ref": "#/components/schemas/Hyperparameters" + "generatedFiles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GeneratedFile" + }, + "description": "The list of `GeneratedFile`s." }, - "trainingData": { - "$ref": "#/components/schemas/Dataset", - "description": "Required. Input only. Immutable. The model training data." + "nextPageToken": { + "description": "A token that can be sent as a `page_token` into a subsequent `ListGeneratedFiles` call.", + "type": "string" + } + }, + "description": "Response for `ListGeneratedFiles`." + }, + "ListModelsResponse": { + "type": "object", + "properties": { + "models": { + "description": "The returned Models.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Model" + } }, - "startTime": { - "description": "Output only. The timestamp when tuning this model started.", + "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 `ListModel` containing a paginated list of Models." + }, + "GenerateContentResponse": { + "type": "object", + "properties": { + "candidates": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Candidate" + }, + "description": "Candidate responses from the model." + }, + "usageMetadata": { + "$ref": "#/components/schemas/UsageMetadata", "readOnly": true, - "type": "string", - "format": "google-datetime" + "description": "Output only. Metadata on the generation requests' token usage." }, - "completeTime": { - "description": "Output only. The timestamp when tuning this model completed.", + "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" + }, + "modelStatus": { + "description": "Output only. The current model status of this model.", + "$ref": "#/components/schemas/ModelStatus", + "readOnly": true + }, + "modelVersion": { "readOnly": true, "type": "string", - "format": "google-datetime" + "description": "Output only. The model version used to generate the response." + } + }, + "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`." + }, + "GroundingPassageId": { + "description": "Identifier for a part within a `GroundingPassage`.", + "type": "object", + "properties": { + "passageId": { + "readOnly": true, + "type": "string", + "description": "Output only. ID of the passage matching the `GenerateAnswerRequest`'s `GroundingPassage.id`." }, - "snapshots": { - "items": { - "$ref": "#/components/schemas/TuningSnapshot" - }, - "description": "Output only. Metrics collected during tuning.", + "partIndex": { "readOnly": true, - "type": "array" + "type": "integer", + "description": "Output only. Index of the part within the `GenerateAnswerRequest`'s `GroundingPassage.content`.", + "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.", + "Image": { + "description": "Chunk from image search.", "type": "object", "properties": { - "id": { - "description": "Optional. The identifier of the function call this response is for. Populated by the client to match the corresponding function call `id`.", + "sourceUri": { + "description": "The web page URI for attribution.", "type": "string" }, - "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", - "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." - ], - "enum": [ - "SCHEDULING_UNSPECIFIED", - "SILENT", - "WHEN_IDLE", - "INTERRUPT" - ] - }, - "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.", + "domain": { + "description": "The root domain of the web page that the image is from, e.g. \"example.com\".", "type": "string" }, - "response": { - "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.", - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - } - }, - "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" + "title": { + "description": "The title of the web page that the image is from.", + "type": "string" }, - "parts": { - "items": { - "$ref": "#/components/schemas/FunctionResponsePart" - }, - "description": "Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.", - "type": "array" + "imageUri": { + "description": "The image asset URL.", + "type": "string" } } }, - "UsageMetadata": { - "description": "Metadata on the generation request's token usage.", + "GroundingMetadata": { + "description": "Metadata returned to client when grounding is enabled.", "type": "object", "properties": { - "promptTokensDetails": { - "description": "Output only. List of modalities that were processed in the request input.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } + "retrievalMetadata": { + "description": "Metadata related to retrieval in the grounding flow.", + "$ref": "#/components/schemas/RetrievalMetadata" }, - "toolUsePromptTokensDetails": { - "description": "Output only. List of modalities that were processed for tool-use request inputs.", - "readOnly": true, + "webSearchQueries": { + "description": "Web search queries for the following-up web search.", "type": "array", "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "type": "string" } }, - "cacheTokensDetails": { - "description": "Output only. List of modalities of the cached content in the request input.", - "readOnly": true, + "groundingSupports": { "type": "array", "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } - }, - "candidatesTokenCount": { - "description": "Total number of tokens across all the generated response candidates.", - "type": "integer", - "format": "int32" - }, - "cachedContentTokenCount": { - "description": "Number of tokens in the cached part of the prompt (the cached content)", - "type": "integer", - "format": "int32" + "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaGroundingSupport" + }, + "description": "List of grounding support." }, - "totalTokenCount": { - "description": "Total token count for the generation request (prompt + response candidates).", - "type": "integer", - "format": "int32" + "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" }, - "candidatesTokensDetails": { + "imageSearchQueries": { + "type": "array", "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "type": "string" }, - "description": "Output only. List of modalities that were returned in the response.", - "readOnly": true, - "type": "array" - }, - "toolUsePromptTokenCount": { - "description": "Output only. Number of tokens present in tool-use prompt(s).", - "readOnly": true, - "type": "integer", - "format": "int32" - }, - "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" - }, - "thoughtsTokenCount": { - "description": "Output only. Number of tokens of thoughts for thinking models.", - "readOnly": true, - "type": "integer", - "format": "int32" + "description": "Image search queries used for grounding." }, - "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 + "searchEntryPoint": { + "description": "Optional. Google search entry for the following-up web searches.", + "$ref": "#/components/schemas/SearchEntryPoint" }, - "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.", + "groundingChunks": { "type": "array", - "readOnly": true, "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } + "$ref": "#/components/schemas/GroundingChunk" + }, + "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." } } }, - "InlinedResponse": { - "description": "The response to a single request in the batch.", + "GoogleSearch": { "type": "object", "properties": { - "error": { - "$ref": "#/components/schemas/Status", - "description": "Output only. The error encountered while processing the request.", - "readOnly": true - }, - "response": { - "description": "Output only. The response to the request.", - "readOnly": true, - "$ref": "#/components/schemas/GenerateContentResponse" + "timeRangeFilter": { + "$ref": "#/components/schemas/Interval", + "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)." }, - "metadata": { - "additionalProperties": { - "description": "Properties of the object." - }, - "description": "Output only. The metadata associated with the request.", - "readOnly": true, - "type": "object" + "searchTypes": { + "description": "Optional. The set of search types to enable. If not set, web search is enabled by default.", + "$ref": "#/components/schemas/SearchTypes" } - } + }, + "description": "GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google." }, - "Empty": { - "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); }", + "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": {} + "properties": { + "reviewSnippets": { + "type": "array", + "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." + } + } }, - "ModalityTokenCount": { - "description": "Represents token counting info for a single modality.", + "UploadToFileSearchStoreRequest": { "type": "object", "properties": { - "modality": { - "description": "The modality associated with this token count.", - "type": "string", - "x-enum-descriptions": [ - "Unspecified modality.", - "Plain text.", - "Image.", - "Video.", - "Audio.", - "Document, e.g. PDF." - ], - "enum": [ - "MODALITY_UNSPECIFIED", - "TEXT", - "IMAGE", - "VIDEO", - "AUDIO", - "DOCUMENT" - ] + "displayName": { + "description": "Optional. Display name of the created document.", + "type": "string" }, - "tokenCount": { - "description": "Number of tokens.", - "type": "integer", - "format": "int32" - } - } - }, - "ListCorporaResponse": { - "description": "Response from `ListCorpora` containing a paginated list of `Corpora`. The results are sorted by ascending `corpus.create_time`.", - "type": "object", - "properties": { - "corpora": { - "description": "The returned corpora.", + "customMetadata": { "type": "array", "items": { - "$ref": "#/components/schemas/Corpus" - } + "$ref": "#/components/schemas/CustomMetadata" + }, + "description": "Custom metadata to be associated with the data." }, - "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.", + "mimeType": { + "description": "Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content.", "type": "string" + }, + "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" } - } + }, + "description": "Request for `UploadToFileSearchStore`." }, - "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.", + "FunctionResponseBlob": { + "description": "Raw media bytes for function response. Text should not be sent as raw bytes, use the 'FunctionResponse.response' field.", "type": "object", "properties": { - "message": { - "description": "A message explaining the model status.", + "data": { + "description": "Raw bytes for media formats.", + "format": "byte", "type": "string" }, - "modelStage": { - "type": "string", - "description": "The stage of the underlying model.", - "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." - ], - "enumDeprecated": [ - false, - true, - false, - false, - false, - false, - true, - false - ], - "enum": [ - "MODEL_STAGE_UNSPECIFIED", - "UNSTABLE_EXPERIMENTAL", - "EXPERIMENTAL", - "PREVIEW", - "STABLE", - "LEGACY", - "DEPRECATED", - "RETIRED" - ] - }, - "retirementTime": { - "description": "The time at which the model will be retired.", - "type": "string", - "format": "google-datetime" + "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" } } }, - "SemanticRetrieverChunk": { - "description": "Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`.", + "FileData": { + "description": "URI based data.", "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, + "mimeType": { + "description": "Optional. The IANA standard MIME type of the source data.", "type": "string" }, - "chunk": { - "description": "Output only. Name of the `Chunk` containing the attributed text. Example: `corpora/123/documents/abc/chunks/xyz`", - "readOnly": true, + "fileUri": { + "description": "Required. URI.", "type": "string" } } }, - "FunctionDeclaration": { - "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.", + "Part": { + "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", "properties": { - "behavior": { - "description": "Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method.", - "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." - ], - "enum": [ - "UNSPECIFIED", - "BLOCKING", - "NON_BLOCKING" - ] + "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." }, - "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`." + "fileData": { + "$ref": "#/components/schemas/FileData", + "description": "URI based data." }, - "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`." + "inlineData": { + "description": "Inline media bytes.", + "$ref": "#/components/schemas/Blob" }, - "description": { - "description": "Required. A brief description of the function.", - "type": "string" + "videoMetadata": { + "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" }, - "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" + "codeExecutionResult": { + "$ref": "#/components/schemas/CodeExecutionResult", + "description": "Result of executing the `ExecutableCode`." }, - "parameters": { - "$ref": "#/components/schemas/Schema", - "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." + "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" }, - "response": { - "$ref": "#/components/schemas/Schema", - "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." - } - } - }, - "DynamicRetrievalConfig": { - "description": "Describes the options to customize dynamic retrieval.", - "type": "object", - "properties": { - "mode": { - "description": "The mode of the predictor to be used in dynamic retrieval.", - "type": "string", - "x-enum-descriptions": [ - "Always trigger retrieval.", - "Run retrieval only when system decides it is necessary." - ], - "enum": [ - "MODE_UNSPECIFIED", - "MODE_DYNAMIC" - ] + "mediaResolution": { + "description": "Optional. Media resolution for the input media.", + "$ref": "#/components/schemas/MediaResolution" }, - "dynamicThreshold": { - "description": "The threshold to be used in dynamic retrieval. If not set, a system default value is used.", - "type": "number", - "format": "float" - } - } - }, - "BatchStats": { - "description": "Stats about the batch.", - "type": "object", - "properties": { - "requestCount": { - "description": "Output only. The number of requests in the batch.", - "readOnly": true, - "type": "string", - "format": "int64" + "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" }, - "successfulRequestCount": { - "description": "Output only. The number of requests that were successfully processed.", - "readOnly": true, + "thoughtSignature": { "type": "string", - "format": "int64" + "description": "Optional. An opaque signature for the thought so it can be reused in subsequent requests.", + "format": "byte" }, - "pendingRequestCount": { - "description": "Output only. The number of requests that are still pending processing.", - "readOnly": true, - "type": "string", - "format": "int64" + "thought": { + "description": "Optional. Indicates if the part is thought from the model.", + "type": "boolean" }, - "failedRequestCount": { - "description": "Output only. The number of requests that failed to be processed.", - "readOnly": true, - "type": "string", - "format": "int64" + "partMetadata": { + "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", + "additionalProperties": { + "description": "Properties of the object." + } + }, + "text": { + "description": "Inline text.", + "type": "string" + }, + "toolCall": { + "$ref": "#/components/schemas/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." + }, + "executableCode": { + "description": "Code generated by the model that is meant to be executed.", + "$ref": "#/components/schemas/ExecutableCode" } } }, - "CitationSource": { - "description": "A citation to a source for a portion of a specific response.", + "CustomMetadata": { + "description": "User provided metadata stored as key-value pairs.", "type": "object", "properties": { - "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" + "stringListValue": { + "$ref": "#/components/schemas/StringList", + "description": "The StringList value of the metadata to store." }, - "license": { - "description": "Optional. License for the GitHub project that is attributed as a source for segment. License info is required for code citations.", + "key": { + "description": "Required. The key of the metadata to store.", "type": "string" }, - "endIndex": { - "description": "Optional. End of the attributed segment, exclusive.", - "type": "integer", - "format": "int32" - }, - "uri": { - "description": "Optional. URI that is attributed as a source for a portion of the text.", + "stringValue": { + "description": "The string value of the metadata to store.", "type": "string" + }, + "numericValue": { + "description": "The numeric value of the metadata to store.", + "format": "float", + "type": "number" } } }, - "UrlMetadata": { - "description": "Context of the a single url retrieval.", + "EmbedContentBatch": { + "description": "A resource representing a batch of `EmbedContent` requests.", "type": "object", "properties": { - "retrievedUrl": { - "description": "Retrieved url by the tool.", + "name": { + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", + "readOnly": true, "type": "string" }, - "urlRetrievalStatus": { - "description": "Status of the url retrieval.", - "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." + "batchStats": { + "description": "Output only. Stats about the batch.", + "$ref": "#/components/schemas/EmbedContentBatchStats", + "readOnly": true + }, + "displayName": { + "description": "Required. The user-defined name of this batch.", + "type": "string" + }, + "endTime": { + "readOnly": true, + "type": "string", + "description": "Output only. The time at which the batch processing completed.", + "format": "google-datetime" + }, + "output": { + "description": "Output only. The output of the batch request.", + "$ref": "#/components/schemas/EmbedContentBatchOutput", + "readOnly": true + }, + "state": { + "readOnly": true, + "type": "string", + "description": "Output only. The state of the batch.", + "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." ], "enum": [ - "URL_RETRIEVAL_STATUS_UNSPECIFIED", - "URL_RETRIEVAL_STATUS_SUCCESS", - "URL_RETRIEVAL_STATUS_ERROR", - "URL_RETRIEVAL_STATUS_PAYWALL", - "URL_RETRIEVAL_STATUS_UNSAFE" + "BATCH_STATE_UNSPECIFIED", + "BATCH_STATE_PENDING", + "BATCH_STATE_RUNNING", + "BATCH_STATE_SUCCEEDED", + "BATCH_STATE_FAILED", + "BATCH_STATE_CANCELLED", + "BATCH_STATE_EXPIRED" ] + }, + "createTime": { + "readOnly": true, + "type": "string", + "description": "Output only. The time at which the batch was created.", + "format": "google-datetime" + }, + "priority": { + "type": "string", + "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": "int64" + }, + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" + }, + "inputConfig": { + "$ref": "#/components/schemas/InputEmbedContentConfig", + "description": "Required. Input configuration of the instances on which batch processing are performed." + }, + "updateTime": { + "description": "Output only. The time at which the batch was last updated.", + "format": "google-datetime", + "readOnly": true, + "type": "string" } } }, - "Operation": { - "description": "This resource represents a long-running operation that is the result of a network API call.", + "BatchEmbedContentsRequest": { "type": "object", "properties": { - "metadata": { - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." + "requests": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmbedContentRequest" }, - "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" - }, - "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" + "description": "Required. Embed requests for the batch. The model in each of these requests must match the model specified `BatchEmbedContentsRequest.model`." + } + }, + "description": "Batch request to get embeddings from the model for a list of prompts." + }, + "Web": { + "type": "object", + "properties": { + "uri": { + "readOnly": true, + "type": "string", + "description": "Output only. URI reference of the chunk." }, - "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}`.", + "title": { + "description": "Output only. Title of the chunk.", + "readOnly": true, "type": "string" - }, - "error": { - "description": "The error result of the operation in case of failure or cancellation.", - "$ref": "#/components/schemas/Status" - }, - "response": { - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." + } + }, + "description": "Chunk from the web." + }, + "InlinedRequests": { + "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "type": "object", + "properties": { + "requests": { + "type": "array", + "items": { + "$ref": "#/components/schemas/InlinedRequest" }, - "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" + "description": "Required. The requests to be processed in the batch." } } }, "FunctionCall": { - "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values.", "type": "object", "properties": { + "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" + }, + "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." } + } + }, + "description": "A predicted `FunctionCall` returned from the model that contains a string representing the `FunctionDeclaration.name` with the arguments and their values." + }, + "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.", + "type": "object", + "properties": { + "parts": { + "description": "Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.", + "type": "array", + "items": { + "$ref": "#/components/schemas/FunctionResponsePart" + } + }, + "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" + }, + "scheduling": { + "type": "string", + "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." + ], + "enum": [ + "SCHEDULING_UNSPECIFIED", + "SILENT", + "WHEN_IDLE", + "INTERRUPT" + ], + "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." }, "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" }, "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`.", + "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": { + "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.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + } } } }, - "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`.", + "SemanticRetrieverChunk": { "type": "object", "properties": { - "contents": { - "items": { - "$ref": "#/components/schemas/Content" - }, - "description": "Optional. The input given to the model as a prompt. This field is ignored when `generate_content_request` is set.", - "type": "array" + "source": { + "readOnly": true, + "type": "string", + "description": "Output only. Name of the source matching the request's `SemanticRetrieverConfig.source`. Example: `corpora/123` or `corpora/123/documents/abc`" }, - "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" + "chunk": { + "description": "Output only. Name of the `Chunk` containing the attributed text. Example: `corpora/123/documents/abc/chunks/xyz`", + "readOnly": true, + "type": "string" } - } + }, + "description": "Identifier for a `Chunk` retrieved via Semantic Retriever specified in the `GenerateAnswerRequest` using `SemanticRetrieverConfig`." }, - "EmbedContentBatchStats": { - "description": "Stats about the batch.", + "BatchStats": { "type": "object", "properties": { "pendingRequestCount": { "description": "Output only. The number of requests that are still pending processing.", + "format": "int64", "readOnly": true, - "type": "string", - "format": "int64" - }, - "failedRequestCount": { - "description": "Output only. The number of requests that failed to be processed.", - "readOnly": true, - "type": "string", - "format": "int64" + "type": "string" }, "requestCount": { "description": "Output only. The number of requests in the batch.", + "format": "int64", + "readOnly": true, + "type": "string" + }, + "failedRequestCount": { "readOnly": true, "type": "string", + "description": "Output only. The number of requests that failed to be processed.", "format": "int64" }, "successfulRequestCount": { "description": "Output only. The number of requests that were successfully processed.", + "format": "int64", "readOnly": true, - "type": "string", - "format": "int64" + "type": "string" + } + }, + "description": "Stats about the batch." + }, + "GroundingChunk": { + "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", + "properties": { + "image": { + "$ref": "#/components/schemas/Image", + "description": "Optional. Grounding chunk from image search." + }, + "retrievedContext": { + "$ref": "#/components/schemas/RetrievedContext", + "description": "Optional. Grounding chunk from context retrieved by the file search tool." + }, + "maps": { + "$ref": "#/components/schemas/Maps", + "description": "Optional. Grounding chunk from Google Maps." + }, + "web": { + "$ref": "#/components/schemas/Web", + "description": "Grounding chunk from the web." } } }, - "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.", + "AttributionSourceId": { + "description": "Identifier for the source contributing to this attribution.", "type": "object", "properties": { - "createTime": { - "description": "Output only. Creation time of the cache entry.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "groundingPassage": { + "description": "Identifier for an inline passage.", + "$ref": "#/components/schemas/GroundingPassageId" }, - "tools": { - "description": "Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response", + "semanticRetrieverChunk": { + "$ref": "#/components/schemas/SemanticRetrieverChunk", + "description": "Identifier for a `Chunk` fetched via Semantic Retriever." + } + } + }, + "RetrievedContext": { + "description": "Chunk from context retrieved by the file search tool.", + "type": "object", + "properties": { + "customMetadata": { + "description": "Optional. User-provided metadata about the retrieved context.", "type": "array", "items": { - "$ref": "#/components/schemas/Tool" + "$ref": "#/components/schemas/GroundingChunkCustomMetadata" } }, - "systemInstruction": { - "$ref": "#/components/schemas/Content", - "description": "Optional. Input only. Immutable. Developer set system instruction. Currently text only." + "uri": { + "description": "Optional. URI reference of the semantic retrieval document.", + "type": "string" }, - "model": { - "description": "Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}`", + "text": { + "description": "Optional. Text of the chunk.", "type": "string" }, - "usageMetadata": { - "$ref": "#/components/schemas/CachedContentUsageMetadata", - "description": "Output only. Metadata on the usage of the cached content.", - "readOnly": true - }, - "displayName": { - "description": "Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters.", + "fileSearchStore": { + "description": "Optional. Name of the `FileSearchStore` containing the document. Example: `fileSearchStores/123`", "type": "string" }, - "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": "google-datetime" + "pageNumber": { + "type": "integer", + "description": "Optional. Page number of the retrieved context, if applicable.", + "format": "int32" }, - "name": { - "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`", - "readOnly": true, + "mediaId": { + "description": "Optional. The media blob resource name for multimodal file search results. Format: fileSearchStores/{file_search_store_id}/media/{blob_id}", "type": "string" }, - "toolConfig": { - "$ref": "#/components/schemas/ToolConfig", - "description": "Optional. Input only. Immutable. Tool config. This config is shared for all tools." - }, - "ttl": { - "description": "Input only. New TTL for this resource, input only.", - "type": "string", - "format": "google-duration" - }, - "updateTime": { - "description": "Output only. When the cache entry was last updated in UTC time.", - "readOnly": true, + "title": { + "description": "Optional. Title of the document.", + "type": "string" + } + } + }, + "FunctionCallingConfig": { + "description": "Configuration for specifying function calling behavior.", + "type": "object", + "properties": { + "mode": { "type": "string", - "format": "google-datetime" + "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\"." + ], + "enum": [ + "MODE_UNSPECIFIED", + "AUTO", + "ANY", + "NONE", + "VALIDATED" + ], + "description": "Optional. Specifies the mode in which function calling should execute. If unspecified, the default value will be set to AUTO." }, - "contents": { + "allowedFunctionNames": { + "type": "array", "items": { - "$ref": "#/components/schemas/Content" + "type": "string" }, - "description": "Optional. Input only. Immutable. The content to cache.", - "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." } } }, - "ListPermissionsResponse": { - "description": "Response from `ListPermissions` containing a paginated list of permissions.", + "Model": { + "description": "Information about a Generative Language Model.", "type": "object", "properties": { - "permissions": { + "baseModelId": { + "description": "Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash`", + "type": "string" + }, + "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.", + "format": "float", + "type": "number" + }, + "topP": { + "type": "number", + "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.", + "format": "float" + }, + "version": { + "description": "Required. The version number of the model. This represents the major version (`1.0` or `1.5`)", + "type": "string" + }, + "inputTokenLimit": { + "description": "Maximum number of input tokens allowed for this model.", + "format": "int32", + "type": "integer" + }, + "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" + }, + "maxTemperature": { + "description": "The maximum temperature this model can use.", + "format": "float", + "type": "number" + }, + "outputTokenLimit": { + "description": "Maximum number of output tokens available for this model.", + "format": "int32", + "type": "integer" + }, + "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.", + "format": "int32", + "type": "integer" + }, + "supportedGenerationMethods": { + "type": "array", "items": { - "$ref": "#/components/schemas/Permission" + "type": "string" }, - "description": "Returned permissions.", - "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`." }, - "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.", + "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" + }, + "description": { + "description": "A short description of the model.", "type": "string" + }, + "thinking": { + "description": "Whether the model supports thinking.", + "type": "boolean" } } }, - "CreateFileResponse": { - "description": "Response for `CreateFile`.", + "InlinedEmbedContentRequests": { "type": "object", "properties": { - "file": { - "$ref": "#/components/schemas/File", - "description": "Metadata for the created file." + "requests": { + "type": "array", + "items": { + "$ref": "#/components/schemas/InlinedEmbedContentRequest" + }, + "description": "Required. The requests to be processed in the batch." } - } + }, + "description": "The requests to be processed in the batch if provided as part of the batch creation request." }, - "UploadToFileSearchStoreRequest": { - "description": "Request for `UploadToFileSearchStore`.", + "StreamableHttpTransport": { + "description": "A transport that can stream HTTP requests and responses. Next ID: 6", "type": "object", "properties": { - "displayName": { - "description": "Optional. Display name of the created document.", + "timeout": { + "description": "HTTP timeout for regular operations.", + "format": "google-duration", "type": "string" }, - "mimeType": { - "description": "Optional. MIME type of the data. If not provided, it will be inferred from the uploaded content.", + "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" }, - "customMetadata": { - "description": "Custom metadata to be associated with the data.", - "type": "array", - "items": { - "$ref": "#/components/schemas/CustomMetadata" - } + "headers": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Optional: Fields for authentication headers, timeouts, etc., if needed." }, - "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" - } - } - }, - "VideoFileMetadata": { - "description": "Metadata for a video `File`.", - "type": "object", - "properties": { - "videoDuration": { - "description": "Duration of the video.", - "type": "string", - "format": "google-duration" + "sseReadTimeout": { + "description": "Timeout for SSE read operations.", + "format": "google-duration", + "type": "string" } } }, @@ -4162,1374 +4182,896 @@ "description": "A grounding chunk from Google Maps. A Maps chunk corresponds to a single place.", "type": "object", "properties": { + "uri": { + "description": "URI reference of the place.", + "type": "string" + }, "text": { "description": "Text description of the place answer.", "type": "string" }, + "placeAnswerSources": { + "description": "Sources that provide answers about the features of a given place in Google Maps.", + "$ref": "#/components/schemas/PlaceAnswerSources" + }, "title": { "description": "Title of the place.", "type": "string" }, - "uri": { - "description": "URI reference 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": "Sources that provide answers about the features of a given place in Google Maps.", - "$ref": "#/components/schemas/PlaceAnswerSources" } } }, - "EmbedContentBatchOutput": { - "description": "The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field.", + "LogprobsResultCandidate": { + "description": "Candidate for the logprobs token and score.", "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, + "token": { + "description": "The candidate\u2019s token string value.", "type": "string" }, - "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/InlinedEmbedContentResponses" + "logProbability": { + "type": "number", + "description": "The candidate's log probability.", + "format": "float" + }, + "tokenId": { + "type": "integer", + "description": "The candidate\u2019s token id value.", + "format": "int32" } } }, - "GroundingMetadata": { - "description": "Metadata returned to client when grounding is enabled.", + "TransferOwnershipResponse": { + "description": "Response from `TransferOwnership`.", + "type": "object", + "properties": {} + }, + "GroundingAttribution": { + "description": "Attribution for a source that contributed to an answer.", "type": "object", "properties": { - "imageSearchQueries": { - "description": "Image search queries used for grounding.", - "type": "array", - "items": { - "type": "string" - } - }, - "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" - }, - "groundingSupports": { - "description": "List of grounding support.", - "type": "array", - "items": { - "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaGroundingSupport" - } - }, - "webSearchQueries": { - "description": "Web search queries for the following-up web search.", - "type": "array", - "items": { - "type": "string" - } - }, - "searchEntryPoint": { - "$ref": "#/components/schemas/SearchEntryPoint", - "description": "Optional. Google search entry for the following-up web searches." - }, - "groundingChunks": { - "items": { - "$ref": "#/components/schemas/GroundingChunk" - }, - "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" + "sourceId": { + "$ref": "#/components/schemas/AttributionSourceId", + "readOnly": true, + "description": "Output only. Identifier for the source contributing to this attribution." }, - "retrievalMetadata": { - "description": "Metadata related to retrieval in the grounding flow.", - "$ref": "#/components/schemas/RetrievalMetadata" + "content": { + "$ref": "#/components/schemas/Content", + "description": "Grounding source content that makes up this attribution." } } }, - "CitationMetadata": { - "description": "A collection of source attributions for a piece of content.", + "VideoFileMetadata": { + "description": "Metadata for a video `File`.", "type": "object", "properties": { - "citationSources": { - "items": { - "$ref": "#/components/schemas/CitationSource" - }, - "description": "Citations to sources for a specific response.", - "type": "array" - } - } - }, - "MultiSpeakerVoiceConfig": { - "description": "The configuration for the multi-speaker setup.", - "type": "object", - "properties": { - "speakerVoiceConfigs": { - "description": "Required. All the enabled speaker voices.", - "type": "array", - "items": { - "$ref": "#/components/schemas/SpeakerVoiceConfig" - } + "videoDuration": { + "description": "Duration of the video.", + "format": "google-duration", + "type": "string" } } }, - "WhiteSpaceConfig": { - "description": "Configuration for a white space chunking algorithm [white space delimited].", + "InlinedEmbedContentRequest": { "type": "object", "properties": { - "maxTokensPerChunk": { - "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", - "format": "int32" + "metadata": { + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Optional. The metadata to be associated with the request." }, - "maxOverlapTokens": { - "description": "Maximum number of overlapping tokens between two adjacent chunks.", - "type": "integer", - "format": "int32" - } - } - }, - "FunctionResponsePart": { - "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", - "properties": { - "inlineData": { - "description": "Inline media bytes.", - "$ref": "#/components/schemas/FunctionResponseBlob" - } - } - }, - "CreateFileRequest": { - "description": "Request for `CreateFile`.", - "type": "object", - "properties": { - "file": { - "$ref": "#/components/schemas/File", - "description": "Optional. Metadata for the file to create." + "request": { + "description": "Required. The request to be processed in the batch.", + "$ref": "#/components/schemas/EmbedContentRequest" } - } + }, + "description": "The request to be processed in the batch." }, - "ImageConfig": { - "description": "Config for image generation features.", + "VideoMetadata": { + "deprecated": true, "type": "object", "properties": { - "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.", + "startOffset": { + "description": "Optional. The start offset of the video.", + "format": "google-duration", "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`.", + "endOffset": { + "description": "Optional. The end offset of the video.", + "format": "google-duration", "type": "string" + }, + "fps": { + "type": "number", + "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].", + "format": "double" } - } + }, + "description": "Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content." }, - "InputConfig": { - "description": "Configures the input to the batch request.", + "TunedModel": { "type": "object", "properties": { - "fileName": { - "description": "The name of the `File` containing the input requests.", + "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" }, - "requests": { - "$ref": "#/components/schemas/InlinedRequests", - "description": "The requests to be processed in the batch." - } - } - }, - "GoogleAiGenerativelanguageV1betaGroundingSupport": { - "description": "Grounding support.", - "type": "object", - "properties": { - "segment": { - "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaSegment", - "description": "Segment of the content this support belongs to." + "state": { + "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." + ], + "enum": [ + "STATE_UNSPECIFIED", + "CREATING", + "ACTIVE", + "FAILED" + ], + "description": "Output only. The state of the tuned model.", + "readOnly": true, + "type": "string" }, - "groundingChunkIndices": { - "items": { - "type": "integer", - "format": "int32" - }, - "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" + "tunedModelSource": { + "$ref": "#/components/schemas/TunedModelSource", + "description": "Optional. TunedModel to use as the starting point for training the new model." }, - "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.", + "baseModel": { + "description": "Immutable. The name of the `Model` to tune. Example: `models/gemini-1.5-flash-001`", + "type": "string" + }, + "description": { + "description": "Optional. A short description of this model.", + "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.", + "format": "int32", + "type": "integer" + }, + "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" + }, + "createTime": { + "description": "Output only. The timestamp when this model was created.", + "format": "google-datetime", + "readOnly": true, + "type": "string" + }, + "tuningTask": { + "$ref": "#/components/schemas/TuningTask", + "description": "Required. The tuning task that creates the tuned model." + }, + "readerProjectNumbers": { + "description": "Optional. List of project numbers that have read access to the tuned model.", "type": "array", "items": { - "type": "number", - "format": "float" + "type": "string", + "format": "int64" } }, - "renderedParts": { - "items": { - "type": "integer", - "format": "int32" - }, - "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.", + "temperature": { + "type": "number", + "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.", + "format": "float" + }, + "updateTime": { + "description": "Output only. The timestamp when this model was updated.", + "format": "google-datetime", "readOnly": true, - "type": "array" + "type": "string" + }, + "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.", + "format": "float", + "type": "number" } - } + }, + "description": "A fine-tuned model created using ModelService.CreateTunedModel." }, - "ListCachedContentsResponse": { - "description": "Response with CachedContents list.", + "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": { - "cachedContents": { - "items": { - "$ref": "#/components/schemas/CachedContent" - }, - "description": "List of cached contents.", - "type": "array" + "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" }, - "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.", + "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" + }, + "granteeType": { + "type": "string", + "x-enum-descriptions": [ + "The default value. This value is unused.", + "Represents a user. When set, you must provide email_address for the user.", + "Represents a group. When set, you must provide email_address for the group.", + "Represents access to everyone. No extra information is required." + ], + "enum": [ + "GRANTEE_TYPE_UNSPECIFIED", + "USER", + "GROUP", + "EVERYONE" + ], + "description": "Optional. Immutable. The type of the grantee." + }, + "role": { + "type": "string", + "description": "Required. The role granted by this permission.", + "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." + ], + "enum": [ + "ROLE_UNSPECIFIED", + "OWNER", + "WRITER", + "READER" + ] } } }, - "FileData": { - "description": "URI based data.", + "ListCorporaResponse": { "type": "object", "properties": { - "mimeType": { - "description": "Optional. The IANA standard MIME type of the source data.", - "type": "string" + "corpora": { + "description": "The returned corpora.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Corpus" + } }, - "fileUri": { - "description": "Required. URI.", + "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 `ListCorpora` containing a paginated list of `Corpora`. The results are sorted by ascending `corpus.create_time`." }, - "Web": { - "description": "Chunk from the web.", + "InlinedResponse": { + "description": "The response to a single request in the batch.", "type": "object", "properties": { - "uri": { - "description": "Output only. URI reference of the chunk.", + "response": { "readOnly": true, - "type": "string" + "$ref": "#/components/schemas/GenerateContentResponse", + "description": "Output only. The response to the request." }, - "title": { - "description": "Output only. Title of the chunk.", + "error": { + "$ref": "#/components/schemas/Status", "readOnly": true, - "type": "string" + "description": "Output only. The error encountered while processing the request." + }, + "metadata": { + "description": "Output only. The metadata associated with the request.", + "readOnly": true, + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + } } } }, - "ListFilesResponse": { - "description": "Response for `ListFiles`.", + "ContentEmbedding": { "type": "object", "properties": { - "nextPageToken": { - "description": "A token that can be sent as a `page_token` into a subsequent `ListFiles` call.", - "type": "string" - }, - "files": { + "shape": { + "type": "array", "items": { - "$ref": "#/components/schemas/File" + "type": "integer", + "format": "int32" }, - "description": "The list of `File`s.", - "type": "array" + "description": "This field stores the soft tokens tensor frame shape (e.g. [1, 1, 256, 2048])." + }, + "values": { + "description": "The embedding values. This is for 3P users only and will not be populated for 1P calls.", + "type": "array", + "items": { + "type": "number", + "format": "float" + } } - } + }, + "description": "A list of floats representing an embedding." }, - "SpeakerVoiceConfig": { - "description": "The configuration for a single speaker in a multi speaker setup.", + "Hyperparameters": { + "description": "Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance", "type": "object", "properties": { - "speaker": { - "description": "Required. The name of the speaker to use. Should be the same as in the prompt.", - "type": "string" + "learningRate": { + "type": "number", + "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.", + "format": "float" }, - "voiceConfig": { - "description": "Required. The configuration for the voice to use.", - "$ref": "#/components/schemas/VoiceConfig" + "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.", + "format": "float", + "type": "number" + }, + "epochCount": { + "type": "integer", + "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.", + "format": "int32" + }, + "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.", + "format": "int32", + "type": "integer" } } }, - "ImportFileRequest": { - "description": "Request for `ImportFile` to import a File API file with a `FileSearchStore`.", + "EmbedContentBatchOutput": { "type": "object", "properties": { - "fileName": { - "description": "Required. The name of the `File` to import. Example: `files/abc-123`", - "type": "string" - }, - "customMetadata": { - "items": { - "$ref": "#/components/schemas/CustomMetadata" - }, - "description": "Custom metadata to be associated with the file.", - "type": "array" + "responsesFile": { + "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 `EmbedContentResponse` messages formatted as JSON. The responses will be written in the same order as the input requests." }, - "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." + "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/InlinedEmbedContentResponses" } - } + }, + "description": "The output of a batch request. This is returned in the `AsyncBatchEmbedContentResponse` or the `EmbedContentBatch.output` field." }, - "ListModelsResponse": { - "description": "Response from `ListModel` containing a paginated list of Models.", + "Dataset": { + "description": "Dataset for training or validation.", "type": "object", "properties": { - "models": { - "items": { - "$ref": "#/components/schemas/Model" - }, - "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" + "examples": { + "description": "Optional. Inline examples with simple input/output text.", + "$ref": "#/components/schemas/TuningExamples" } } }, - "FileSearch": { - "description": "The FileSearch tool that retrieves knowledge from Semantic Retrieval corpora. Files are imported to Semantic Retrieval corpora using the ImportFile API.", + "DynamicRetrievalConfig": { "type": "object", "properties": { - "metadataFilter": { - "description": "Optional. Metadata filter to apply to the semantic retrieval documents and chunks.", + "mode": { + "x-enum-descriptions": [ + "Always trigger retrieval.", + "Run retrieval only when system decides it is necessary." + ], + "enum": [ + "MODE_UNSPECIFIED", + "MODE_DYNAMIC" + ], + "description": "The mode of the predictor to be used in dynamic retrieval.", "type": "string" }, - "topK": { - "description": "Optional. The number of semantic retrieval chunks to retrieve.", - "type": "integer", - "format": "int32" - }, - "fileSearchStoreNames": { - "description": "Required. The names of the file_search_stores to retrieve from. Example: `fileSearchStores/my-file-search-store-123`", + "dynamicThreshold": { + "description": "The threshold to be used in dynamic retrieval. If not set, a system default value is used.", + "format": "float", + "type": "number" + } + }, + "description": "Describes the options to customize dynamic retrieval." + }, + "RegisterFilesResponse": { + "type": "object", + "properties": { + "files": { + "description": "The registered files to be used when calling GenerateContent.", "type": "array", "items": { - "type": "string" + "$ref": "#/components/schemas/File" } } + }, + "description": "Response for `RegisterFiles`." + }, + "FunctionResponsePart": { + "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", + "properties": { + "inlineData": { + "description": "Inline media bytes.", + "$ref": "#/components/schemas/FunctionResponseBlob" + } } }, - "GenerateContentBatch": { - "description": "A resource representing a batch of `GenerateContent` requests.", + "ImageConfig": { + "description": "Config for image generation features.", "type": "object", "properties": { - "endTime": { - "description": "Output only. The time at which the batch processing completed.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "updateTime": { - "description": "Output only. The time at which the batch was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "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" + "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" }, - "output": { - "$ref": "#/components/schemas/GenerateContentBatchOutput", - "description": "Output only. The output of the batch request.", - "readOnly": true + "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" + } + } + }, + "GenerateContentRequest": { + "description": "Request to generate a completion from the model.", + "type": "object", + "properties": { + "generationConfig": { + "$ref": "#/components/schemas/GenerationConfig", + "description": "Optional. Configuration options for model generation and outputs." }, - "batchStats": { - "description": "Output only. Stats about the batch.", - "readOnly": true, - "$ref": "#/components/schemas/BatchStats" + "systemInstruction": { + "description": "Optional. Developer set [system instruction(s)](https://ai.google.dev/gemini-api/docs/system-instructions). Currently, text only.", + "$ref": "#/components/schemas/Content" }, - "name": { - "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`.", - "readOnly": true, - "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" }, - "inputConfig": { - "$ref": "#/components/schemas/InputConfig", - "description": "Required. Input configuration of the instances on which batch processing are performed." + "contents": { + "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", + "items": { + "$ref": "#/components/schemas/Content" + } }, - "model": { - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "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" }, - "state": { - "readOnly": true, - "type": "string", - "description": "Output only. The state of the batch.", + "serviceTier": { "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." + "Default service tier, which is standard.", + "Standard service tier.", + "Flex service tier.", + "Priority service tier." ], "enum": [ - "BATCH_STATE_UNSPECIFIED", - "BATCH_STATE_PENDING", - "BATCH_STATE_RUNNING", - "BATCH_STATE_SUCCEEDED", - "BATCH_STATE_FAILED", - "BATCH_STATE_CANCELLED", - "BATCH_STATE_EXPIRED" - ] - }, - "displayName": { - "description": "Required. The user-defined name of this batch.", + "unspecified", + "standard", + "flex", + "priority" + ], + "description": "Optional. The service tier of the request.", "type": "string" }, - "createTime": { - "description": "Output only. The time at which the batch was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "tools": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Tool" + }, + "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." + }, + "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." + }, + "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 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", + "items": { + "$ref": "#/components/schemas/SafetySetting" + } + }, + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" } } }, - "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", + "McpServer": { "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, + "description": "The name of the MCPServer.", "type": "string" }, - "granteeType": { - "description": "Optional. Immutable. The type of the grantee.", - "type": "string", - "x-enum-descriptions": [ - "The default value. This value is unused.", - "Represents a user. When set, you must provide email_address for the user.", - "Represents a group. When set, you must provide email_address for the group.", - "Represents access to everyone. No extra information is required." - ], - "enum": [ - "GRANTEE_TYPE_UNSPECIFIED", - "USER", - "GROUP", - "EVERYONE" - ] + "streamableHttpTransport": { + "$ref": "#/components/schemas/StreamableHttpTransport", + "description": "A transport that can stream HTTP requests and responses." + } + }, + "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" + }, + "LogprobsResult": { + "description": "Logprobs Result", + "type": "object", + "properties": { + "logProbabilitySum": { + "type": "number", + "description": "Sum of log probabilities for all tokens.", + "format": "float" }, - "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" + "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" + } }, - "role": { - "description": "Required. The role granted by this permission.", - "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." - ], - "enum": [ - "ROLE_UNSPECIFIED", - "OWNER", - "WRITER", - "READER" - ] + "topCandidates": { + "description": "Length = total number of decoding steps.", + "type": "array", + "items": { + "$ref": "#/components/schemas/TopCandidates" + } } } }, - "Content": { - "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.", + "ComputerUse": { + "description": "Computer Use tool type.", "type": "object", "properties": { - "parts": { + "excludedPredefinedFunctions": { + "type": "array", "items": { - "$ref": "#/components/schemas/Part" + "type": "string" }, - "description": "Ordered `Parts` that constitute a single message. Parts may have different MIME types.", - "type": "array" + "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." }, - "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.", + "environment": { + "description": "Required. The environment being operated.", + "x-enum-descriptions": [ + "Defaults to browser.", + "Operates in a web browser." + ], + "enum": [ + "ENVIRONMENT_UNSPECIFIED", + "ENVIRONMENT_BROWSER" + ], "type": "string" } } }, - "CustomMetadata": { - "description": "User provided metadata stored as key-value pairs.", + "ListPermissionsResponse": { "type": "object", "properties": { - "stringValue": { - "description": "The string value of the metadata to store.", - "type": "string" - }, - "numericValue": { - "description": "The numeric value of the metadata to store.", - "type": "number", - "format": "float" - }, - "stringListValue": { - "$ref": "#/components/schemas/StringList", - "description": "The StringList value of the metadata to store." + "permissions": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Permission" + }, + "description": "Returned permissions." }, - "key": { - "description": "Required. The key of the metadata to store.", + "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 `ListPermissions` containing a paginated list of permissions." }, - "VideoMetadata": { + "SpeechConfig": { + "description": "Config for speech generation and transcription.", "type": "object", - "deprecated": true, - "description": "Deprecated: Use `GenerateContentRequest.processing_options` instead. Metadata describes the input video content.", "properties": { - "startOffset": { - "description": "Optional. The start offset of the video.", - "type": "string", - "format": "google-duration" + "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" }, - "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": "double" + "voiceConfig": { + "$ref": "#/components/schemas/VoiceConfig", + "description": "The configuration in case of single-voice output." }, - "endOffset": { - "description": "Optional. The end offset of the video.", - "type": "string", - "format": "google-duration" + "multiSpeakerVoiceConfig": { + "description": "Optional. The configuration for the multi-speaker setup. It is mutually exclusive with the voice_config field.", + "$ref": "#/components/schemas/MultiSpeakerVoiceConfig" } } }, "TransferOwnershipRequest": { - "description": "Request to transfer the ownership of the tuned model.", "type": "object", "properties": { "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." }, - "GoogleAiGenerativelanguageV1betaSegment": { - "description": "Segment of the content.", + "MultiSpeakerVoiceConfig": { "type": "object", "properties": { - "endIndex": { - "description": "End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero.", - "type": "integer", - "format": "int32" - }, - "startIndex": { - "description": "Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero.", - "type": "integer", - "format": "int32" - }, - "text": { - "description": "The text corresponding to the segment from the response.", - "type": "string" - }, - "partIndex": { - "description": "The index of a Part object within its parent Content object.", - "type": "integer", - "format": "int32" + "speakerVoiceConfigs": { + "description": "Required. All the enabled speaker voices.", + "type": "array", + "items": { + "$ref": "#/components/schemas/SpeakerVoiceConfig" + } } - } + }, + "description": "The configuration for the multi-speaker setup." }, - "GroundingChunkStringList": { - "description": "A list of string values.", + "TuningExamples": { + "description": "A set of tuning examples. Can be training or validation data.", "type": "object", "properties": { - "values": { - "description": "The string values of the list.", + "examples": { "type": "array", "items": { - "type": "string" - } + "$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." } } }, - "GroundingPassageId": { - "description": "Identifier for a part within a `GroundingPassage`.", + "ToolCall": { "type": "object", "properties": { - "passageId": { - "description": "Output only. ID of the passage matching the `GenerateAnswerRequest`'s `GroundingPassage.id`.", - "readOnly": true, + "id": { + "description": "Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`.", "type": "string" }, - "partIndex": { - "description": "Output only. Index of the part within the `GenerateAnswerRequest`'s `GroundingPassage.content`.", - "readOnly": true, - "type": "integer", - "format": "int32" - } - } - }, - "InlinedEmbedContentRequest": { - "description": "The request to be processed in the batch.", - "type": "object", - "properties": { - "request": { - "description": "Required. The request to be processed in the batch.", - "$ref": "#/components/schemas/EmbedContentRequest" + "toolType": { + "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." + ], + "enum": [ + "TOOL_TYPE_UNSPECIFIED", + "GOOGLE_SEARCH_WEB", + "GOOGLE_SEARCH_IMAGE", + "URL_CONTEXT", + "GOOGLE_MAPS", + "FILE_SEARCH" + ], + "description": "Required. The type of tool that was called." }, - "metadata": { + "args": { + "description": "Optional. The tool call arguments. Example: {\"arg1\" : \"value1\", \"arg2\" : \"value2\" , ...}", + "type": "object", "additionalProperties": { "description": "Properties of the object." - }, - "description": "Optional. The metadata to be associated with the request.", - "type": "object" + } } - } + }, + "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`." }, "Corpus": { - "description": "A `Corpus` is a collection of `Document`s. A project can create up to 10 corpora.", "type": "object", "properties": { - "updateTime": { - "description": "Output only. The Timestamp of when the `Corpus` was last updated.", + "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" + }, + "name": { "readOnly": true, "type": "string", - "format": "google-datetime" + "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`" }, "createTime": { "description": "Output only. The Timestamp of when the `Corpus` was created.", + "format": "google-datetime", "readOnly": true, - "type": "string", - "format": "google-datetime" + "type": "string" }, - "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`", + "updateTime": { + "description": "Output only. The Timestamp of when the `Corpus` was last updated.", + "format": "google-datetime", "readOnly": true, "type": "string" + } + }, + "description": "A `Corpus` is a collection of `Document`s. A project can create up to 10 corpora." + }, + "SearchTypes": { + "type": "object", + "properties": { + "webSearch": { + "$ref": "#/components/schemas/WebSearch", + "description": "Optional. Enables web search. Only text results are returned." }, - "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" + "imageSearch": { + "$ref": "#/components/schemas/ImageSearch", + "description": "Optional. Enables image search. Image bytes are returned." } - } + }, + "description": "Different types of search that can be enabled on the GoogleSearch tool." }, - "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`.", + "CachedContentUsageMetadata": { "type": "object", "properties": { - "promptFeedback": { - "$ref": "#/components/schemas/PromptFeedback", - "description": "Returns the prompt's feedback related to the content filters." + "totalTokenCount": { + "type": "integer", + "description": "Total number of tokens that the cached content consumes.", + "format": "int32" + } + }, + "description": "Metadata on the usage of the cached content." + }, + "ThinkingConfig": { + "description": "Config for thinking features.", + "type": "object", + "properties": { + "includeThoughts": { + "description": "Indicates whether to include thoughts in the response. If true, thoughts are returned only when available.", + "type": "boolean" }, - "modelVersion": { - "description": "Output only. The model version used to generate the response.", - "readOnly": true, - "type": "string" - }, - "usageMetadata": { - "description": "Output only. Metadata on the generation requests' token usage.", - "readOnly": true, - "$ref": "#/components/schemas/UsageMetadata" + "thinkingBudget": { + "type": "integer", + "description": "The number of thoughts tokens that the model should generate.", + "format": "int32" }, - "responseId": { - "description": "Output only. response_id is used to identify each response.", - "readOnly": true, + "thinkingLevel": { + "description": "Optional. Controls the maximum depth of the model's internal reasoning process before it produces a response. If not specified, the default is HIGH. Recommended for Gemini 3 or later models. Use with earlier models results in an error.", + "x-enum-descriptions": [ + "Default value.", + "Little to no thinking.", + "Low thinking level.", + "Medium thinking level.", + "High thinking level." + ], + "enum": [ + "THINKING_LEVEL_UNSPECIFIED", + "MINIMAL", + "LOW", + "MEDIUM", + "HIGH" + ], "type": "string" - }, - "modelStatus": { - "description": "Output only. The current model status of this model.", - "readOnly": true, - "$ref": "#/components/schemas/ModelStatus" - }, - "candidates": { - "items": { - "$ref": "#/components/schemas/Candidate" - }, - "description": "Candidate responses from the model.", - "type": "array" - } - } - }, - "Dataset": { - "description": "Dataset for training or validation.", - "type": "object", - "properties": { - "examples": { - "$ref": "#/components/schemas/TuningExamples", - "description": "Optional. Inline examples with simple input/output text." } } }, - "GenerateContentRequest": { - "description": "Request to generate a completion from the model.", + "SafetyRating": { "type": "object", "properties": { - "contents": { - "items": { - "$ref": "#/components/schemas/Content" - }, - "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" - }, - "serviceTier": { - "description": "Optional. The service tier of the request.", + "category": { + "enumDeprecated": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + true + ], "type": "string", "x-enum-descriptions": [ - "Default service tier, which is standard.", - "Standard service tier.", - "Flex service tier.", - "Priority service tier." + "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." ], "enum": [ - "unspecified", - "standard", - "flex", - "priority" - ] - }, - "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" - }, - "safetySettings": { - "items": { - "$ref": "#/components/schemas/SafetySetting" - }, - "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 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" - }, - "model": { - "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", - "type": "string" - }, - "generationConfig": { - "description": "Optional. Configuration options for model generation and outputs.", - "$ref": "#/components/schemas/GenerationConfig" + "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" + ], + "description": "Required. The category for this rating." }, - "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}`", + "probability": { + "x-enum-descriptions": [ + "Probability is unspecified.", + "Content has a negligible chance of being unsafe.", + "Content has a low chance of being unsafe.", + "Content has a medium chance of being unsafe.", + "Content has a high chance of being unsafe." + ], + "enum": [ + "HARM_PROBABILITY_UNSPECIFIED", + "NEGLIGIBLE", + "LOW", + "MEDIUM", + "HIGH" + ], + "description": "Required. The probability of harm for this content.", "type": "string" }, - "tools": { - "items": { - "$ref": "#/components/schemas/Tool" - }, - "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" - }, - "store": { - "description": "Optional. Configures the logging behavior for a given request. If set, it takes precedence over the project-level logging config.", + "blocked": { + "description": "Was this content blocked because of this rating?", "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" } - } + }, + "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." }, - "Part": { - "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.", + "RetrievalConfig": { "type": "object", "properties": { - "fileData": { - "$ref": "#/components/schemas/FileData", - "description": "URI based data." - }, - "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" - }, - "mediaResolution": { - "$ref": "#/components/schemas/MediaResolution", - "description": "Optional. Media resolution for the input media." - }, - "executableCode": { - "description": "Code generated by the model that is meant to be executed.", - "$ref": "#/components/schemas/ExecutableCode" - }, - "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" - }, - "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" - }, - "thought": { - "description": "Optional. Indicates if the part is thought from the model.", - "type": "boolean" - }, - "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." - }, - "videoMetadata": { - "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" - }, - "inlineData": { - "description": "Inline media bytes.", - "$ref": "#/components/schemas/Blob" - }, - "text": { - "description": "Inline text.", + "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" }, - "codeExecutionResult": { - "$ref": "#/components/schemas/CodeExecutionResult", - "description": "Result of executing the `ExecutableCode`." - }, - "thoughtSignature": { - "description": "Optional. An opaque signature for the thought so it can be reused in subsequent requests.", - "type": "string", - "format": "byte" - }, - "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" + "latLng": { + "description": "Optional. The location of the user.", + "$ref": "#/components/schemas/LatLng" } - } + }, + "description": "Retrieval config." }, - "EmbeddingUsageMetadata": { - "description": "Metadata on the usage of the embedding request.", + "CodeExecution": { + "type": "object", + "properties": {}, + "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." + }, + "InlinedRequest": { "type": "object", "properties": { - "promptTokenDetails": { - "description": "Output only. List of modalities that were processed in the request input.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" + "metadata": { + "description": "Optional. The metadata to be associated with the request.", + "type": "object", + "additionalProperties": { + "description": "Properties of the object." } }, - "promptTokenCount": { - "description": "Output only. Number of tokens in the prompt.", - "readOnly": true, - "type": "integer", - "format": "int32" + "request": { + "$ref": "#/components/schemas/GenerateContentRequest", + "description": "Required. The request to be processed in the batch." } - } + }, + "description": "The request to be processed in the batch." }, - "ListGeneratedFilesResponse": { - "description": "Response for `ListGeneratedFiles`.", + "UrlContextMetadata": { + "description": "Metadata related to url context retrieval tool.", "type": "object", "properties": { - "generatedFiles": { - "description": "The list of `GeneratedFile`s.", + "urlMetadata": { + "description": "List of url context.", "type": "array", "items": { - "$ref": "#/components/schemas/GeneratedFile" + "$ref": "#/components/schemas/UrlMetadata" } - }, - "nextPageToken": { - "description": "A token that can be sent as a `page_token` into a subsequent `ListGeneratedFiles` call.", - "type": "string" } } }, - "ChunkingConfig": { - "description": "Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto", + "GenerationConfig": { "type": "object", "properties": { - "whiteSpaceConfig": { - "$ref": "#/components/schemas/WhiteSpaceConfig", - "description": "White space chunking configuration." - } - } - }, - "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", - "properties": { - "streamableHttpTransport": { - "$ref": "#/components/schemas/StreamableHttpTransport", - "description": "A transport that can stream HTTP requests and responses." - }, - "name": { - "description": "The name of the MCPServer.", - "type": "string" - } - } - }, - "Hyperparameters": { - "description": "Hyperparameters controlling the tuning process. Read more at https://ai.google.dev/docs/model_tuning_guidance", - "type": "object", - "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" - }, - "epochCount": { - "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", - "format": "int32" - }, - "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" - }, - "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" - } - } - }, - "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": {} - }, - "ListDocumentsResponse": { - "description": "Response from `ListDocuments` containing a paginated list of `Document`s. The `Document`s are sorted by ascending `document.create_time`.", - "type": "object", - "properties": { - "documents": { - "items": { - "$ref": "#/components/schemas/Document" - }, - "description": "The returned `Document`s.", - "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" - } - } - }, - "CodeExecutionResult": { - "description": "Result of executing the `ExecutableCode`. Generated only when the `CodeExecution` tool is used.", - "type": "object", - "properties": { - "id": { - "description": "Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the corresponding `ExecutableCode` has an id.", - "type": "string" - }, - "outcome": { - "description": "Required. Outcome of the code execution.", - "type": "string", - "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." - ], - "enum": [ - "OUTCOME_UNSPECIFIED", - "OUTCOME_OK", - "OUTCOME_FAILED", - "OUTCOME_DEADLINE_EXCEEDED" - ] - }, - "output": { - "description": "Optional. Contains stdout when code execution is successful, stderr or other description otherwise.", - "type": "string" - } - } - }, - "Image": { - "description": "Chunk from image search.", - "type": "object", - "properties": { - "title": { - "description": "The title of the web page that the image is from.", - "type": "string" - }, - "domain": { - "description": "The root domain of the web page that the image is from, e.g. \"example.com\".", - "type": "string" - }, - "imageUri": { - "description": "The image asset URL.", - "type": "string" - }, - "sourceUri": { - "description": "The web page URI for attribution.", - "type": "string" - } - } - }, - "CountTokensResponse": { - "description": "A response from `CountTokens`. It returns the model's `token_count` for the `prompt`.", - "type": "object", - "properties": { - "cacheTokensDetails": { - "description": "Output only. List of modalities that were processed in the cached content.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } - }, - "totalTokens": { - "description": "The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative.", - "type": "integer", - "format": "int32" - }, - "cachedContentTokenCount": { - "description": "Number of tokens in the cached part of the prompt (the cached content).", - "type": "integer", - "format": "int32" - }, - "promptTokensDetails": { - "description": "Output only. List of modalities that were processed in the request input.", - "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/ModalityTokenCount" - } - } - } - }, - "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" - } - } - }, - "PrebuiltVoiceConfig": { - "description": "The configuration for the prebuilt speaker to use.", - "type": "object", - "properties": { - "voiceName": { - "description": "The name of the preset voice to use.", - "type": "string" - } - } - }, - "LogprobsResult": { - "description": "Logprobs Result", - "type": "object", - "properties": { - "topCandidates": { - "description": "Length = total number of decoding steps.", - "type": "array", - "items": { - "$ref": "#/components/schemas/TopCandidates" - } - }, - "chosenCandidates": { - "items": { - "$ref": "#/components/schemas/LogprobsResultCandidate" - }, - "description": "Length = total number of decoding steps. The chosen candidates may or may not be in top_candidates.", - "type": "array" - }, - "logProbabilitySum": { - "description": "Sum of log probabilities for all tokens.", - "type": "number", - "format": "float" - } - } - }, - "TuningExamples": { - "description": "A set of tuning examples. Can be training or validation data.", - "type": "object", - "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" - } - } - } - }, - "ComputerUse": { - "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": { - "description": "Required. The environment being operated.", - "type": "string", - "x-enum-descriptions": [ - "Defaults to browser.", - "Operates in a web browser." - ], - "enum": [ - "ENVIRONMENT_UNSPECIFIED", - "ENVIRONMENT_BROWSER" - ] - } - } - }, - "SearchEntryPoint": { - "description": "Google search entry point.", - "type": "object", - "properties": { - "renderedContent": { - "description": "Optional. Web content snippet that can be embedded in a web page or an app webview.", - "type": "string" - }, - "sdkBlob": { - "description": "Optional. Base64 encoded JSON representing array of tuple.", - "type": "string", - "format": "byte" - } - } - }, - "GroundingChunk": { - "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", - "properties": { - "web": { - "$ref": "#/components/schemas/Web", - "description": "Grounding chunk from the web." - }, - "maps": { - "description": "Optional. Grounding chunk from Google Maps.", - "$ref": "#/components/schemas/Maps" - }, - "image": { - "description": "Optional. Grounding chunk from image search.", - "$ref": "#/components/schemas/Image" - }, - "retrievedContext": { - "$ref": "#/components/schemas/RetrievedContext", - "description": "Optional. Grounding chunk from context retrieved by the file search tool." - } - } - }, - "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", - "properties": { - "code": { - "description": "Required. The code to be executed.", - "type": "string" - }, - "id": { - "description": "Optional. Unique identifier of the `ExecutableCode` part. The server returns the `CodeExecutionResult` with the matching `id`.", - "type": "string" - }, - "language": { - "description": "Required. Programming language of the `code`.", - "type": "string", - "x-enum-descriptions": [ - "Unspecified language. This value should not be used.", - "Python >= 3.10, with numpy and simpy available. Python is the default language." - ], - "enum": [ - "LANGUAGE_UNSPECIFIED", - "PYTHON" - ] - } - } - }, - "StreamableHttpTransport": { - "description": "A transport that can stream HTTP requests and responses. Next ID: 6", - "type": "object", - "properties": { - "timeout": { - "description": "HTTP timeout for regular operations.", - "type": "string", - "format": "google-duration" - }, - "headers": { - "additionalProperties": { - "type": "string" - }, - "description": "Optional: Fields for authentication headers, timeouts, etc., if needed.", - "type": "object" - }, - "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": { - "description": "Timeout for SSE read operations.", - "type": "string", - "format": "google-duration" - } - } - }, - "ListFileSearchStoresResponse": { - "description": "Response from `ListFileSearchStores` containing a paginated list of `FileSearchStores`. The results are sorted by ascending `file_search_store.create_time`.", - "type": "object", - "properties": { - "fileSearchStores": { - "items": { - "$ref": "#/components/schemas/FileSearchStore" - }, - "description": "The returned rag_stores.", - "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" - } - } - }, - "TuningSnapshot": { - "description": "Record for a single tuning step.", - "type": "object", - "properties": { - "step": { - "description": "Output only. The tuning step.", - "readOnly": true, - "type": "integer", - "format": "int32" - }, - "computeTime": { - "description": "Output only. The timestamp when this metric was computed.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "meanLoss": { - "description": "Output only. The mean loss of the training examples for this step.", - "readOnly": true, - "type": "number", - "format": "float" - }, - "epoch": { - "description": "Output only. The epoch this step was part of.", - "readOnly": true, - "type": "integer", - "format": "int32" - } - } - }, - "EmbedContentRequest": { - "description": "Request containing the `Content` for the model to embed.", - "type": "object", - "properties": { - "embedContentConfig": { - "description": "Optional. Configuration for the EmbedContent request.", - "$ref": "#/components/schemas/EmbedContentConfig" - }, - "taskType": { - "type": "string", - "deprecated": true, - "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`).", - "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." - ], - "enum": [ - "TASK_TYPE_UNSPECIFIED", - "RETRIEVAL_QUERY", - "RETRIEVAL_DOCUMENT", - "SEMANTIC_SIMILARITY", - "CLASSIFICATION", - "CLUSTERING", - "QUESTION_ANSWERING", - "FACT_VERIFICATION", - "CODE_RETRIEVAL_QUERY" - ] - }, - "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" - }, - "content": { - "description": "Required. The content to embed. Only the `parts.text` fields will be counted.", - "$ref": "#/components/schemas/Content" - }, - "outputDimensionality": { - "deprecated": true, - "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", - "format": "int32" - }, - "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" - } - } - }, - "GenerationConfig": { - "description": "Configuration options for model generation and outputs. Not all parameters are configurable for every model.", - "type": "object", - "properties": { - "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.", - "type": "integer", - "format": "int32" - }, - "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" - }, - "frequencyPenalty": { - "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", - "format": "float" - }, - "speechConfig": { - "description": "Optional. The speech generation config.", - "$ref": "#/components/schemas/SpeechConfig" - }, - "logprobs": { - "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", - "format": "int32" - }, - "responseSchema": { - "$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." - }, "seed": { "description": "Optional. Seed used in decoding. If not set, the request uses a randomly generated seed.", - "type": "integer", - "format": "int32" - }, - "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" + "format": "int32", + "type": "integer" }, - "responseJsonSchema": { - "description": "Optional. An internal detail. Use `responseJsonSchema` rather than this field." + "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" }, - "candidateCount": { - "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", - "format": "int32" + "topP": { + "type": "number", + "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.", + "format": "float" }, "enableEnhancedCivicAnswers": { "description": "Optional. Enables enhanced civic answers. It may not be available for all models.", "type": "boolean" }, "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" - }, - "responseLogprobs": { - "description": "Optional. If true, export the logprobs results in response.", - "type": "boolean" - }, - "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", + "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].", "format": "float" }, - "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" - }, "stopSequences": { "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", @@ -5537,11 +5079,36 @@ "type": "string" } }, + "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" + }, + "responseSchema": { + "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.", + "$ref": "#/components/schemas/Schema" + }, "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." + "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" + }, + "logprobs": { + "type": "integer", + "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].", + "format": "int32" + }, + "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.", + "format": "int32", + "type": "integer" + }, + "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.", + "format": "int32", + "type": "integer" }, "responseModalities": { + "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", "items": { "type": "string", "x-enum-descriptions": [ @@ -5558,18 +5125,13 @@ "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" + } }, - "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." }, "mediaResolution": { - "description": "Optional. If specified, the media resolution specified will be used.", - "type": "string", "x-enum-descriptions": [ "Media resolution has not been set.", "Media resolution set to low (64 tokens).", @@ -5581,50 +5143,281 @@ "MEDIA_RESOLUTION_LOW", "MEDIA_RESOLUTION_MEDIUM", "MEDIA_RESOLUTION_HIGH" - ] + ], + "description": "Optional. If specified, the media resolution specified will be used.", + "type": "string" + }, + "frequencyPenalty": { + "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.", + "format": "float", + "type": "number" + }, + "responseLogprobs": { + "description": "Optional. If true, export the logprobs results in response.", + "type": "boolean" + }, + "candidateCount": { + "type": "integer", + "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)", + "format": "int32" + }, + "responseJsonSchema": { + "description": "Optional. An internal detail. Use `responseJsonSchema` rather than this field." + }, + "presencePenalty": { + "type": "number", + "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.", + "format": "float" } - } + }, + "description": "Configuration options for model generation and outputs. Not all parameters are configurable for every model." }, - "RegisterFilesRequest": { - "description": "Request for `RegisterFiles`.", + "RetrievalMetadata": { "type": "object", "properties": { - "uris": { - "description": "Required. The Google Cloud Storage URIs to register. Example: `gs://bucket/object`.", + "googleSearchDynamicRetrievalScore": { + "type": "number", + "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.", + "format": "float" + } + }, + "description": "Metadata related to retrieval in the grounding flow." + }, + "CachedContent": { + "type": "object", + "properties": { + "expireTime": { + "type": "string", + "description": "Timestamp in UTC of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input.", + "format": "google-datetime" + }, + "updateTime": { + "description": "Output only. When the cache entry was last updated in UTC time.", + "format": "google-datetime", + "readOnly": true, + "type": "string" + }, + "usageMetadata": { + "readOnly": true, + "$ref": "#/components/schemas/CachedContentUsageMetadata", + "description": "Output only. Metadata on the usage of the cached content." + }, + "systemInstruction": { + "$ref": "#/components/schemas/Content", + "description": "Optional. Input only. Immutable. Developer set system instruction. Currently text only." + }, + "displayName": { + "description": "Optional. Immutable. The user-generated meaningful display name of the cached content. Maximum 128 Unicode characters.", + "type": "string" + }, + "contents": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Content" + }, + "description": "Optional. Input only. Immutable. The content to cache." + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Output only. Identifier. The resource name referring to the cached content. Format: `cachedContents/{id}`" + }, + "model": { + "description": "Required. Immutable. The name of the `Model` to use for cached content Format: `models/{model}`", + "type": "string" + }, + "ttl": { + "description": "Input only. New TTL for this resource, input only.", + "format": "google-duration", + "type": "string" + }, + "tools": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Tool" + }, + "description": "Optional. Input only. Immutable. A list of `Tools` the model may use to generate the next response" + }, + "toolConfig": { + "description": "Optional. Input only. Immutable. Tool config. This config is shared for all tools.", + "$ref": "#/components/schemas/ToolConfig" + }, + "createTime": { + "readOnly": true, + "type": "string", + "description": "Output only. Creation time of the cache entry.", + "format": "google-datetime" + } + }, + "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." + }, + "Candidate": { + "description": "A response candidate generated from the model.", + "type": "object", + "properties": { + "avgLogprobs": { + "readOnly": true, + "type": "number", + "description": "Output only. Average log probability score of the candidate.", + "format": "double" + }, + "logprobsResult": { + "$ref": "#/components/schemas/LogprobsResult", + "readOnly": true, + "description": "Output only. Log-likelihood scores for the response tokens and top tokens" + }, + "tokenCount": { + "description": "Output only. Token count for this candidate.", + "format": "int32", + "readOnly": true, + "type": "integer" + }, + "urlContextMetadata": { + "$ref": "#/components/schemas/UrlContextMetadata", + "readOnly": true, + "description": "Output only. Metadata related to url context retrieval tool." + }, + "citationMetadata": { + "$ref": "#/components/schemas/CitationMetadata", + "readOnly": true, + "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." + }, + "finishReason": { + "description": "Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.", + "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." + ], + "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" + ], + "readOnly": true, + "type": "string" + }, + "groundingMetadata": { + "description": "Output only. Grounding metadata for the candidate. This field is populated for `GenerateContent` calls.", + "readOnly": true, + "$ref": "#/components/schemas/GroundingMetadata" + }, + "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" + }, + "index": { + "readOnly": true, + "type": "integer", + "description": "Output only. Index of the candidate in the list of response candidates.", + "format": "int32" + }, + "content": { + "$ref": "#/components/schemas/Content", + "readOnly": true, + "description": "Output only. Generated content returned from the model." + }, + "safetyRatings": { + "description": "List of ratings for the safety of a response candidate. There is at most one rating per category.", + "type": "array", + "items": { + "$ref": "#/components/schemas/SafetyRating" + } + }, + "groundingAttributions": { + "description": "Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.", + "readOnly": true, "type": "array", "items": { - "type": "string" + "$ref": "#/components/schemas/GroundingAttribution" } } } }, - "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.", + "InlinedEmbedContentResponse": { + "description": "The response to a single request in the batch.", "type": "object", "properties": { - "latitude": { - "description": "The latitude in degrees. It must be in the range [-90.0, +90.0].", - "type": "number", - "format": "double" + "response": { + "$ref": "#/components/schemas/EmbedContentResponse", + "readOnly": true, + "description": "Output only. The response to the request." }, - "longitude": { - "description": "The longitude in degrees. It must be in the range [-180.0, +180.0].", - "type": "number", - "format": "double" + "error": { + "readOnly": true, + "$ref": "#/components/schemas/Status", + "description": "Output only. The error encountered while processing the request." + }, + "metadata": { + "readOnly": true, + "type": "object", + "additionalProperties": { + "description": "Properties of the object." + }, + "description": "Output only. The metadata associated with the request." } } }, - "WebSearch": { - "description": "Standard web search for grounding and related configurations.", - "type": "object", - "properties": {} - }, "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": { + "threshold": { + "description": "Required. Controls the probability threshold at which harm is blocked.", + "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." + ], + "enum": [ + "HARM_BLOCK_THRESHOLD_UNSPECIFIED", + "BLOCK_LOW_AND_ABOVE", + "BLOCK_MEDIUM_AND_ABOVE", + "BLOCK_ONLY_HIGH", + "BLOCK_NONE", + "OFF" + ], + "type": "string" + }, "category": { - "type": "string", "description": "Required. The category for this setting.", "x-enum-descriptions": [ "Category is unspecified.", @@ -5640,6 +5433,20 @@ "**Gemini** - Dangerous content.", "**Gemini** - Content that may be used to harm civic integrity. DEPRECATED: use enable_enhanced_civic_answers instead." ], + "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" + ], "enumDeprecated": [ false, false, @@ -5654,1014 +5461,1207 @@ false, true ], - "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" - ] + "type": "string" + } + } + }, + "EmbedContentRequest": { + "type": "object", + "properties": { + "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" }, - "threshold": { - "description": "Required. Controls the probability threshold at which harm is blocked.", + "title": { + "deprecated": true, + "type": "string", + "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." + }, + "embedContentConfig": { + "$ref": "#/components/schemas/EmbedContentConfig", + "description": "Optional. Configuration for the EmbedContent request." + }, + "content": { + "$ref": "#/components/schemas/Content", + "description": "Required. The content to embed. Only the `parts.text` fields will be counted." + }, + "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`).", + "format": "int32", + "deprecated": true, + "type": "integer" + }, + "taskType": { + "deprecated": true, "type": "string", "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." + "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." ], "enum": [ - "HARM_BLOCK_THRESHOLD_UNSPECIFIED", - "BLOCK_LOW_AND_ABOVE", - "BLOCK_MEDIUM_AND_ABOVE", - "BLOCK_ONLY_HIGH", - "BLOCK_NONE", - "OFF" - ] + "TASK_TYPE_UNSPECIFIED", + "RETRIEVAL_QUERY", + "RETRIEVAL_DOCUMENT", + "SEMANTIC_SIMILARITY", + "CLASSIFICATION", + "CLUSTERING", + "QUESTION_ANSWERING", + "FACT_VERIFICATION", + "CODE_RETRIEVAL_QUERY" + ], + "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`)." + } + }, + "description": "Request containing the `Content` for the model to embed." + }, + "SearchEntryPoint": { + "description": "Google search entry point.", + "type": "object", + "properties": { + "renderedContent": { + "description": "Optional. Web content snippet that can be embedded in a web page or an app webview.", + "type": "string" + }, + "sdkBlob": { + "type": "string", + "description": "Optional. Base64 encoded JSON representing array of tuple.", + "format": "byte" } } }, - "LogprobsResultCandidate": { - "description": "Candidate for the logprobs token and score.", + "InputConfig": { "type": "object", "properties": { - "logProbability": { - "description": "The candidate's log probability.", - "type": "number", - "format": "float" + "requests": { + "description": "The requests to be processed in the batch.", + "$ref": "#/components/schemas/InlinedRequests" }, - "token": { - "description": "The candidate\u2019s token string value.", + "fileName": { + "description": "The name of the `File` containing the input requests.", + "type": "string" + } + }, + "description": "Configures the input to the batch request." + }, + "ChunkingConfig": { + "type": "object", + "properties": { + "whiteSpaceConfig": { + "description": "White space chunking configuration.", + "$ref": "#/components/schemas/WhiteSpaceConfig" + } + }, + "description": "Parameters for telling the service how to chunk the file. inspired by google3/cloud/ai/platform/extension/lib/retrieval/config/chunker_config.proto" + }, + "AsyncBatchEmbedContentRequest": { + "type": "object", + "properties": { + "batch": { + "description": "Required. The batch to create.", + "$ref": "#/components/schemas/EmbedContentBatch" + } + }, + "description": "Request for an `AsyncBatchEmbedContent` operation." + }, + "TunedModelSource": { + "type": "object", + "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" }, - "tokenId": { - "description": "The candidate\u2019s token id value.", - "type": "integer", - "format": "int32" + "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": "Tuned model as a source for training a new model." }, - "FunctionCallingConfig": { - "description": "Configuration for specifying function calling behavior.", + "Operation": { "type": "object", "properties": { - "mode": { - "description": "Optional. Specifies the mode in which function calling should execute. If unspecified, the default value will be set to AUTO.", - "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\"." - ], - "enum": [ - "MODE_UNSPECIFIED", - "AUTO", - "ANY", - "NONE", - "VALIDATED" - ] + "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" + }, + "metadata": { + "type": "object", + "additionalProperties": { + "description": "Properties of the object. Contains field @type with type URL." + }, + "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." + }, + "error": { + "$ref": "#/components/schemas/Status", + "description": "The error result of the operation in case of failure or cancellation." + }, + "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." + } + }, + "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" + } + }, + "description": "This resource represents a long-running operation that is the result of a network API call." + }, + "EmbeddingUsageMetadata": { + "description": "Metadata on the usage of the embedding request.", + "type": "object", + "properties": { + "promptTokenCount": { + "description": "Output only. Number of tokens in the prompt.", + "format": "int32", + "readOnly": true, + "type": "integer" }, - "allowedFunctionNames": { + "promptTokenDetails": { + "readOnly": true, + "type": "array", "items": { - "type": "string" + "$ref": "#/components/schemas/ModalityTokenCount" }, - "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" + "description": "Output only. List of modalities that were processed in the request input." } } }, - "CachedContentUsageMetadata": { - "description": "Metadata on the usage of the cached content.", + "TuningExample": { "type": "object", "properties": { - "totalTokenCount": { - "description": "Total number of tokens that the cached content consumes.", - "type": "integer", - "format": "int32" + "output": { + "description": "Required. The expected model output.", + "type": "string" + }, + "textInput": { + "description": "Optional. Text model input.", + "type": "string" } - } + }, + "description": "A single example for tuning." }, - "GoogleSearchRetrieval": { - "description": "Tool to retrieve public web data for grounding, powered by Google.", + "GoogleAiGenerativelanguageV1betaGroundingSupport": { + "description": "Grounding support.", "type": "object", "properties": { - "dynamicRetrievalConfig": { - "$ref": "#/components/schemas/DynamicRetrievalConfig", - "description": "Specifies the dynamic retrieval configuration for the given source." + "groundingChunkIndices": { + "type": "array", + "items": { + "type": "integer", + "format": "int32" + }, + "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": { + "type": "array", + "items": { + "type": "number", + "format": "float" + }, + "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." + }, + "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, + "type": "array", + "items": { + "type": "integer", + "format": "int32" + } + }, + "segment": { + "description": "Segment of the content this support belongs to.", + "$ref": "#/components/schemas/GoogleAiGenerativelanguageV1betaSegment" } } }, - "InlinedRequests": { - "description": "The requests to be processed in the batch if provided as part of the batch creation request.", + "EmbedContentConfig": { + "description": "Configurations for the EmbedContent request.", "type": "object", "properties": { - "requests": { - "items": { - "$ref": "#/components/schemas/InlinedRequest" - }, - "description": "Required. The requests to be processed in the batch.", - "type": "array" + "taskType": { + "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.", + "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." + ], + "enum": [ + "TASK_TYPE_UNSPECIFIED", + "RETRIEVAL_QUERY", + "RETRIEVAL_DOCUMENT", + "SEMANTIC_SIMILARITY", + "CLASSIFICATION", + "CLUSTERING", + "QUESTION_ANSWERING", + "FACT_VERIFICATION", + "CODE_RETRIEVAL_QUERY" + ], + "description": "Optional. The task type of the embedding." + }, + "audioTrackExtraction": { + "description": "Optional. Whether to extract audio from video content.", + "type": "boolean" + }, + "autoTruncate": { + "description": "Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length.", + "type": "boolean" + }, + "outputDimensionality": { + "type": "integer", + "description": "Optional. Reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end.", + "format": "int32" + }, + "title": { + "description": "Optional. The title for the text.", + "type": "string" + }, + "documentOcr": { + "description": "Optional. Whether to enable OCR for document content.", + "type": "boolean" } } }, - "ListOperationsResponse": { - "description": "The response message for Operations.ListOperations.", + "CountTokensResponse": { + "description": "A response from `CountTokens`. It returns the model's `token_count` for the `prompt`.", "type": "object", "properties": { - "operations": { - "description": "A list of operations that matches the specified filter in the request.", + "totalTokens": { + "description": "The number of tokens that the `Model` tokenizes the `prompt` into. Always non-negative.", + "format": "int32", + "type": "integer" + }, + "promptTokensDetails": { + "description": "Output only. List of modalities that were processed in the request input.", + "readOnly": true, "type": "array", "items": { - "$ref": "#/components/schemas/Operation" + "$ref": "#/components/schemas/ModalityTokenCount" } }, - "nextPageToken": { - "description": "The standard List next-page token.", - "type": "string" + "cachedContentTokenCount": { + "type": "integer", + "description": "Number of tokens in the cached part of the prompt (the cached content).", + "format": "int32" }, - "unreachable": { - "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.", + "cacheTokensDetails": { + "readOnly": true, "type": "array", "items": { - "type": "string" - } + "$ref": "#/components/schemas/ModalityTokenCount" + }, + "description": "Output only. List of modalities that were processed in the cached content." } } }, - "InlinedEmbedContentResponses": { - "description": "The responses to the requests in the batch.", + "BatchEmbedContentsResponse": { "type": "object", "properties": { - "inlinedResponses": { + "embeddings": { + "readOnly": true, + "type": "array", "items": { - "$ref": "#/components/schemas/InlinedEmbedContentResponse" + "$ref": "#/components/schemas/ContentEmbedding" }, - "description": "Output only. The responses to the requests in the batch.", + "description": "Output only. The embeddings for each request, in the same order as provided in the batch request." + }, + "usageMetadata": { + "$ref": "#/components/schemas/EmbeddingUsageMetadata", "readOnly": true, - "type": "array" + "description": "Output only. The usage metadata for the request." } - } + }, + "description": "The response to a `BatchEmbedContentsRequest`." }, - "Document": { - "description": "A `Document` is a collection of `Chunk`s.", + "GenerateContentBatchOutput": { + "description": "The output of a batch request. This is returned in the `BatchGenerateContentResponse` or the `GenerateContentBatch.output` field.", "type": "object", "properties": { - "sizeBytes": { - "description": "Output only. The size of raw bytes ingested into the Document.", + "responsesFile": { "readOnly": true, "type": "string", - "format": "int64" + "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." }, - "updateTime": { - "description": "Output only. The Timestamp of when the `Document` was last updated.", + "inlinedResponses": { + "$ref": "#/components/schemas/InlinedResponses", "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "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\"", + "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." + } + } + }, + "FunctionDeclaration": { + "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", + "properties": { + "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" }, - "mimeType": { - "description": "Output only. The mime type of the Document.", - "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" }, - "state": { - "description": "Output only. Current state of the `Document`.", + "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" + }, + "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`." + }, + "behavior": { + "description": "Optional. Specifies the function Behavior. Currently only supported by the BidiGenerateContent method.", "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." + "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." ], "enum": [ - "STATE_UNSPECIFIED", - "STATE_PENDING", - "STATE_ACTIVE", - "STATE_FAILED" + "UNSPECIFIED", + "BLOCKING", + "NON_BLOCKING" ], - "readOnly": true, "type": "string" }, - "customMetadata": { - "description": "Optional. User provided custom metadata stored as key-value pairs used for querying. A `Document` can have a maximum of 20 `CustomMetadata`.", + "description": { + "description": "Required. A brief description of the function.", + "type": "string" + } + } + }, + "ListTunedModelsResponse": { + "description": "Response from `ListTunedModels` containing a paginated list of Models.", + "type": "object", + "properties": { + "tunedModels": { "type": "array", "items": { - "$ref": "#/components/schemas/CustomMetadata" - } - }, - "createTime": { - "description": "Output only. The Timestamp of when the `Document` was created.", - "readOnly": true, - "type": "string", - "format": "google-datetime" + "$ref": "#/components/schemas/TunedModel" + }, + "description": "The returned Models." }, - "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`", + "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" } } }, - "ToolResponse": { - "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`.", + "ToolConfig": { "type": "object", "properties": { - "id": { - "description": "Optional. The identifier of the tool call this response is for.", - "type": "string" + "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" + }, + "functionCallingConfig": { + "$ref": "#/components/schemas/FunctionCallingConfig", + "description": "Optional. Function calling config." + } + }, + "description": "The Tool configuration containing parameters for specifying `Tool` use in the request." + }, + "CustomLongRunningOperation": { + "type": "object", + "properties": { + "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" }, - "toolType": { - "description": "Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`.", - "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." - ], - "enum": [ - "TOOL_TYPE_UNSPECIFIED", - "GOOGLE_SEARCH_WEB", - "GOOGLE_SEARCH_IMAGE", - "URL_CONTEXT", - "GOOGLE_MAPS", - "FILE_SEARCH" - ] + "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." + } + }, + "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" }, "response": { + "type": "object", "additionalProperties": { - "description": "Properties of the object." + "description": "Properties of the object. Contains field @type with type URL." }, - "description": "Optional. The tool response.", - "type": "object" + "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`." } } }, - "GroundingAttribution": { - "description": "Attribution for a source that contributed to an answer.", + "StringList": { "type": "object", "properties": { - "sourceId": { - "$ref": "#/components/schemas/AttributionSourceId", - "description": "Output only. Identifier for the source contributing to this attribution.", - "readOnly": true - }, - "content": { - "$ref": "#/components/schemas/Content", - "description": "Grounding source content that makes up this attribution." + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "The string values of the metadata to store." } - } + }, + "description": "User provided string values assigned to a single metadata key." }, - "InputEmbedContentConfig": { - "description": "Configures the input to the batch request.", + "ImportFileRequest": { + "description": "Request for `ImportFile` to import a File API file with a `FileSearchStore`.", "type": "object", "properties": { + "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" + }, "fileName": { - "description": "The name of the `File` containing the input requests.", + "description": "Required. The name of the `File` to import. Example: `files/abc-123`", "type": "string" }, - "requests": { - "description": "The requests to be processed in the batch.", - "$ref": "#/components/schemas/InlinedEmbedContentRequests" + "customMetadata": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CustomMetadata" + }, + "description": "Custom metadata to be associated with the file." } } }, - "Blob": { - "description": "Raw media bytes. Text should not be sent as raw bytes, use the 'text' field.", + "Empty": { + "type": "object", + "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); }" + }, + "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": { - "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). //", + "retirementTime": { + "description": "The time at which the model will be retired.", + "format": "google-datetime", "type": "string" }, - "data": { - "description": "Raw bytes for media formats.", + "modelStage": { + "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." + ], + "enum": [ + "MODEL_STAGE_UNSPECIFIED", + "UNSTABLE_EXPERIMENTAL", + "EXPERIMENTAL", + "PREVIEW", + "STABLE", + "LEGACY", + "DEPRECATED", + "RETIRED" + ], + "description": "The stage of the underlying model.", "type": "string", - "format": "byte" + "enumDeprecated": [ + false, + true, + false, + false, + false, + false, + true, + false + ] + }, + "message": { + "description": "A message explaining the model status.", + "type": "string" } } }, - "AsyncBatchEmbedContentRequest": { - "description": "Request for an `AsyncBatchEmbedContent` operation.", + "Interval": { "type": "object", "properties": { - "batch": { - "$ref": "#/components/schemas/EmbedContentBatch", - "description": "Required. The batch to create." + "endTime": { + "type": "string", + "description": "Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.", + "format": "google-datetime" + }, + "startTime": { + "type": "string", + "description": "Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.", + "format": "google-datetime" } - } + }, + "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": { - "description": "User provided metadata about the GroundingFact.", + "ListFilesResponse": { "type": "object", "properties": { - "stringListValue": { - "$ref": "#/components/schemas/GroundingChunkStringList", - "description": "Optional. A list of string values for the metadata." - }, - "key": { - "description": "The key of the metadata.", - "type": "string" + "files": { + "description": "The list of `File`s.", + "type": "array", + "items": { + "$ref": "#/components/schemas/File" + } }, - "stringValue": { - "description": "Optional. The string value of the metadata.", + "nextPageToken": { + "description": "A token that can be sent as a `page_token` into a subsequent `ListFiles` call.", "type": "string" - }, - "numericValue": { - "description": "Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used.", - "type": "number", - "format": "float" } - } + }, + "description": "Response for `ListFiles`." }, - "Model": { - "description": "Information about a Generative Language Model.", + "TuningSnapshot": { "type": "object", "properties": { - "inputTokenLimit": { - "description": "Maximum number of input tokens allowed for this model.", - "type": "integer", - "format": "int32" - }, - "outputTokenLimit": { - "description": "Maximum number of output tokens available for this model.", - "type": "integer", - "format": "int32" - }, - "version": { - "description": "Required. The version number of the model. This represents the major version (`1.0` or `1.5`)", + "computeTime": { + "description": "Output only. The timestamp when this metric was computed.", + "format": "google-datetime", + "readOnly": true, "type": "string" }, - "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.", + "epoch": { + "readOnly": true, "type": "integer", + "description": "Output only. The epoch this step was part of.", "format": "int32" }, - "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" - }, - "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" - }, - "baseModelId": { - "description": "Required. The name of the base model, pass this to the generation request. Examples: * `gemini-1.5-flash`", - "type": "string" - }, - "description": { - "description": "A short description of the model.", - "type": "string" - }, - "maxTemperature": { - "description": "The maximum temperature this model can use.", - "type": "number", - "format": "float" - }, - "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" - }, - "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" + "step": { + "description": "Output only. The tuning step.", + "format": "int32", + "readOnly": true, + "type": "integer" }, - "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" + "meanLoss": { + "description": "Output only. The mean loss of the training examples for this step.", + "format": "float", + "readOnly": true, + "type": "number" } - } + }, + "description": "Record for a single tuning step." }, "FileSearchStore": { - "description": "A `FileSearchStore` is a collection of `Document`s.", "type": "object", "properties": { - "updateTime": { - "description": "Output only. The Timestamp of when the `FileSearchStore` was last updated.", - "readOnly": true, - "type": "string", - "format": "google-datetime" - }, - "sizeBytes": { - "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", - "format": "int64" - }, "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" }, - "createTime": { - "description": "Output only. The Timestamp of when the `FileSearchStore` was created.", + "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." + }, + "updateTime": { "readOnly": true, "type": "string", + "description": "Output only. The Timestamp of when the `FileSearchStore` was last updated.", "format": "google-datetime" }, - "activeDocumentsCount": { - "description": "Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.", + "pendingDocumentsCount": { "readOnly": true, "type": "string", + "description": "Output only. The number of documents in the `FileSearchStore` that are being processed.", "format": "int64" }, - "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.", + "activeDocumentsCount": { + "description": "Output only. The number of documents in the `FileSearchStore` that are active and ready for retrieval.", + "format": "int64", "readOnly": true, "type": "string" - }, - "pendingDocumentsCount": { - "description": "Output only. The number of documents in the `FileSearchStore` that are being processed.", + }, + "sizeBytes": { "readOnly": true, "type": "string", + "description": "Output only. The size of raw bytes ingested into the `FileSearchStore`. This is the total size of all the documents in the `FileSearchStore`.", "format": "int64" }, + "createTime": { + "readOnly": true, + "type": "string", + "description": "Output only. The Timestamp of when the `FileSearchStore` was created.", + "format": "google-datetime" + }, "failedDocumentsCount": { - "description": "Output only. The number of documents in the `FileSearchStore` that have failed processing.", "readOnly": true, "type": "string", + "description": "Output only. The number of documents in the `FileSearchStore` that have failed processing.", "format": "int64" } - } + }, + "description": "A `FileSearchStore` is a collection of `Document`s." }, - "SpeechConfig": { - "description": "Config for speech generation and transcription.", + "LatLng": { "type": "object", "properties": { - "multiSpeakerVoiceConfig": { - "$ref": "#/components/schemas/MultiSpeakerVoiceConfig", - "description": "Optional. The configuration for the multi-speaker setup. It is mutually exclusive with the voice_config field." + "longitude": { + "type": "number", + "description": "The longitude in degrees. It must be in the range [-180.0, +180.0].", + "format": "double" }, - "voiceConfig": { - "$ref": "#/components/schemas/VoiceConfig", - "description": "The configuration in case of single-voice output." + "latitude": { + "description": "The latitude in degrees. It must be in the range [-90.0, +90.0].", + "format": "double", + "type": "number" + } + }, + "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." + }, + "ReviewSnippet": { + "type": "object", + "properties": { + "title": { + "description": "Title of the review.", + "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`.", + "reviewId": { + "description": "The ID of the review snippet.", + "type": "string" + }, + "googleMapsUri": { + "description": "A link that corresponds to the user review on Google Maps.", "type": "string" } - } + }, + "description": "Encapsulates a snippet of a user review that answers a question about the features of a specific place in Google Maps." }, - "Status": { - "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).", + "GoogleSearchRetrieval": { "type": "object", "properties": { - "code": { - "description": "The status code, which should be an enum value of google.rpc.Code.", - "type": "integer", - "format": "int32" + "dynamicRetrievalConfig": { + "description": "Specifies the dynamic retrieval configuration for the given source.", + "$ref": "#/components/schemas/DynamicRetrievalConfig" + } + }, + "description": "Tool to retrieve public web data for grounding, powered by Google." + }, + "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" }, - "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.", + "fileName": { + "description": "The name of the `File` containing the input requests.", "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.", + } + } + }, + "Content": { + "type": "object", + "properties": { + "parts": { + "description": "Ordered `Parts` that constitute a single message. Parts may have different MIME types.", "type": "array", "items": { - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." - }, - "type": "object" + "$ref": "#/components/schemas/Part" } + }, + "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." }, - "InlinedEmbedContentResponse": { - "description": "The response to a single request in the batch.", + "ToolResponse": { "type": "object", "properties": { - "error": { - "description": "Output only. The error encountered while processing the request.", - "readOnly": true, - "$ref": "#/components/schemas/Status" + "id": { + "description": "Optional. The identifier of the tool call this response is for.", + "type": "string" }, "response": { - "description": "Output only. The response to the request.", - "readOnly": true, - "$ref": "#/components/schemas/EmbedContentResponse" - }, - "metadata": { - "description": "Output only. The metadata associated with the request.", - "readOnly": true, "type": "object", "additionalProperties": { "description": "Properties of the object." - } + }, + "description": "Optional. The tool response." + }, + "toolType": { + "description": "Required. The type of tool that was called, matching the `tool_type` in the corresponding `ToolCall`.", + "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." + ], + "enum": [ + "TOOL_TYPE_UNSPECIFIED", + "GOOGLE_SEARCH_WEB", + "GOOGLE_SEARCH_IMAGE", + "URL_CONTEXT", + "GOOGLE_MAPS", + "FILE_SEARCH" + ], + "type": "string" } - } + }, + "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`." }, - "BatchEmbedContentsResponse": { - "description": "The response to a `BatchEmbedContentsRequest`.", + "GenerateContentBatch": { + "description": "A resource representing a batch of `GenerateContent` requests.", "type": "object", "properties": { - "embeddings": { - "items": { - "$ref": "#/components/schemas/ContentEmbedding" - }, - "description": "Output only. The embeddings for each request, in the same order as provided in the batch request.", + "model": { + "description": "Required. The name of the `Model` to use for generating the completion. Format: `models/{model}`.", + "type": "string" + }, + "createTime": { "readOnly": true, - "type": "array" + "type": "string", + "description": "Output only. The time at which the batch was created.", + "format": "google-datetime" }, - "usageMetadata": { - "description": "Output only. The usage metadata for the request.", + "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.", + "format": "int64", + "type": "string" + }, + "state": { + "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." + ], + "enum": [ + "BATCH_STATE_UNSPECIFIED", + "BATCH_STATE_PENDING", + "BATCH_STATE_RUNNING", + "BATCH_STATE_SUCCEEDED", + "BATCH_STATE_FAILED", + "BATCH_STATE_CANCELLED", + "BATCH_STATE_EXPIRED" + ], + "description": "Output only. The state of the batch.", "readOnly": true, - "$ref": "#/components/schemas/EmbeddingUsageMetadata" + "type": "string" + }, + "output": { + "$ref": "#/components/schemas/GenerateContentBatchOutput", + "readOnly": true, + "description": "Output only. The output of the batch request." + }, + "displayName": { + "description": "Required. The user-defined name of this batch.", + "type": "string" + }, + "endTime": { + "description": "Output only. The time at which the batch processing completed.", + "format": "google-datetime", + "readOnly": true, + "type": "string" + }, + "name": { + "readOnly": true, + "type": "string", + "description": "Output only. Identifier. Resource name of the batch. Format: `batches/{batch_id}`." + }, + "batchStats": { + "description": "Output only. Stats about the batch.", + "$ref": "#/components/schemas/BatchStats", + "readOnly": true + }, + "inputConfig": { + "$ref": "#/components/schemas/InputConfig", + "description": "Required. Input configuration of the instances on which batch processing are performed." + }, + "updateTime": { + "description": "Output only. The time at which the batch was last updated.", + "format": "google-datetime", + "readOnly": true, + "type": "string" } } }, - "InlinedResponses": { - "description": "The responses to the requests in the batch.", + "ListOperationsResponse": { "type": "object", "properties": { - "inlinedResponses": { + "nextPageToken": { + "description": "The standard List next-page token.", + "type": "string" + }, + "operations": { + "type": "array", "items": { - "$ref": "#/components/schemas/InlinedResponse" + "$ref": "#/components/schemas/Operation" }, - "description": "Output only. The responses to the requests in the batch.", - "readOnly": true, - "type": "array" + "description": "A list of operations that matches the specified filter in the request." + }, + "unreachable": { + "type": "array", + "items": { + "type": "string" + }, + "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." } - } + }, + "description": "The response message for Operations.ListOperations." }, - "CustomLongRunningOperation": { + "PrebuiltVoiceConfig": { "type": "object", "properties": { - "error": { - "$ref": "#/components/schemas/Status", - "description": "The error result of the operation in case of failure or cancellation." - }, - "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." - } - }, - "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}`.", + "voiceName": { + "description": "The name of the preset voice to use.", "type": "string" - }, - "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" - }, - "metadata": { - "additionalProperties": { - "description": "Properties of the object. Contains field @type with type URL." - }, - "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" } - } + }, + "description": "The configuration for the prebuilt speaker to use." + }, + "WhiteSpaceConfig": { + "type": "object", + "properties": { + "maxOverlapTokens": { + "description": "Maximum number of overlapping tokens between two adjacent chunks.", + "format": "int32", + "type": "integer" + }, + "maxTokensPerChunk": { + "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.", + "format": "int32", + "type": "integer" + } + }, + "description": "Configuration for a white space chunking algorithm [white space delimited]." }, - "TopCandidates": { - "description": "Candidates with top log probabilities at each decoding step.", + "CreateFileResponse": { + "description": "Response for `CreateFile`.", "type": "object", "properties": { - "candidates": { - "items": { - "$ref": "#/components/schemas/LogprobsResultCandidate" - }, - "description": "Sorted by log probability in descending order.", - "type": "array" + "file": { + "$ref": "#/components/schemas/File", + "description": "Metadata for the created file." } } }, - "ContentEmbedding": { - "description": "A list of floats representing an embedding.", + "CitationSource": { + "description": "A citation to a source for a portion of a specific response.", "type": "object", "properties": { - "shape": { - "description": "This field stores the soft tokens tensor frame shape (e.g. [1, 1, 256, 2048]).", - "type": "array", - "items": { - "type": "integer", - "format": "int32" - } + "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" }, - "values": { - "items": { - "type": "number", - "format": "float" - }, - "description": "The embedding values. This is for 3P users only and will not be populated for 1P calls.", - "type": "array" + "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.", + "format": "int32", + "type": "integer" + }, + "endIndex": { + "description": "Optional. End of the attributed segment, exclusive.", + "format": "int32", + "type": "integer" + }, + "uri": { + "description": "Optional. URI that is attributed as a source for a portion of the text.", + "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.", + "GroundingChunkStringList": { + "description": "A list of string values.", "type": "object", "properties": { - "reviewSnippets": { + "values": { + "description": "The string values of the list.", + "type": "array", "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" + "type": "string" + } } } }, - "TransferOwnershipResponse": { - "description": "Response from `TransferOwnership`.", - "type": "object", - "properties": {} - }, - "GeneratedFile": { - "description": "A file generated on behalf of a user.", + "GroundingChunkCustomMetadata": { "type": "object", "properties": { - "name": { - "description": "Identifier. The name of the generated file. Example: `generatedFiles/abc-123`", - "type": "string" + "stringListValue": { + "$ref": "#/components/schemas/GroundingChunkStringList", + "description": "Optional. A list of string values for the metadata." }, - "mimeType": { - "description": "MIME type of the generatedFile.", + "key": { + "description": "The key of the metadata.", "type": "string" }, - "error": { - "description": "Error details if the GeneratedFile ends up in the STATE_FAILED state.", - "$ref": "#/components/schemas/Status" + "stringValue": { + "description": "Optional. The string value of the metadata.", + "type": "string" }, - "state": { - "readOnly": true, - "type": "string", - "description": "Output only. The state of the GeneratedFile.", - "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." - ], - "enum": [ - "STATE_UNSPECIFIED", - "GENERATING", - "GENERATED", - "FAILED" - ] + "numericValue": { + "description": "Optional. The numeric value of the metadata. The expected range for this value depends on the specific `key` used.", + "format": "float", + "type": "number" } - } - }, - "ImageSearch": { - "description": "Image search for grounding and related configurations.", - "type": "object", - "properties": {} + }, + "description": "User provided metadata about the GroundingFact." }, - "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`.", + "File": { "type": "object", "properties": { - "args": { - "description": "Optional. The tool call arguments. Example: {\"arg1\" : \"value1\", \"arg2\" : \"value2\" , ...}", - "type": "object", - "additionalProperties": { - "description": "Properties of the object." - } + "mimeType": { + "readOnly": true, + "type": "string", + "description": "Output only. MIME type of the file." }, - "id": { - "description": "Optional. Unique identifier of the tool call. The server returns the tool response with the matching `id`.", + "videoMetadata": { + "$ref": "#/components/schemas/VideoFileMetadata", + "readOnly": true, + "description": "Output only. Metadata for a video." + }, + "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" }, - "toolType": { - "description": "Required. The type of tool that was called.", + "state": { + "readOnly": true, "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." + "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." ], "enum": [ - "TOOL_TYPE_UNSPECIFIED", - "GOOGLE_SEARCH_WEB", - "GOOGLE_SEARCH_IMAGE", - "URL_CONTEXT", - "GOOGLE_MAPS", - "FILE_SEARCH" - ] - } - } - }, - "Candidate": { - "description": "A response candidate generated from the model.", - "type": "object", - "properties": { - "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" + "STATE_UNSPECIFIED", + "PROCESSING", + "ACTIVE", + "FAILED" + ], + "description": "Output only. Processing state of the File." }, - "index": { - "description": "Output only. Index of the candidate in the list of response candidates.", + "uri": { "readOnly": true, - "type": "integer", - "format": "int32" - }, - "content": { - "$ref": "#/components/schemas/Content", - "description": "Output only. Generated content returned from the model.", - "readOnly": true + "type": "string", + "description": "Output only. The uri of the `File`." }, - "avgLogprobs": { - "description": "Output only. Average log probability score of the candidate.", + "sha256Hash": { + "description": "Output only. SHA-256 hash of the uploaded bytes.", + "format": "byte", "readOnly": true, - "type": "number", - "format": "double" + "type": "string" }, - "urlContextMetadata": { - "description": "Output only. Metadata related to url context retrieval tool.", - "readOnly": true, - "$ref": "#/components/schemas/UrlContextMetadata" + "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" }, - "finishReason": { + "downloadUri": { + "description": "Output only. The download uri of the `File`.", "readOnly": true, - "type": "string", - "description": "Optional. Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating tokens.", + "type": "string" + }, + "source": { + "description": "Source of the File.", "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." + "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." ], "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" - ] - }, - "groundingMetadata": { - "$ref": "#/components/schemas/GroundingMetadata", - "description": "Output only. Grounding metadata for the candidate. This field is populated for `GenerateContent` calls.", - "readOnly": true + "SOURCE_UNSPECIFIED", + "UPLOADED", + "GENERATED", + "REGISTERED" + ], + "type": "string" }, - "tokenCount": { - "description": "Output only. Token count for this candidate.", + "createTime": { "readOnly": true, - "type": "integer", - "format": "int32" + "type": "string", + "description": "Output only. The timestamp of when the `File` was created.", + "format": "google-datetime" }, - "safetyRatings": { - "description": "List of ratings for the safety of a response candidate. There is at most one rating per category.", - "type": "array", - "items": { - "$ref": "#/components/schemas/SafetyRating" - } + "expirationTime": { + "description": "Output only. The timestamp of when the `File` will be deleted. Only set if the `File` is scheduled to expire.", + "format": "google-datetime", + "readOnly": true, + "type": "string" }, - "citationMetadata": { - "$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.", - "readOnly": true + "updateTime": { + "description": "Output only. The timestamp of when the `File` was last updated.", + "format": "google-datetime", + "readOnly": true, + "type": "string" }, - "groundingAttributions": { - "description": "Output only. Attribution information for sources that contributed to a grounded answer. This field is populated for `GenerateAnswer` calls.", + "error": { "readOnly": true, - "type": "array", - "items": { - "$ref": "#/components/schemas/GroundingAttribution" - } + "$ref": "#/components/schemas/Status", + "description": "Output only. Error status if File processing failed." }, - "logprobsResult": { - "$ref": "#/components/schemas/LogprobsResult", - "description": "Output only. Log-likelihood scores for the response tokens and top tokens", - "readOnly": true + "sizeBytes": { + "description": "Output only. Size of the file in bytes.", + "format": "int64", + "readOnly": true, + "type": "string" } - } + }, + "description": "A file uploaded to the API. Next ID: 15" }, - "StringList": { - "description": "User provided string values assigned to a single metadata key.", + "ModalityTokenCount": { + "description": "Represents token counting info for a single modality.", "type": "object", "properties": { - "values": { - "items": { - "type": "string" - }, - "description": "The string values of the metadata to store.", - "type": "array" + "modality": { + "description": "The modality associated with this token count.", + "x-enum-descriptions": [ + "Unspecified modality.", + "Plain text.", + "Image.", + "Video.", + "Audio.", + "Document, e.g. PDF." + ], + "enum": [ + "MODALITY_UNSPECIFIED", + "TEXT", + "IMAGE", + "VIDEO", + "AUDIO", + "DOCUMENT" + ], + "type": "string" + }, + "tokenCount": { + "type": "integer", + "description": "Number of tokens.", + "format": "int32" } } }, - "Schema": { - "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).", + "EmbedContentBatchStats": { "type": "object", "properties": { - "format": { - "description": "Optional. The format of the data. Any value is allowed, but most do not trigger any special functionality.", - "type": "string" + "pendingRequestCount": { + "readOnly": true, + "type": "string", + "description": "Output only. The number of requests that are still pending processing.", + "format": "int64" }, - "description": { - "description": "Optional. A brief description of the parameter. This could contain examples of use. Parameter description may be formatted as Markdown.", + "requestCount": { + "description": "Output only. The number of requests in the batch.", + "format": "int64", + "readOnly": true, "type": "string" }, - "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." - }, - "type": { - "description": "Required. Data type.", + "failedRequestCount": { + "readOnly": true, "type": "string", - "x-enum-descriptions": [ - "Not specified, should not be used.", - "String type.", - "Number type.", - "Integer type.", - "Boolean type.", - "Array type.", - "Object type.", - "Null type." - ], - "enum": [ - "TYPE_UNSPECIFIED", - "STRING", - "NUMBER", - "INTEGER", - "BOOLEAN", - "ARRAY", - "OBJECT", - "NULL" - ] + "description": "Output only. The number of requests that failed to be processed.", + "format": "int64" }, - "maxProperties": { - "description": "Optional. Maximum number of the properties for Type.OBJECT.", + "successfulRequestCount": { + "readOnly": true, "type": "string", + "description": "Output only. The number of requests that were successfully processed.", "format": "int64" + } + }, + "description": "Stats about the batch." + }, + "Document": { + "description": "A `Document` is a collection of `Chunk`s.", + "type": "object", + "properties": { + "createTime": { + "readOnly": true, + "type": "string", + "description": "Output only. The Timestamp of when the `Document` was created.", + "format": "google-datetime" }, - "properties": { - "description": "Optional. Properties of Type.OBJECT.", - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Schema" - } - }, - "title": { - "description": "Optional. The title of the schema.", - "type": "string" - }, - "maximum": { - "description": "Optional. Maximum value of the Type.INTEGER and Type.NUMBER", - "type": "number", - "format": "double" - }, - "minLength": { - "description": "Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING", + "sizeBytes": { + "readOnly": true, "type": "string", + "description": "Output only. The size of raw bytes ingested into the Document.", "format": "int64" }, - "pattern": { - "description": "Optional. Pattern of the Type.STRING to restrict a string to a regular expression.", + "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" }, - "required": { - "description": "Optional. Required properties of Type.OBJECT.", + "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", "items": { - "type": "string" + "$ref": "#/components/schemas/CustomMetadata" } }, - "propertyOrdering": { - "items": { - "type": "string" - }, - "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" - }, - "example": { - "description": "Optional. Example of the object. Will only populated when the object is the root." - }, - "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" - }, - "nullable": { - "description": "Optional. Indicates if the value may be null.", - "type": "boolean" - }, - "anyOf": { - "items": { - "$ref": "#/components/schemas/Schema" - }, - "description": "Optional. The value should be validated against any (one or more) of the subschemas in the list.", - "type": "array" - }, - "maxItems": { - "description": "Optional. Maximum number of the elements for Type.ARRAY.", - "type": "string", - "format": "int64" - }, - "maxLength": { - "description": "Optional. Maximum length of the Type.STRING", + "mimeType": { + "readOnly": true, "type": "string", - "format": "int64" + "description": "Output only. The mime type of the Document." }, - "minItems": { - "description": "Optional. Minimum number of the elements for Type.ARRAY.", - "type": "string", - "format": "int64" + "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" }, - "minProperties": { - "description": "Optional. Minimum number of the properties for Type.OBJECT.", + "updateTime": { + "readOnly": true, "type": "string", - "format": "int64" - }, - "minimum": { - "description": "Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER", - "type": "number", - "format": "double" - }, - "items": { - "$ref": "#/components/schemas/Schema", - "description": "Optional. Schema of the elements of Type.ARRAY." - } - } - }, - "EmbedContentResponse": { - "description": "The response to an `EmbedContentRequest`.", - "type": "object", - "properties": { - "embedding": { - "$ref": "#/components/schemas/ContentEmbedding", - "description": "Output only. The embedding generated from the input content.", - "readOnly": true + "description": "Output only. The Timestamp of when the `Document` was last updated.", + "format": "google-datetime" }, - "usageMetadata": { - "description": "Output only. The usage metadata for the request.", + "state": { + "description": "Output only. Current state of the `Document`.", + "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." + ], + "enum": [ + "STATE_UNSPECIFIED", + "STATE_PENDING", + "STATE_ACTIVE", + "STATE_FAILED" + ], "readOnly": true, - "$ref": "#/components/schemas/EmbeddingUsageMetadata" + "type": "string" } } }, - "UrlContext": { - "description": "Tool to support URL context retrieval.", - "type": "object", - "properties": {} - }, - "BatchGenerateContentRequest": { - "description": "Request for a `BatchGenerateContent` operation.", + "InlinedResponses": { + "description": "The responses to the requests in the batch.", "type": "object", "properties": { - "batch": { - "description": "Required. The batch to create.", - "$ref": "#/components/schemas/GenerateContentBatch" + "inlinedResponses": { + "readOnly": true, + "type": "array", + "items": { + "$ref": "#/components/schemas/InlinedResponse" + }, + "description": "Output only. The responses to the requests in the batch." } } }