google-apis-dialogflow_v2 0.128.0 → 0.129.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: ccb5a34a4ec904349d6b443ec8319a63a65669ffa9e350e834cfd2fc69d4377b
|
|
4
|
+
data.tar.gz: dfca8f056f3c9ac2eab3216630f4e08dc21d104f1e2fb6e5890a529ef6b4e233
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d6ef259e71f234f93ada132107722c43a48974b7f52955a909c653f618eb7239bc9fd4d20dcab8b0a9778e1927debab1d70f28671f7a297aa75bc9b1c56edd0
|
|
7
|
+
data.tar.gz: ab56c9a4438f6038e558d7e2e1af8370079e687b47365ec22479569e7cc0a13e38daf946478e855efcff4523c7fe3d416f8c802c293c4028da54361292a2376c
|
data/CHANGELOG.md
CHANGED
|
@@ -1042,6 +1042,11 @@ module Google
|
|
|
1042
1042
|
# @return [Google::Apis::DialogflowV2::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::DialogflowV2::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)
|
|
@@ -4416,6 +4422,11 @@ module Google
|
|
|
4416
4422
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettings]
|
|
4417
4423
|
attr_accessor :advanced_settings
|
|
4418
4424
|
|
|
4425
|
+
#
|
|
4426
|
+
# Corresponds to the JSON property `codeBlockFunction`
|
|
4427
|
+
# @return [String]
|
|
4428
|
+
attr_accessor :code_block_function
|
|
4429
|
+
|
|
4419
4430
|
#
|
|
4420
4431
|
# Corresponds to the JSON property `conditionalCases`
|
|
4421
4432
|
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>]
|
|
@@ -4465,6 +4476,7 @@ module Google
|
|
|
4465
4476
|
# Update properties of this object
|
|
4466
4477
|
def update!(**args)
|
|
4467
4478
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
|
4479
|
+
@code_block_function = args[:code_block_function] if args.key?(:code_block_function)
|
|
4468
4480
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
|
4469
4481
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
|
4470
4482
|
@generators = args[:generators] if args.key?(:generators)
|
|
@@ -13572,6 +13584,26 @@ module Google
|
|
|
13572
13584
|
# @return [Fixnum]
|
|
13573
13585
|
attr_accessor :prompt_token_count
|
|
13574
13586
|
|
|
13587
|
+
#
|
|
13588
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
13589
|
+
# @return [Float]
|
|
13590
|
+
attr_accessor :similarity_to_last_query
|
|
13591
|
+
|
|
13592
|
+
#
|
|
13593
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
13594
|
+
# @return [Float]
|
|
13595
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
13596
|
+
|
|
13597
|
+
#
|
|
13598
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
13599
|
+
# @return [Fixnum]
|
|
13600
|
+
attr_accessor :thinking_budget_tokens
|
|
13601
|
+
|
|
13602
|
+
#
|
|
13603
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
13604
|
+
# @return [String]
|
|
13605
|
+
attr_accessor :thinking_level
|
|
13606
|
+
|
|
13575
13607
|
#
|
|
13576
13608
|
# Corresponds to the JSON property `totalTokenCount`
|
|
13577
13609
|
# @return [Fixnum]
|
|
@@ -13585,6 +13617,10 @@ module Google
|
|
|
13585
13617
|
def update!(**args)
|
|
13586
13618
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
13587
13619
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
13620
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
13621
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
13622
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
13623
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
13588
13624
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
13589
13625
|
end
|
|
13590
13626
|
end
|
|
@@ -21293,6 +21329,26 @@ module Google
|
|
|
21293
21329
|
# @return [Fixnum]
|
|
21294
21330
|
attr_accessor :prompt_token_count
|
|
21295
21331
|
|
|
21332
|
+
#
|
|
21333
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
21334
|
+
# @return [Float]
|
|
21335
|
+
attr_accessor :similarity_to_last_query
|
|
21336
|
+
|
|
21337
|
+
#
|
|
21338
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
21339
|
+
# @return [Float]
|
|
21340
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
21341
|
+
|
|
21342
|
+
#
|
|
21343
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
21344
|
+
# @return [Fixnum]
|
|
21345
|
+
attr_accessor :thinking_budget_tokens
|
|
21346
|
+
|
|
21347
|
+
#
|
|
21348
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
21349
|
+
# @return [String]
|
|
21350
|
+
attr_accessor :thinking_level
|
|
21351
|
+
|
|
21296
21352
|
#
|
|
21297
21353
|
# Corresponds to the JSON property `totalTokenCount`
|
|
21298
21354
|
# @return [Fixnum]
|
|
@@ -21306,6 +21362,10 @@ module Google
|
|
|
21306
21362
|
def update!(**args)
|
|
21307
21363
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
21308
21364
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
21365
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
21366
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
21367
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
21368
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
21309
21369
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
21310
21370
|
end
|
|
21311
21371
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.129.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
|
|
@@ -4503,6 +4503,7 @@ module Google
|
|
|
4503
4503
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4504
4504
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
|
4505
4505
|
|
|
4506
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
4506
4507
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3FulfillmentConditionalCases::Representation
|
|
4507
4508
|
|
|
4508
4509
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -5568,6 +5569,7 @@ module Google
|
|
|
5568
5569
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5569
5570
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
|
|
5570
5571
|
|
|
5572
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
5571
5573
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
|
5572
5574
|
|
|
5573
5575
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -8402,6 +8404,10 @@ module Google
|
|
|
8402
8404
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8403
8405
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
8404
8406
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
8407
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
8408
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
8409
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
8410
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
8405
8411
|
property :total_token_count, as: 'totalTokenCount'
|
|
8406
8412
|
end
|
|
8407
8413
|
end
|
|
@@ -10816,6 +10822,10 @@ module Google
|
|
|
10816
10822
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10817
10823
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
10818
10824
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
10825
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
10826
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
10827
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
10828
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
10819
10829
|
property :total_token_count, as: 'totalTokenCount'
|
|
10820
10830
|
end
|
|
10821
10831
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.129.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_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.129.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|