Skip to content

Commit 854485b

Browse files
feat: include conversation dataset name to be created with dataset creation metadata (#1003)
* feat: include conversation dataset name to be created with dataset creation metadata docs: clarify SuggestionFeature enums which are specific to chat agents PiperOrigin-RevId: 478522249 Source-Link: googleapis/googleapis@8bd89cd Source-Link: googleapis/googleapis-gen@ddf381e Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZGRmMzgxZThmY2ViYmRkZTkwMmRmMDQxOWIzMDkwOGQwMWM2M2UwZSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent eb5830e commit 854485b

File tree

5 files changed

+55
-8
lines changed

5 files changed

+55
-8
lines changed

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation_dataset.proto

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,12 @@ message ImportConversationDataOperationResponse {
306306

307307
// Metadata for [ConversationDatasets][CreateConversationDataset].
308308
message CreateConversationDatasetOperationMetadata {
309-
309+
// The resource name of the conversation dataset that will be created. Format:
310+
// `projects/<Project ID>/locations/<Location
311+
// ID>/conversationDatasets/<Conversation Dataset Id>`
312+
string conversation_dataset = 1 [(google.api.resource_reference) = {
313+
type: "dialogflow.googleapis.com/ConversationDataset"
314+
}];
310315
}
311316

312317
// Metadata for [ConversationDatasets][DeleteConversationDataset].

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation_profile.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -669,13 +669,13 @@ message SuggestionFeature {
669669
// Unspecified feature type.
670670
TYPE_UNSPECIFIED = 0;
671671

672-
// Run article suggestion model.
672+
// Run article suggestion model for chat.
673673
ARTICLE_SUGGESTION = 1;
674674

675-
// Run FAQ model.
675+
// Run FAQ model for chat.
676676
FAQ = 2;
677677

678-
// Run smart reply model.
678+
// Run smart reply model for chat.
679679
SMART_REPLY = 3;
680680
}
681681

packages/google-cloud-dialogflow/protos/protos.d.ts

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-dialogflow/protos/protos.js

Lines changed: 31 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-dialogflow/protos/protos.json

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)