google-apis-dialogflow_v3 0.79.0 → 0.80.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 926a04aa1e344f3ffe6c50619c52769a7899bfd1fc6663e6049312b83db87e22
|
4
|
+
data.tar.gz: bd3413dbebb68088b66a89438164849527b57c1b799f44e437f994f8e2a07743
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46fa9d6a489df796273f9ce6ce6388a813ccf515295b13ca99d4d52663b189b6b730216da7df40ccb86b6621392f92242e7e8c9566723237071848d0c79ab962
|
7
|
+
data.tar.gz: 65ad994eeeb6a5d1e5ef12d00446f51d75eac21368b4f4f0798751e9f64cb94b024d540c9c2a7228d2f51b1abb73492953ca7df8846d9f672a9b0a8cbb7462df
|
data/CHANGELOG.md
CHANGED
@@ -226,7 +226,9 @@ module Google
|
|
226
226
|
|
227
227
|
# Immutable. Name of the start flow in this agent. A start flow will be
|
228
228
|
# automatically created when the agent is created, and can only be deleted by
|
229
|
-
# deleting the agent. Format: `projects//locations//agents//flows/`.
|
229
|
+
# deleting the agent. Format: `projects//locations//agents//flows/`. Currently
|
230
|
+
# only the default start flow with id "00000000-0000-0000-0000-000000000000" is
|
231
|
+
# allowed.
|
230
232
|
# Corresponds to the JSON property `startFlow`
|
231
233
|
# @return [String]
|
232
234
|
attr_accessor :start_flow
|
@@ -774,6 +776,11 @@ module Google
|
|
774
776
|
# @return [String]
|
775
777
|
attr_accessor :display_name
|
776
778
|
|
779
|
+
# The affected language code of the change.
|
780
|
+
# Corresponds to the JSON property `languageCode`
|
781
|
+
# @return [String]
|
782
|
+
attr_accessor :language_code
|
783
|
+
|
777
784
|
# The unique identifier of the changelog. Format: `projects//locations//agents//
|
778
785
|
# changelogs/`.
|
779
786
|
# Corresponds to the JSON property `name`
|
@@ -804,6 +811,7 @@ module Google
|
|
804
811
|
@action = args[:action] if args.key?(:action)
|
805
812
|
@create_time = args[:create_time] if args.key?(:create_time)
|
806
813
|
@display_name = args[:display_name] if args.key?(:display_name)
|
814
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
807
815
|
@name = args[:name] if args.key?(:name)
|
808
816
|
@resource = args[:resource] if args.key?(:resource)
|
809
817
|
@type = args[:type] if args.key?(:type)
|
@@ -5526,6 +5534,21 @@ module Google
|
|
5526
5534
|
attr_accessor :allow_answer_feedback
|
5527
5535
|
alias_method :allow_answer_feedback?, :allow_answer_feedback
|
5528
5536
|
|
5537
|
+
# Flows represents the conversation flows when you build your chatbot agent. A
|
5538
|
+
# flow consists of many pages connected by the transition routes. Conversations
|
5539
|
+
# always start with the built-in Start Flow (with an all-0 ID). Transition
|
5540
|
+
# routes can direct the conversation session from the current flow (parent flow)
|
5541
|
+
# to another flow (sub flow). When the sub flow is finished, Dialogflow will
|
5542
|
+
# bring the session back to the parent flow, where the sub flow is started.
|
5543
|
+
# Usually, when a transition route is followed by a matched intent, the intent
|
5544
|
+
# will be "consumed". This means the intent won't activate more transition
|
5545
|
+
# routes. However, when the followed transition route moves the conversation
|
5546
|
+
# session into a different flow, the matched intent can be carried over and to
|
5547
|
+
# be consumed in the target flow.
|
5548
|
+
# Corresponds to the JSON property `currentFlow`
|
5549
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Flow]
|
5550
|
+
attr_accessor :current_flow
|
5551
|
+
|
5529
5552
|
# A Dialogflow CX conversation (session) can be described and visualized as a
|
5530
5553
|
# state machine. The states of a CX session are represented by pages. For each
|
5531
5554
|
# flow, you define many pages, where your combined pages can handle a complete
|
@@ -5644,6 +5667,21 @@ module Google
|
|
5644
5667
|
# @return [String]
|
5645
5668
|
attr_accessor :trigger_intent
|
5646
5669
|
|
5670
|
+
# The list of webhook display names in the order of call sequence.
|
5671
|
+
# Corresponds to the JSON property `webhookDisplayNames`
|
5672
|
+
# @return [Array<String>]
|
5673
|
+
attr_accessor :webhook_display_names
|
5674
|
+
|
5675
|
+
# The list of webhook ids in the order of call sequence.
|
5676
|
+
# Corresponds to the JSON property `webhookIds`
|
5677
|
+
# @return [Array<String>]
|
5678
|
+
attr_accessor :webhook_ids
|
5679
|
+
|
5680
|
+
# The list of webhook latencies in the order of call sequence.
|
5681
|
+
# Corresponds to the JSON property `webhookLatencies`
|
5682
|
+
# @return [Array<String>]
|
5683
|
+
attr_accessor :webhook_latencies
|
5684
|
+
|
5647
5685
|
# The list of webhook payload in WebhookResponse.payload, in the order of call
|
5648
5686
|
# sequence. If some webhook call fails or doesn't return any payload, an empty `
|
5649
5687
|
# Struct` would be used instead.
|
@@ -5656,6 +5694,11 @@ module Google
|
|
5656
5694
|
# @return [Array<Google::Apis::DialogflowV3::GoogleRpcStatus>]
|
5657
5695
|
attr_accessor :webhook_statuses
|
5658
5696
|
|
5697
|
+
# The list of webhook tags in the order of call sequence.
|
5698
|
+
# Corresponds to the JSON property `webhookTags`
|
5699
|
+
# @return [Array<String>]
|
5700
|
+
attr_accessor :webhook_tags
|
5701
|
+
|
5659
5702
|
def initialize(**args)
|
5660
5703
|
update!(**args)
|
5661
5704
|
end
|
@@ -5664,6 +5707,7 @@ module Google
|
|
5664
5707
|
def update!(**args)
|
5665
5708
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
5666
5709
|
@allow_answer_feedback = args[:allow_answer_feedback] if args.key?(:allow_answer_feedback)
|
5710
|
+
@current_flow = args[:current_flow] if args.key?(:current_flow)
|
5667
5711
|
@current_page = args[:current_page] if args.key?(:current_page)
|
5668
5712
|
@diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
|
5669
5713
|
@dtmf = args[:dtmf] if args.key?(:dtmf)
|
@@ -5678,8 +5722,12 @@ module Google
|
|
5678
5722
|
@transcript = args[:transcript] if args.key?(:transcript)
|
5679
5723
|
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
5680
5724
|
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
5725
|
+
@webhook_display_names = args[:webhook_display_names] if args.key?(:webhook_display_names)
|
5726
|
+
@webhook_ids = args[:webhook_ids] if args.key?(:webhook_ids)
|
5727
|
+
@webhook_latencies = args[:webhook_latencies] if args.key?(:webhook_latencies)
|
5681
5728
|
@webhook_payloads = args[:webhook_payloads] if args.key?(:webhook_payloads)
|
5682
5729
|
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
5730
|
+
@webhook_tags = args[:webhook_tags] if args.key?(:webhook_tags)
|
5683
5731
|
end
|
5684
5732
|
end
|
5685
5733
|
|
@@ -5826,6 +5874,11 @@ module Google
|
|
5826
5874
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText]
|
5827
5875
|
attr_accessor :text
|
5828
5876
|
|
5877
|
+
# Represents a call of a specific tool's action with the specified inputs.
|
5878
|
+
# Corresponds to the JSON property `toolCall`
|
5879
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolCall]
|
5880
|
+
attr_accessor :tool_call
|
5881
|
+
|
5829
5882
|
def initialize(**args)
|
5830
5883
|
update!(**args)
|
5831
5884
|
end
|
@@ -5844,6 +5897,7 @@ module Google
|
|
5844
5897
|
@response_type = args[:response_type] if args.key?(:response_type)
|
5845
5898
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
5846
5899
|
@text = args[:text] if args.key?(:text)
|
5900
|
+
@tool_call = args[:tool_call] if args.key?(:tool_call)
|
5847
5901
|
end
|
5848
5902
|
end
|
5849
5903
|
|
@@ -7134,6 +7188,38 @@ module Google
|
|
7134
7188
|
end
|
7135
7189
|
end
|
7136
7190
|
|
7191
|
+
# Represents a call of a specific tool's action with the specified inputs.
|
7192
|
+
class GoogleCloudDialogflowCxV3ToolCall
|
7193
|
+
include Google::Apis::Core::Hashable
|
7194
|
+
|
7195
|
+
# Required. The name of the tool's action associated with this call.
|
7196
|
+
# Corresponds to the JSON property `action`
|
7197
|
+
# @return [String]
|
7198
|
+
attr_accessor :action
|
7199
|
+
|
7200
|
+
# Optional. The action's input parameters.
|
7201
|
+
# Corresponds to the JSON property `inputParameters`
|
7202
|
+
# @return [Hash<String,Object>]
|
7203
|
+
attr_accessor :input_parameters
|
7204
|
+
|
7205
|
+
# Required. The tool associated with this call. Format: `projects//locations//
|
7206
|
+
# agents//tools/`.
|
7207
|
+
# Corresponds to the JSON property `tool`
|
7208
|
+
# @return [String]
|
7209
|
+
attr_accessor :tool
|
7210
|
+
|
7211
|
+
def initialize(**args)
|
7212
|
+
update!(**args)
|
7213
|
+
end
|
7214
|
+
|
7215
|
+
# Update properties of this object
|
7216
|
+
def update!(**args)
|
7217
|
+
@action = args[:action] if args.key?(:action)
|
7218
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
7219
|
+
@tool = args[:tool] if args.key?(:tool)
|
7220
|
+
end
|
7221
|
+
end
|
7222
|
+
|
7137
7223
|
# The request message for Flows.TrainFlow.
|
7138
7224
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
7139
7225
|
include Google::Apis::Core::Hashable
|
@@ -10574,6 +10660,11 @@ module Google
|
|
10574
10660
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TextInput]
|
10575
10661
|
attr_accessor :text
|
10576
10662
|
|
10663
|
+
# The result of calling a tool's action that has been executed by the client.
|
10664
|
+
# Corresponds to the JSON property `toolCallResult`
|
10665
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResult]
|
10666
|
+
attr_accessor :tool_call_result
|
10667
|
+
|
10577
10668
|
def initialize(**args)
|
10578
10669
|
update!(**args)
|
10579
10670
|
end
|
@@ -10586,6 +10677,7 @@ module Google
|
|
10586
10677
|
@intent = args[:intent] if args.key?(:intent)
|
10587
10678
|
@language_code = args[:language_code] if args.key?(:language_code)
|
10588
10679
|
@text = args[:text] if args.key?(:text)
|
10680
|
+
@tool_call_result = args[:tool_call_result] if args.key?(:tool_call_result)
|
10589
10681
|
end
|
10590
10682
|
end
|
10591
10683
|
|
@@ -10702,6 +10794,11 @@ module Google
|
|
10702
10794
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
|
10703
10795
|
attr_accessor :text
|
10704
10796
|
|
10797
|
+
# Represents a call of a specific tool's action with the specified inputs.
|
10798
|
+
# Corresponds to the JSON property `toolCall`
|
10799
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCall]
|
10800
|
+
attr_accessor :tool_call
|
10801
|
+
|
10705
10802
|
def initialize(**args)
|
10706
10803
|
update!(**args)
|
10707
10804
|
end
|
@@ -10719,6 +10816,7 @@ module Google
|
|
10719
10816
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
10720
10817
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
10721
10818
|
@text = args[:text] if args.key?(:text)
|
10819
|
+
@tool_call = args[:tool_call] if args.key?(:tool_call)
|
10722
10820
|
end
|
10723
10821
|
end
|
10724
10822
|
|
@@ -11341,6 +11439,95 @@ module Google
|
|
11341
11439
|
end
|
11342
11440
|
end
|
11343
11441
|
|
11442
|
+
# Represents a call of a specific tool's action with the specified inputs.
|
11443
|
+
class GoogleCloudDialogflowCxV3beta1ToolCall
|
11444
|
+
include Google::Apis::Core::Hashable
|
11445
|
+
|
11446
|
+
# Required. The name of the tool's action associated with this call.
|
11447
|
+
# Corresponds to the JSON property `action`
|
11448
|
+
# @return [String]
|
11449
|
+
attr_accessor :action
|
11450
|
+
|
11451
|
+
# Optional. The action's input parameters.
|
11452
|
+
# Corresponds to the JSON property `inputParameters`
|
11453
|
+
# @return [Hash<String,Object>]
|
11454
|
+
attr_accessor :input_parameters
|
11455
|
+
|
11456
|
+
# Required. The tool associated with this call. Format: `projects//locations//
|
11457
|
+
# agents//tools/`.
|
11458
|
+
# Corresponds to the JSON property `tool`
|
11459
|
+
# @return [String]
|
11460
|
+
attr_accessor :tool
|
11461
|
+
|
11462
|
+
def initialize(**args)
|
11463
|
+
update!(**args)
|
11464
|
+
end
|
11465
|
+
|
11466
|
+
# Update properties of this object
|
11467
|
+
def update!(**args)
|
11468
|
+
@action = args[:action] if args.key?(:action)
|
11469
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
11470
|
+
@tool = args[:tool] if args.key?(:tool)
|
11471
|
+
end
|
11472
|
+
end
|
11473
|
+
|
11474
|
+
# The result of calling a tool's action that has been executed by the client.
|
11475
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
11476
|
+
include Google::Apis::Core::Hashable
|
11477
|
+
|
11478
|
+
# Required. The name of the tool's action associated with this call.
|
11479
|
+
# Corresponds to the JSON property `action`
|
11480
|
+
# @return [String]
|
11481
|
+
attr_accessor :action
|
11482
|
+
|
11483
|
+
# An error produced by the tool call.
|
11484
|
+
# Corresponds to the JSON property `error`
|
11485
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResultError]
|
11486
|
+
attr_accessor :error
|
11487
|
+
|
11488
|
+
# The tool call's output parameters.
|
11489
|
+
# Corresponds to the JSON property `outputParameters`
|
11490
|
+
# @return [Hash<String,Object>]
|
11491
|
+
attr_accessor :output_parameters
|
11492
|
+
|
11493
|
+
# Required. The tool associated with this call. Format: `projects//locations//
|
11494
|
+
# agents//tools/`.
|
11495
|
+
# Corresponds to the JSON property `tool`
|
11496
|
+
# @return [String]
|
11497
|
+
attr_accessor :tool
|
11498
|
+
|
11499
|
+
def initialize(**args)
|
11500
|
+
update!(**args)
|
11501
|
+
end
|
11502
|
+
|
11503
|
+
# Update properties of this object
|
11504
|
+
def update!(**args)
|
11505
|
+
@action = args[:action] if args.key?(:action)
|
11506
|
+
@error = args[:error] if args.key?(:error)
|
11507
|
+
@output_parameters = args[:output_parameters] if args.key?(:output_parameters)
|
11508
|
+
@tool = args[:tool] if args.key?(:tool)
|
11509
|
+
end
|
11510
|
+
end
|
11511
|
+
|
11512
|
+
# An error produced by the tool call.
|
11513
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
11514
|
+
include Google::Apis::Core::Hashable
|
11515
|
+
|
11516
|
+
# Optional. The error message of the function.
|
11517
|
+
# Corresponds to the JSON property `message`
|
11518
|
+
# @return [String]
|
11519
|
+
attr_accessor :message
|
11520
|
+
|
11521
|
+
def initialize(**args)
|
11522
|
+
update!(**args)
|
11523
|
+
end
|
11524
|
+
|
11525
|
+
# Update properties of this object
|
11526
|
+
def update!(**args)
|
11527
|
+
@message = args[:message] if args.key?(:message)
|
11528
|
+
end
|
11529
|
+
end
|
11530
|
+
|
11344
11531
|
# A transition route specifies a intent that can be matched and/or a data
|
11345
11532
|
# condition that can be evaluated during a session. When a specified transition
|
11346
11533
|
# is matched, the following actions are taken in order: * If there is a `
|
@@ -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.80.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240215"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1204,6 +1204,12 @@ module Google
|
|
1204
1204
|
include Google::Apis::Core::JsonObjectSupport
|
1205
1205
|
end
|
1206
1206
|
|
1207
|
+
class GoogleCloudDialogflowCxV3ToolCall
|
1208
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
|
+
|
1210
|
+
include Google::Apis::Core::JsonObjectSupport
|
1211
|
+
end
|
1212
|
+
|
1207
1213
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
1208
1214
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
1215
|
|
@@ -1924,6 +1930,24 @@ module Google
|
|
1924
1930
|
include Google::Apis::Core::JsonObjectSupport
|
1925
1931
|
end
|
1926
1932
|
|
1933
|
+
class GoogleCloudDialogflowCxV3beta1ToolCall
|
1934
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1935
|
+
|
1936
|
+
include Google::Apis::Core::JsonObjectSupport
|
1937
|
+
end
|
1938
|
+
|
1939
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
1940
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1941
|
+
|
1942
|
+
include Google::Apis::Core::JsonObjectSupport
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
1946
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1947
|
+
|
1948
|
+
include Google::Apis::Core::JsonObjectSupport
|
1949
|
+
end
|
1950
|
+
|
1927
1951
|
class GoogleCloudDialogflowCxV3beta1TransitionRoute
|
1928
1952
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1929
1953
|
|
@@ -3281,6 +3305,7 @@ module Google
|
|
3281
3305
|
property :action, as: 'action'
|
3282
3306
|
property :create_time, as: 'createTime'
|
3283
3307
|
property :display_name, as: 'displayName'
|
3308
|
+
property :language_code, as: 'languageCode'
|
3284
3309
|
property :name, as: 'name'
|
3285
3310
|
property :resource, as: 'resource'
|
3286
3311
|
property :type, as: 'type'
|
@@ -4565,6 +4590,8 @@ module Google
|
|
4565
4590
|
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
4566
4591
|
|
4567
4592
|
property :allow_answer_feedback, as: 'allowAnswerFeedback'
|
4593
|
+
property :current_flow, as: 'currentFlow', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Flow, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Flow::Representation
|
4594
|
+
|
4568
4595
|
property :current_page, as: 'currentPage', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page::Representation
|
4569
4596
|
|
4570
4597
|
hash :diagnostic_info, as: 'diagnosticInfo'
|
@@ -4585,9 +4612,13 @@ module Google
|
|
4585
4612
|
property :transcript, as: 'transcript'
|
4586
4613
|
property :trigger_event, as: 'triggerEvent'
|
4587
4614
|
property :trigger_intent, as: 'triggerIntent'
|
4615
|
+
collection :webhook_display_names, as: 'webhookDisplayNames'
|
4616
|
+
collection :webhook_ids, as: 'webhookIds'
|
4617
|
+
collection :webhook_latencies, as: 'webhookLatencies'
|
4588
4618
|
collection :webhook_payloads, as: 'webhookPayloads'
|
4589
4619
|
collection :webhook_statuses, as: 'webhookStatuses', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
|
4590
4620
|
|
4621
|
+
collection :webhook_tags, as: 'webhookTags'
|
4591
4622
|
end
|
4592
4623
|
end
|
4593
4624
|
|
@@ -4631,6 +4662,8 @@ module Google
|
|
4631
4662
|
|
4632
4663
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
4633
4664
|
|
4665
|
+
property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolCall, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolCall::Representation
|
4666
|
+
|
4634
4667
|
end
|
4635
4668
|
end
|
4636
4669
|
|
@@ -5008,6 +5041,15 @@ module Google
|
|
5008
5041
|
end
|
5009
5042
|
end
|
5010
5043
|
|
5044
|
+
class GoogleCloudDialogflowCxV3ToolCall
|
5045
|
+
# @private
|
5046
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5047
|
+
property :action, as: 'action'
|
5048
|
+
hash :input_parameters, as: 'inputParameters'
|
5049
|
+
property :tool, as: 'tool'
|
5050
|
+
end
|
5051
|
+
end
|
5052
|
+
|
5011
5053
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
5012
5054
|
# @private
|
5013
5055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5953,6 +5995,8 @@ module Google
|
|
5953
5995
|
property :language_code, as: 'languageCode'
|
5954
5996
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TextInput, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TextInput::Representation
|
5955
5997
|
|
5998
|
+
property :tool_call_result, as: 'toolCallResult', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResult::Representation
|
5999
|
+
|
5956
6000
|
end
|
5957
6001
|
end
|
5958
6002
|
|
@@ -5987,6 +6031,8 @@ module Google
|
|
5987
6031
|
|
5988
6032
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
|
5989
6033
|
|
6034
|
+
property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCall, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCall::Representation
|
6035
|
+
|
5990
6036
|
end
|
5991
6037
|
end
|
5992
6038
|
|
@@ -6176,6 +6222,33 @@ module Google
|
|
6176
6222
|
end
|
6177
6223
|
end
|
6178
6224
|
|
6225
|
+
class GoogleCloudDialogflowCxV3beta1ToolCall
|
6226
|
+
# @private
|
6227
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6228
|
+
property :action, as: 'action'
|
6229
|
+
hash :input_parameters, as: 'inputParameters'
|
6230
|
+
property :tool, as: 'tool'
|
6231
|
+
end
|
6232
|
+
end
|
6233
|
+
|
6234
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
6235
|
+
# @private
|
6236
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6237
|
+
property :action, as: 'action'
|
6238
|
+
property :error, as: 'error', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResultError, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ToolCallResultError::Representation
|
6239
|
+
|
6240
|
+
hash :output_parameters, as: 'outputParameters'
|
6241
|
+
property :tool, as: 'tool'
|
6242
|
+
end
|
6243
|
+
end
|
6244
|
+
|
6245
|
+
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
6246
|
+
# @private
|
6247
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6248
|
+
property :message, as: 'message'
|
6249
|
+
end
|
6250
|
+
end
|
6251
|
+
|
6179
6252
|
class GoogleCloudDialogflowCxV3beta1TransitionRoute
|
6180
6253
|
# @private
|
6181
6254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.80.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|