google-apis-dialogflow_v3 0.125.0 → 0.126.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: 3573b114d979612d72f61871a7789176f280dcfa3885b0329e287268b38404cb
|
|
4
|
+
data.tar.gz: 3b921522b63548c55f24930cbe72bb5b6d826b488f6e843102d85e124684b20b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de07fb84f248a93ee06a045343ac4a3f1880ed90d2a79053a7b846fe9165efbac0d5d0fac2e1ebf2c819296f131b4e670bed3d458db04afecfd2eb6dca736e62
|
|
7
|
+
data.tar.gz: bd4b2cc3f4c6174634d46483ee51c798ffb7457d5a28df83e9b3455870602c10155c2c0ec53c3eb96f8ebc96ec22d3ba72da98bb1375b3b5ee7751f0f355f06f
|
data/CHANGELOG.md
CHANGED
|
@@ -3344,6 +3344,11 @@ module Google
|
|
|
3344
3344
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings]
|
|
3345
3345
|
attr_accessor :advanced_settings
|
|
3346
3346
|
|
|
3347
|
+
#
|
|
3348
|
+
# Corresponds to the JSON property `codeBlockFunction`
|
|
3349
|
+
# @return [String]
|
|
3350
|
+
attr_accessor :code_block_function
|
|
3351
|
+
|
|
3347
3352
|
#
|
|
3348
3353
|
# Corresponds to the JSON property `conditionalCases`
|
|
3349
3354
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentConditionalCases>]
|
|
@@ -3393,6 +3398,7 @@ module Google
|
|
|
3393
3398
|
# Update properties of this object
|
|
3394
3399
|
def update!(**args)
|
|
3395
3400
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
|
3401
|
+
@code_block_function = args[:code_block_function] if args.key?(:code_block_function)
|
|
3396
3402
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
|
3397
3403
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
|
3398
3404
|
@generators = args[:generators] if args.key?(:generators)
|
|
@@ -10735,6 +10741,11 @@ module Google
|
|
|
10735
10741
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings]
|
|
10736
10742
|
attr_accessor :advanced_settings
|
|
10737
10743
|
|
|
10744
|
+
#
|
|
10745
|
+
# Corresponds to the JSON property `codeBlockFunction`
|
|
10746
|
+
# @return [String]
|
|
10747
|
+
attr_accessor :code_block_function
|
|
10748
|
+
|
|
10738
10749
|
#
|
|
10739
10750
|
# Corresponds to the JSON property `conditionalCases`
|
|
10740
10751
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>]
|
|
@@ -10784,6 +10795,7 @@ module Google
|
|
|
10784
10795
|
# Update properties of this object
|
|
10785
10796
|
def update!(**args)
|
|
10786
10797
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
|
10798
|
+
@code_block_function = args[:code_block_function] if args.key?(:code_block_function)
|
|
10787
10799
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
|
10788
10800
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
|
10789
10801
|
@generators = args[:generators] if args.key?(:generators)
|
|
@@ -16074,6 +16086,26 @@ module Google
|
|
|
16074
16086
|
# @return [Fixnum]
|
|
16075
16087
|
attr_accessor :prompt_token_count
|
|
16076
16088
|
|
|
16089
|
+
#
|
|
16090
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
16091
|
+
# @return [Float]
|
|
16092
|
+
attr_accessor :similarity_to_last_query
|
|
16093
|
+
|
|
16094
|
+
#
|
|
16095
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
16096
|
+
# @return [Float]
|
|
16097
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
16098
|
+
|
|
16099
|
+
#
|
|
16100
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
16101
|
+
# @return [Fixnum]
|
|
16102
|
+
attr_accessor :thinking_budget_tokens
|
|
16103
|
+
|
|
16104
|
+
#
|
|
16105
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
16106
|
+
# @return [String]
|
|
16107
|
+
attr_accessor :thinking_level
|
|
16108
|
+
|
|
16077
16109
|
#
|
|
16078
16110
|
# Corresponds to the JSON property `totalTokenCount`
|
|
16079
16111
|
# @return [Fixnum]
|
|
@@ -16087,6 +16119,10 @@ module Google
|
|
|
16087
16119
|
def update!(**args)
|
|
16088
16120
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
16089
16121
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
16122
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
16123
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
16124
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
16125
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
16090
16126
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
16091
16127
|
end
|
|
16092
16128
|
end
|
|
@@ -17059,6 +17095,12 @@ module Google
|
|
|
17059
17095
|
# @return [String]
|
|
17060
17096
|
attr_accessor :message
|
|
17061
17097
|
|
|
17098
|
+
#
|
|
17099
|
+
# Corresponds to the JSON property `retryable`
|
|
17100
|
+
# @return [Boolean]
|
|
17101
|
+
attr_accessor :retryable
|
|
17102
|
+
alias_method :retryable?, :retryable
|
|
17103
|
+
|
|
17062
17104
|
def initialize(**args)
|
|
17063
17105
|
update!(**args)
|
|
17064
17106
|
end
|
|
@@ -17066,6 +17108,7 @@ module Google
|
|
|
17066
17108
|
# Update properties of this object
|
|
17067
17109
|
def update!(**args)
|
|
17068
17110
|
@message = args[:message] if args.key?(:message)
|
|
17111
|
+
@retryable = args[:retryable] if args.key?(:retryable)
|
|
17069
17112
|
end
|
|
17070
17113
|
end
|
|
17071
17114
|
|
|
@@ -20363,6 +20406,26 @@ module Google
|
|
|
20363
20406
|
# @return [Fixnum]
|
|
20364
20407
|
attr_accessor :prompt_token_count
|
|
20365
20408
|
|
|
20409
|
+
#
|
|
20410
|
+
# Corresponds to the JSON property `similarityToLastQuery`
|
|
20411
|
+
# @return [Float]
|
|
20412
|
+
attr_accessor :similarity_to_last_query
|
|
20413
|
+
|
|
20414
|
+
#
|
|
20415
|
+
# Corresponds to the JSON property `similarityToLastQueryThreshold`
|
|
20416
|
+
# @return [Float]
|
|
20417
|
+
attr_accessor :similarity_to_last_query_threshold
|
|
20418
|
+
|
|
20419
|
+
#
|
|
20420
|
+
# Corresponds to the JSON property `thinkingBudgetTokens`
|
|
20421
|
+
# @return [Fixnum]
|
|
20422
|
+
attr_accessor :thinking_budget_tokens
|
|
20423
|
+
|
|
20424
|
+
#
|
|
20425
|
+
# Corresponds to the JSON property `thinkingLevel`
|
|
20426
|
+
# @return [String]
|
|
20427
|
+
attr_accessor :thinking_level
|
|
20428
|
+
|
|
20366
20429
|
#
|
|
20367
20430
|
# Corresponds to the JSON property `totalTokenCount`
|
|
20368
20431
|
# @return [Fixnum]
|
|
@@ -20376,6 +20439,10 @@ module Google
|
|
|
20376
20439
|
def update!(**args)
|
|
20377
20440
|
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
20378
20441
|
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
20442
|
+
@similarity_to_last_query = args[:similarity_to_last_query] if args.key?(:similarity_to_last_query)
|
|
20443
|
+
@similarity_to_last_query_threshold = args[:similarity_to_last_query_threshold] if args.key?(:similarity_to_last_query_threshold)
|
|
20444
|
+
@thinking_budget_tokens = args[:thinking_budget_tokens] if args.key?(:thinking_budget_tokens)
|
|
20445
|
+
@thinking_level = args[:thinking_level] if args.key?(:thinking_level)
|
|
20379
20446
|
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
20380
20447
|
end
|
|
20381
20448
|
end
|
|
@@ -21592,6 +21659,12 @@ module Google
|
|
|
21592
21659
|
# @return [String]
|
|
21593
21660
|
attr_accessor :message
|
|
21594
21661
|
|
|
21662
|
+
#
|
|
21663
|
+
# Corresponds to the JSON property `retryable`
|
|
21664
|
+
# @return [Boolean]
|
|
21665
|
+
attr_accessor :retryable
|
|
21666
|
+
alias_method :retryable?, :retryable
|
|
21667
|
+
|
|
21595
21668
|
def initialize(**args)
|
|
21596
21669
|
update!(**args)
|
|
21597
21670
|
end
|
|
@@ -21599,6 +21672,7 @@ module Google
|
|
|
21599
21672
|
# Update properties of this object
|
|
21600
21673
|
def update!(**args)
|
|
21601
21674
|
@message = args[:message] if args.key?(:message)
|
|
21675
|
+
@retryable = args[:retryable] if args.key?(:retryable)
|
|
21602
21676
|
end
|
|
21603
21677
|
end
|
|
21604
21678
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3
|
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.126.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 = "20260815"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5053,6 +5053,7 @@ module Google
|
|
|
5053
5053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5054
5054
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
|
5055
5055
|
|
|
5056
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
5056
5057
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentConditionalCases::Representation
|
|
5057
5058
|
|
|
5058
5059
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -7413,6 +7414,7 @@ module Google
|
|
|
7413
7414
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7414
7415
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
|
|
7415
7416
|
|
|
7417
|
+
property :code_block_function, as: 'codeBlockFunction'
|
|
7416
7418
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
|
7417
7419
|
|
|
7418
7420
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
|
@@ -9075,6 +9077,10 @@ module Google
|
|
|
9075
9077
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9076
9078
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
9077
9079
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
9080
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
9081
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
9082
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
9083
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
9078
9084
|
property :total_token_count, as: 'totalTokenCount'
|
|
9079
9085
|
end
|
|
9080
9086
|
end
|
|
@@ -9359,6 +9365,7 @@ module Google
|
|
|
9359
9365
|
# @private
|
|
9360
9366
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9361
9367
|
property :message, as: 'message'
|
|
9368
|
+
property :retryable, as: 'retryable'
|
|
9362
9369
|
end
|
|
9363
9370
|
end
|
|
9364
9371
|
|
|
@@ -10405,6 +10412,10 @@ module Google
|
|
|
10405
10412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10406
10413
|
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
10407
10414
|
property :prompt_token_count, as: 'promptTokenCount'
|
|
10415
|
+
property :similarity_to_last_query, as: 'similarityToLastQuery'
|
|
10416
|
+
property :similarity_to_last_query_threshold, as: 'similarityToLastQueryThreshold'
|
|
10417
|
+
property :thinking_budget_tokens, as: 'thinkingBudgetTokens'
|
|
10418
|
+
property :thinking_level, as: 'thinkingLevel'
|
|
10408
10419
|
property :total_token_count, as: 'totalTokenCount'
|
|
10409
10420
|
end
|
|
10410
10421
|
end
|
|
@@ -10772,6 +10783,7 @@ module Google
|
|
|
10772
10783
|
# @private
|
|
10773
10784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10774
10785
|
property :message, as: 'message'
|
|
10786
|
+
property :retryable, as: 'retryable'
|
|
10775
10787
|
end
|
|
10776
10788
|
end
|
|
10777
10789
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.126.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_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.126.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|