google-apis-dialogflow_v3beta1 0.111.0 → 0.112.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d663f5700cfbc9c499bcd9ec43262842d4d2abd19a1cb3f1b7dbd88958a37223
|
4
|
+
data.tar.gz: 6692b311f2de158a4fe30feb3b105cec015be6599f532e6967cc4cce6f1255bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d25020a0427e12a03adec58c5124fa47d3e7466f4084043239b7df296c890259e0b68f99850e64e187f58364863f9652c32f088c7ef170f6f38e9dbf59b68b82
|
7
|
+
data.tar.gz: a8c1541168aee7174e1508f5a84f91886db4b29d21dcc957c7f579ce9051d8fe94df89db7e73fb8a63662e35542fd9862b5a088ab03375658709da2dd4629940
|
data/CHANGELOG.md
CHANGED
@@ -10939,6 +10939,11 @@ module Google
|
|
10939
10939
|
# @return [String]
|
10940
10940
|
attr_accessor :model
|
10941
10941
|
|
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
|
+
|
10942
10947
|
# The custom prompt to use.
|
10943
10948
|
# Corresponds to the JSON property `promptText`
|
10944
10949
|
# @return [String]
|
@@ -10951,10 +10956,46 @@ module Google
|
|
10951
10956
|
# Update properties of this object
|
10952
10957
|
def update!(**args)
|
10953
10958
|
@model = args[:model] if args.key?(:model)
|
10959
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
10954
10960
|
@prompt_text = args[:prompt_text] if args.key?(:prompt_text)
|
10955
10961
|
end
|
10956
10962
|
end
|
10957
10963
|
|
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
|
+
|
10958
10999
|
# The request message for Versions.LoadVersion.
|
10959
11000
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
10960
11001
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.112.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20251013"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1786,6 +1786,12 @@ module Google
|
|
1786
1786
|
include Google::Apis::Core::JsonObjectSupport
|
1787
1787
|
end
|
1788
1788
|
|
1789
|
+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
|
1790
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1791
|
+
|
1792
|
+
include Google::Apis::Core::JsonObjectSupport
|
1793
|
+
end
|
1794
|
+
|
1789
1795
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
1790
1796
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1791
1797
|
|
@@ -7045,10 +7051,21 @@ module Google
|
|
7045
7051
|
# @private
|
7046
7052
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7047
7053
|
property :model, as: 'model'
|
7054
|
+
property :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters::Representation
|
7055
|
+
|
7048
7056
|
property :prompt_text, as: 'promptText'
|
7049
7057
|
end
|
7050
7058
|
end
|
7051
7059
|
|
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
|
+
|
7052
7069
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
7053
7070
|
# @private
|
7054
7071
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.112.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.112.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|