google-cloud-dialogflow-v2 0.17.0 → 0.18.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 +4 -4
- data/AUTHENTICATION.md +1 -1
- data/lib/google/cloud/dialogflow/v2/conversation_dataset_pb.rb +1 -0
- data/lib/google/cloud/dialogflow/v2/version.rb +1 -1
- data/proto_docs/google/cloud/dialogflow/v2/conversation_dataset.rb +5 -0
- data/proto_docs/google/cloud/dialogflow/v2/conversation_profile.rb +3 -3
- data/proto_docs/google/cloud/dialogflow/v2/session.rb +3 -2
- data/proto_docs/google/protobuf/empty.rb +0 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 323d660797e6031bec894aa0fad4c8995ba80111a77d4a1e06d2e34b43c6045d
|
4
|
+
data.tar.gz: 475cf6b836273feb02a5634f18eaeb94c39a21f81096af9cab83e061c3a1631e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44aa41038a1a2163a3b702c03c1a0196f3a6fb5ed3085f75c72c948f0755e2a91a12b702e623f1df18ad8453566c3d8355a0831a79c5b42ee8815c8e433e66e4
|
7
|
+
data.tar.gz: 29566f50e2676d466f0fd5d3154184085945aa205abe140470c0a0b43c7573fc62af49d9a9a7957ab1c37e09c75130e8139f716bba2980dd0ff0affd6ee98f03
|
data/AUTHENTICATION.md
CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
|
|
114
114
|
To configure your system for this, simply:
|
115
115
|
|
116
116
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
117
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
117
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
118
118
|
3. Write code as if already authenticated.
|
119
119
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
@@ -64,6 +64,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
64
64
|
optional :import_count, :int32, 3
|
65
65
|
end
|
66
66
|
add_message "google.cloud.dialogflow.v2.CreateConversationDatasetOperationMetadata" do
|
67
|
+
optional :conversation_dataset, :string, 1
|
67
68
|
end
|
68
69
|
add_message "google.cloud.dialogflow.v2.DeleteConversationDatasetOperationMetadata" do
|
69
70
|
end
|
@@ -195,6 +195,11 @@ module Google
|
|
195
195
|
end
|
196
196
|
|
197
197
|
# Metadata for [ConversationDatasets][CreateConversationDataset].
|
198
|
+
# @!attribute [rw] conversation_dataset
|
199
|
+
# @return [::String]
|
200
|
+
# The resource name of the conversation dataset that will be created. Format:
|
201
|
+
# `projects/<Project ID>/locations/<Location
|
202
|
+
# ID>/conversationDatasets/<Conversation Dataset Id>`
|
198
203
|
class CreateConversationDatasetOperationMetadata
|
199
204
|
include ::Google::Protobuf::MessageExts
|
200
205
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -544,13 +544,13 @@ module Google
|
|
544
544
|
# Unspecified feature type.
|
545
545
|
TYPE_UNSPECIFIED = 0
|
546
546
|
|
547
|
-
# Run article suggestion model.
|
547
|
+
# Run article suggestion model for chat.
|
548
548
|
ARTICLE_SUGGESTION = 1
|
549
549
|
|
550
|
-
# Run FAQ model.
|
550
|
+
# Run FAQ model for chat.
|
551
551
|
FAQ = 2
|
552
552
|
|
553
|
-
# Run smart reply model.
|
553
|
+
# Run smart reply model for chat.
|
554
554
|
SMART_REPLY = 3
|
555
555
|
end
|
556
556
|
end
|
@@ -181,7 +181,8 @@ module Google
|
|
181
181
|
# Instructs the speech recognizer how to process the speech audio.
|
182
182
|
# @!attribute [rw] text
|
183
183
|
# @return [::Google::Cloud::Dialogflow::V2::TextInput]
|
184
|
-
# The natural language text to be processed.
|
184
|
+
# The natural language text to be processed. Text length must not exceed
|
185
|
+
# 256 character for virtual agent interactions.
|
185
186
|
# @!attribute [rw] event
|
186
187
|
# @return [::Google::Cloud::Dialogflow::V2::EventInput]
|
187
188
|
# The event to be processed.
|
@@ -549,7 +550,7 @@ module Google
|
|
549
550
|
# @!attribute [rw] text
|
550
551
|
# @return [::String]
|
551
552
|
# Required. The UTF-8 encoded natural language text to be processed.
|
552
|
-
# Text length must not exceed 256 characters.
|
553
|
+
# Text length must not exceed 256 characters for virtual agent interactions.
|
553
554
|
# @!attribute [rw] language_code
|
554
555
|
# @return [::String]
|
555
556
|
# Required. The language of this conversational query. See [Language
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dialogflow-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.12'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.12'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|