Skip to content

Commit a12c3fd

Browse files
feat: Automated regeneration of dialogflow v3beta1 client
1 parent 1fce69b commit a12c3fd

File tree

5 files changed

+69
-2
lines changed

5 files changed

+69
-2
lines changed

api_names_out.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204545,7 +204545,12 @@
204545204545
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmCallTokenCount/totalOutputTokenCount": total_output_token_count
204546204546
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings": google_cloud_dialogflow_cx_v3beta1_llm_model_settings
204547204547
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/model": model
204548+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/parameters": parameters
204548204549
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettings/promptText": prompt_text
204550+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters": google_cloud_dialogflow_cx_v3beta1_llm_model_settings_parameters
204551+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/inputTokenLimit": input_token_limit
204552+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/outputTokenLimit": output_token_limit
204553+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters/temperature": temperature
204549204554
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LoadVersionRequest": google_cloud_dialogflow_cx_v3beta1_load_version_request
204550204555
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LoadVersionRequest/allowOverrideAgentResources": allow_override_agent_resources
204551204556
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1LookupEnvironmentHistoryResponse": google_cloud_dialogflow_cx_v3beta1_lookup_environment_history_response

generated/google-apis-dialogflow_v3beta1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dialogflow_v3beta1
22

3+
### v0.112.0 (2025-10-19)
4+
5+
* Regenerated from discovery document revision 20251013
6+
37
### v0.111.0 (2025-10-05)
48

59
* Regenerated from discovery document revision 20250929

generated/google-apis-dialogflow_v3beta1/lib/google/apis/dialogflow_v3beta1/classes.rb

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10939,6 +10939,11 @@ class GoogleCloudDialogflowCxV3beta1LlmModelSettings
1093910939
# @return [String]
1094010940
attr_accessor :model
1094110941

10942+
# Generative model parameters to control the model behavior.
10943+
# Corresponds to the JSON property `parameters`
10944+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters]
10945+
attr_accessor :parameters
10946+
1094210947
# The custom prompt to use.
1094310948
# Corresponds to the JSON property `promptText`
1094410949
# @return [String]
@@ -10951,10 +10956,46 @@ def initialize(**args)
1095110956
# Update properties of this object
1095210957
def update!(**args)
1095310958
@model = args[:model] if args.key?(:model)
10959+
@parameters = args[:parameters] if args.key?(:parameters)
1095410960
@prompt_text = args[:prompt_text] if args.key?(:prompt_text)
1095510961
end
1095610962
end
1095710963

10964+
# Generative model parameters to control the model behavior.
10965+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
10966+
include Google::Apis::Core::Hashable
10967+
10968+
# The input token limit. This setting is currently only supported by playbooks.
10969+
# Corresponds to the JSON property `inputTokenLimit`
10970+
# @return [String]
10971+
attr_accessor :input_token_limit
10972+
10973+
# The output token limit. This setting is currently only supported by playbooks.
10974+
# Only one of output_token_limit and max_output_tokens is allowed to be set.
10975+
# Corresponds to the JSON property `outputTokenLimit`
10976+
# @return [String]
10977+
attr_accessor :output_token_limit
10978+
10979+
# The temperature used for sampling during response generation. Value ranges
10980+
# from 0 to 1. Temperature controls the degree of randomness in token selection.
10981+
# Lower temperature means less randomness, while higher temperature means more
10982+
# randomness. Valid range: [0.0, 1.0]
10983+
# Corresponds to the JSON property `temperature`
10984+
# @return [Float]
10985+
attr_accessor :temperature
10986+
10987+
def initialize(**args)
10988+
update!(**args)
10989+
end
10990+
10991+
# Update properties of this object
10992+
def update!(**args)
10993+
@input_token_limit = args[:input_token_limit] if args.key?(:input_token_limit)
10994+
@output_token_limit = args[:output_token_limit] if args.key?(:output_token_limit)
10995+
@temperature = args[:temperature] if args.key?(:temperature)
10996+
end
10997+
end
10998+
1095810999
# The request message for Versions.LoadVersion.
1095911000
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
1096011001
include Google::Apis::Core::Hashable

generated/google-apis-dialogflow_v3beta1/lib/google/apis/dialogflow_v3beta1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DialogflowV3beta1
1818
# Version of the google-apis-dialogflow_v3beta1 gem
19-
GEM_VERSION = "0.111.0"
19+
GEM_VERSION = "0.112.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250929"
25+
REVISION = "20251013"
2626
end
2727
end
2828
end

generated/google-apis-dialogflow_v3beta1/lib/google/apis/dialogflow_v3beta1/representations.rb

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,6 +1786,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
17861786
include Google::Apis::Core::JsonObjectSupport
17871787
end
17881788

1789+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
1790+
class Representation < Google::Apis::Core::JsonRepresentation; end
1791+
1792+
include Google::Apis::Core::JsonObjectSupport
1793+
end
1794+
17891795
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
17901796
class Representation < Google::Apis::Core::JsonRepresentation; end
17911797

@@ -7045,10 +7051,21 @@ class GoogleCloudDialogflowCxV3beta1LlmModelSettings
70457051
# @private
70467052
class Representation < Google::Apis::Core::JsonRepresentation
70477053
property :model, as: 'model'
7054+
property :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters::Representation
7055+
70487056
property :prompt_text, as: 'promptText'
70497057
end
70507058
end
70517059

7060+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
7061+
# @private
7062+
class Representation < Google::Apis::Core::JsonRepresentation
7063+
property :input_token_limit, as: 'inputTokenLimit'
7064+
property :output_token_limit, as: 'outputTokenLimit'
7065+
property :temperature, as: 'temperature'
7066+
end
7067+
end
7068+
70527069
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
70537070
# @private
70547071
class Representation < Google::Apis::Core::JsonRepresentation

0 commit comments

Comments
 (0)