Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204545,7 +204545,12 @@
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmCallTokenCount/totalOutputTokenCount": total_output_token_count
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings": google_cloud_dialogflow_cx_v3beta1_llm_model_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/model": model
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/parameters": parameters
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/promptText": prompt_text
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters": google_cloud_dialogflow_cx_v3beta1_llm_model_settings_parameters
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/inputTokenLimit": input_token_limit
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/outputTokenLimit": output_token_limit
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/temperature": temperature
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LoadVersionRequest": google_cloud_dialogflow_cx_v3beta1_load_version_request
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LoadVersionRequest/allowOverrideAgentResources": allow_override_agent_resources
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse": google_cloud_dialogflow_cx_v3beta1_lookup_environment_history_response
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-dialogflow_v3beta1

### v0.112.0 (2025-10-19)

* Regenerated from discovery document revision 20251013

### v0.111.0 (2025-10-05)

* Regenerated from discovery document revision 20250929
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10939,6 +10939,11 @@ class GoogleCloudDialogflowCxV3beta1LlmModelSettings
# @return [String]
attr_accessor :model

# Generative model parameters to control the model behavior.
# Corresponds to the JSON property `parameters`
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters]
attr_accessor :parameters

# The custom prompt to use.
# Corresponds to the JSON property `promptText`
# @return [String]
Expand All @@ -10951,10 +10956,46 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@model = args[:model] if args.key?(:model)
@parameters = args[:parameters] if args.key?(:parameters)
@prompt_text = args[:prompt_text] if args.key?(:prompt_text)
end
end

# Generative model parameters to control the model behavior.
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
include Google::Apis::Core::Hashable

# The input token limit. This setting is currently only supported by playbooks.
# Corresponds to the JSON property `inputTokenLimit`
# @return [String]
attr_accessor :input_token_limit

# The output token limit. This setting is currently only supported by playbooks.
# Only one of output_token_limit and max_output_tokens is allowed to be set.
# Corresponds to the JSON property `outputTokenLimit`
# @return [String]
attr_accessor :output_token_limit

# The temperature used for sampling during response generation. Value ranges
# from 0 to 1. Temperature controls the degree of randomness in token selection.
# Lower temperature means less randomness, while higher temperature means more
# randomness. Valid range: [0.0, 1.0]
# Corresponds to the JSON property `temperature`
# @return [Float]
attr_accessor :temperature

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@input_token_limit = args[:input_token_limit] if args.key?(:input_token_limit)
@output_token_limit = args[:output_token_limit] if args.key?(:output_token_limit)
@temperature = args[:temperature] if args.key?(:temperature)
end
end

# The request message for Versions.LoadVersion.
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
include Google::Apis::Core::Hashable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DialogflowV3beta1
# Version of the google-apis-dialogflow_v3beta1 gem
GEM_VERSION = "0.111.0"
GEM_VERSION = "0.112.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250929"
REVISION = "20251013"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1786,6 +1786,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -7045,10 +7051,21 @@ class GoogleCloudDialogflowCxV3beta1LlmModelSettings
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :model, as: 'model'
property :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters::Representation

property :prompt_text, as: 'promptText'
end
end

class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :input_token_limit, as: 'inputTokenLimit'
property :output_token_limit, as: 'outputTokenLimit'
property :temperature, as: 'temperature'
end
end

class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down