google-apis-dialogflow_v2 0.47.0 → 0.49.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: f34b7c5e470f86800d59d31be37d1a6e2c4d0a1018a1fb77c565be6fddf82b6c
|
4
|
+
data.tar.gz: 8d1dc40cca6382b834bdc493f1dc4dab47aab875c31a3164be5f6432521653aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e0b297710c72fe27b80289caa1a0f103f49fa08b249fe1827ff6dafcf765c35848cc20753dd14c6d66f0fe75456d5e300701b95da3f5c2e410b181fe6ee4a92
|
7
|
+
data.tar.gz: 64c566220029fbb894be24b1d53a4c485d851095813f75d3bcb41b4a6a390d74ab7dd982917dbdcdb0b9cace1dbec5c2109adc6c5acb61a4b31211951e42ec1e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.49.0 (2022-12-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221129
|
6
|
+
|
7
|
+
### v0.48.0 (2022-11-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221109
|
10
|
+
|
3
11
|
### v0.47.0 (2022-10-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221026
|
@@ -6464,6 +6464,12 @@ module Google
|
|
6464
6464
|
# @return [String]
|
6465
6465
|
attr_accessor :automated_agent_reply_type
|
6466
6466
|
|
6467
|
+
# The unique identifier of the current Dialogflow CX conversation page. Format: `
|
6468
|
+
# projects//locations//agents//flows//pages/`.
|
6469
|
+
# Corresponds to the JSON property `cxCurrentPage`
|
6470
|
+
# @return [String]
|
6471
|
+
attr_accessor :cx_current_page
|
6472
|
+
|
6467
6473
|
# The message returned from the DetectIntent method.
|
6468
6474
|
# Corresponds to the JSON property `detectIntentResponse`
|
6469
6475
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse]
|
@@ -6477,6 +6483,7 @@ module Google
|
|
6477
6483
|
def update!(**args)
|
6478
6484
|
@allow_cancellation = args[:allow_cancellation] if args.key?(:allow_cancellation)
|
6479
6485
|
@automated_agent_reply_type = args[:automated_agent_reply_type] if args.key?(:automated_agent_reply_type)
|
6486
|
+
@cx_current_page = args[:cx_current_page] if args.key?(:cx_current_page)
|
6480
6487
|
@detect_intent_response = args[:detect_intent_response] if args.key?(:detect_intent_response)
|
6481
6488
|
end
|
6482
6489
|
end
|
@@ -7163,6 +7170,22 @@ module Google
|
|
7163
7170
|
# @return [String]
|
7164
7171
|
attr_accessor :name
|
7165
7172
|
|
7173
|
+
# Output only. Human eval template in csv format. It tooks real-world
|
7174
|
+
# conversations provided through input dataset, generates example suggestions
|
7175
|
+
# for customer to verify quality of the model. For Smart Reply, the generated
|
7176
|
+
# csv file contains columns of Context, (Suggestions,Q1,Q2)*3, Actual reply.
|
7177
|
+
# Context contains at most 10 latest messages in the conversation prior to the
|
7178
|
+
# current suggestion. Q1: "Would you send it as the next message of agent?"
|
7179
|
+
# Evaluated based on whether the suggest is appropriate to be sent by agent in
|
7180
|
+
# current context. Q2: "Does the suggestion move the conversation closer to
|
7181
|
+
# resolution?" Evaluated based on whether the suggestion provide solutions, or
|
7182
|
+
# answers customer's question or collect information from customer to resolve
|
7183
|
+
# the customer's issue. Actual reply column contains the actual agent reply sent
|
7184
|
+
# in the context.
|
7185
|
+
# Corresponds to the JSON property `rawHumanEvalTemplateCsv`
|
7186
|
+
# @return [String]
|
7187
|
+
attr_accessor :raw_human_eval_template_csv
|
7188
|
+
|
7166
7189
|
# The evaluation metrics for smart reply model.
|
7167
7190
|
# Corresponds to the JSON property `smartReplyMetrics`
|
7168
7191
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SmartReplyMetrics]
|
@@ -7178,6 +7201,7 @@ module Google
|
|
7178
7201
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7179
7202
|
@evaluation_config = args[:evaluation_config] if args.key?(:evaluation_config)
|
7180
7203
|
@name = args[:name] if args.key?(:name)
|
7204
|
+
@raw_human_eval_template_csv = args[:raw_human_eval_template_csv] if args.key?(:raw_human_eval_template_csv)
|
7181
7205
|
@smart_reply_metrics = args[:smart_reply_metrics] if args.key?(:smart_reply_metrics)
|
7182
7206
|
end
|
7183
7207
|
end
|
@@ -11816,7 +11840,9 @@ module Google
|
|
11816
11840
|
end
|
11817
11841
|
|
11818
11842
|
# The sentiment, such as positive/negative feeling or association, for a unit of
|
11819
|
-
# analysis, such as the query text.
|
11843
|
+
# analysis, such as the query text. See: https://cloud.google.com/natural-
|
11844
|
+
# language/docs/basics#interpreting_sentiment_analysis_values for how to
|
11845
|
+
# interpret the result.
|
11820
11846
|
class GoogleCloudDialogflowV2Sentiment
|
11821
11847
|
include Google::Apis::Core::Hashable
|
11822
11848
|
|
@@ -11875,7 +11901,9 @@ module Google
|
|
11875
11901
|
include Google::Apis::Core::Hashable
|
11876
11902
|
|
11877
11903
|
# The sentiment, such as positive/negative feeling or association, for a unit of
|
11878
|
-
# analysis, such as the query text.
|
11904
|
+
# analysis, such as the query text. See: https://cloud.google.com/natural-
|
11905
|
+
# language/docs/basics#interpreting_sentiment_analysis_values for how to
|
11906
|
+
# interpret the result.
|
11879
11907
|
# Corresponds to the JSON property `queryTextSentiment`
|
11880
11908
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Sentiment]
|
11881
11909
|
attr_accessor :query_text_sentiment
|
@@ -15632,7 +15660,9 @@ module Google
|
|
15632
15660
|
end
|
15633
15661
|
|
15634
15662
|
# The sentiment, such as positive/negative feeling or association, for a unit of
|
15635
|
-
# analysis, such as the query text.
|
15663
|
+
# analysis, such as the query text. See: https://cloud.google.com/natural-
|
15664
|
+
# language/docs/basics#interpreting_sentiment_analysis_values for how to
|
15665
|
+
# interpret the result.
|
15636
15666
|
class GoogleCloudDialogflowV2beta1Sentiment
|
15637
15667
|
include Google::Apis::Core::Hashable
|
15638
15668
|
|
@@ -15670,7 +15700,9 @@ module Google
|
|
15670
15700
|
include Google::Apis::Core::Hashable
|
15671
15701
|
|
15672
15702
|
# The sentiment, such as positive/negative feeling or association, for a unit of
|
15673
|
-
# analysis, such as the query text.
|
15703
|
+
# analysis, such as the query text. See: https://cloud.google.com/natural-
|
15704
|
+
# language/docs/basics#interpreting_sentiment_analysis_values for how to
|
15705
|
+
# interpret the result.
|
15674
15706
|
# Corresponds to the JSON property `queryTextSentiment`
|
15675
15707
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1Sentiment]
|
15676
15708
|
attr_accessor :query_text_sentiment
|
@@ -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.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4507,6 +4507,7 @@ module Google
|
|
4507
4507
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4508
4508
|
property :allow_cancellation, as: 'allowCancellation'
|
4509
4509
|
property :automated_agent_reply_type, as: 'automatedAgentReplyType'
|
4510
|
+
property :cx_current_page, as: 'cxCurrentPage'
|
4510
4511
|
property :detect_intent_response, as: 'detectIntentResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2DetectIntentResponse::Representation
|
4511
4512
|
|
4512
4513
|
end
|
@@ -4699,6 +4700,7 @@ module Google
|
|
4699
4700
|
property :evaluation_config, as: 'evaluationConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EvaluationConfig::Representation
|
4700
4701
|
|
4701
4702
|
property :name, as: 'name'
|
4703
|
+
property :raw_human_eval_template_csv, as: 'rawHumanEvalTemplateCsv'
|
4702
4704
|
property :smart_reply_metrics, as: 'smartReplyMetrics', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SmartReplyMetrics, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SmartReplyMetrics::Representation
|
4703
4705
|
|
4704
4706
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.49.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: 2022-
|
11
|
+
date: 2022-12-12 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.49.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|