google-apis-dialogflow_v3beta1 0.121.0 → 0.122.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: 9bcdb7d09436ab7c285ff90a68ba31a34492c95bcef0d53e6fa2c8326794df6c
|
|
4
|
+
data.tar.gz: 388c644832944fede8afc2d37df19601f90544a633563a87ce51d17344269a9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9cc9861394f432e8a72a85225ab928515cdc61cf5467020bd861aebd38ea456f1b49c1522b2f372662ae5e9fc58a9428ec2b670c5a91468f895fcfa7146ef9e
|
|
7
|
+
data.tar.gz: f189fbd4c2339ecaa92dc06f980f4cf175dba7a9f55452c6f1d2d1c81f3e1342cbea565e413fd6cf09cc832f620d971f667a09875d43321f2bfe01f16469b7d8
|
data/CHANGELOG.md
CHANGED
|
@@ -1042,6 +1042,11 @@ module Google
|
|
|
1042
1042
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3AdvancedSettings]
|
|
1043
1043
|
attr_accessor :advanced_settings
|
|
1044
1044
|
|
|
1045
|
+
#
|
|
1046
|
+
# Corresponds to the JSON property `codeBlockFunction`
|
|
1047
|
+
# @return [String]
|
|
1048
|
+
attr_accessor :code_block_function
|
|
1049
|
+
|
|
1045
1050
|
#
|
|
1046
1051
|
# Corresponds to the JSON property `conditionalCases`
|
|
1047
1052
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentConditionalCases>]
|
|
@@ -1091,6 +1096,7 @@ module Google
|
|
|
1091
1096
|
# Update properties of this object
|
|
1092
1097
|
def update!(**args)
|
|
1093
1098
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
|
1099
|
+
@code_block_function = args[:code_block_function] if args.key?(:code_block_function)
|
|
1094
1100
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
|
1095
1101
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
|
1096
1102
|
@generators = args[:generators] if args.key?(:generators)
|
|
@@ -7522,6 +7528,11 @@ module Google
|
|
|
7522
7528
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings]
|
|
7523
7529
|
attr_accessor :advanced_settings
|
|
7524
7530
|
|
|
7531
|
+
#
|
|
7532
|
+
# Corresponds to the JSON property `codeBlockFunction`
|
|
7533
|
+
# @return [String]
|
|
7534
|
+
attr_accessor :code_block_function
|
|
7535
|
+
|
|
7525
7536
|
#
|
|
7526
7537
|
# Corresponds to the JSON property `conditionalCases`
|
|
7527
7538
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>]
|
|
@@ -7571,6 +7582,7 @@ module Google
|
|
|
7571
7582
|
# Update properties of this object
|
|
7572
7583
|
def update!(**args)
|
|
7573
7584
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
|
7585
|
+
@code_block_function = args[:code_block_function] if args.key?(:code_block_function)
|
|
7574
7586
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
|
7575
7587
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
|
7576
7588
|
@generators = args[:generators] if args.key?(:generators)
|
|
@@ -17497,6 +17509,26 @@ module Google
|
|
|
17497
17509
|
# @return [Fixnum]
|
|
17498
17510
|
attr_accessor :prompt_token_count
|
|
17499
17511
|
|
|
17512
|
+
#
|
|
17513
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
17514
|
+
# @return [Float]
|
|
17515
|
+
attr_accessor :similarity_to_last_query
|
|
17516
|
+
|
|
17517
|
+
#
|
|
17518
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
17519
|
+
# @return [Float]
|
|
17520
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
17521
|
+
|
|
17522
|
+
#
|
|
17523
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
17524
|
+
# @return [Fixnum]
|
|
17525
|
+
attr_accessor :thinking_budget_tokens
|
|
17526
|
+
|
|
17527
|
+
#
|
|
17528
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
17529
|
+
# @return [String]
|
|
17530
|
+
attr_accessor :thinking_level
|
|
17531
|
+
|
|
17500
17532
|
#
|
|
17501
17533
|
# Corresponds to the JSON property `totalTokenCount`
|
|
17502
17534
|
# @return [Fixnum]
|
|
@@ -17510,6 +17542,10 @@ module Google
|
|
|
17510
17542
|
def update!(**args)
|
|
17511
17543
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
17512
17544
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
17545
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
17546
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
17547
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
17548
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
17513
17549
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
17514
17550
|
end
|
|
17515
17551
|
end
|
|
@@ -21786,6 +21822,26 @@ module Google
|
|
|
21786
21822
|
# @return [Fixnum]
|
|
21787
21823
|
attr_accessor :prompt_token_count
|
|
21788
21824
|
|
|
21825
|
+
#
|
|
21826
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
21827
|
+
# @return [Float]
|
|
21828
|
+
attr_accessor :similarity_to_last_query
|
|
21829
|
+
|
|
21830
|
+
#
|
|
21831
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
21832
|
+
# @return [Float]
|
|
21833
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
21834
|
+
|
|
21835
|
+
#
|
|
21836
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
21837
|
+
# @return [Fixnum]
|
|
21838
|
+
attr_accessor :thinking_budget_tokens
|
|
21839
|
+
|
|
21840
|
+
#
|
|
21841
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
21842
|
+
# @return [String]
|
|
21843
|
+
attr_accessor :thinking_level
|
|
21844
|
+
|
|
21789
21845
|
#
|
|
21790
21846
|
# Corresponds to the JSON property `totalTokenCount`
|
|
21791
21847
|
# @return [Fixnum]
|
|
@@ -21799,6 +21855,10 @@ module Google
|
|
|
21799
21855
|
def update!(**args)
|
|
21800
21856
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
21801
21857
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
21858
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
21859
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
21860
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
21861
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
21802
21862
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
21803
21863
|
end
|
|
21804
21864
|
end
|
|
@@ -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.122.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260808"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -4581,6 +4581,7 @@ module Google
|
|
|
4581
4581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4582
4582
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
|
4583
4583
|
|
|
4584
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
4584
4585
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentConditionalCases::Representation
|
|
4585
4586
|
|
|
4586
4587
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -6573,6 +6574,7 @@ module Google
|
|
|
6573
6574
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6574
6575
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
|
|
6575
6576
|
|
|
6577
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
6576
6578
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
|
6577
6579
|
|
|
6578
6580
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -9721,6 +9723,10 @@ module Google
|
|
|
9721
9723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9722
9724
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
9723
9725
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
9726
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
9727
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
9728
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
9729
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
9724
9730
|
property :total_token_count, as: 'totalTokenCount'
|
|
9725
9731
|
end
|
|
9726
9732
|
end
|
|
@@ -11051,6 +11057,10 @@ module Google
|
|
|
11051
11057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11052
11058
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
11053
11059
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
11060
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
11061
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
11062
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
11063
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
11054
11064
|
property :total_token_count, as: 'totalTokenCount'
|
|
11055
11065
|
end
|
|
11056
11066
|
end
|
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.122.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.122.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:
|