|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# Copyright 2020 Google LLC |
| 2 | +# Copyright 2022 Google LLC |
3 | 3 | #
|
4 | 4 | # Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | # you may not use this file except in compliance with the License.
|
|
26 | 26 | from google.cloud.dialogflow_v2.services.contexts.async_client import (
|
27 | 27 | ContextsAsyncClient,
|
28 | 28 | )
|
| 29 | +from google.cloud.dialogflow_v2.services.conversation_datasets.client import ( |
| 30 | + ConversationDatasetsClient, |
| 31 | +) |
| 32 | +from google.cloud.dialogflow_v2.services.conversation_datasets.async_client import ( |
| 33 | + ConversationDatasetsAsyncClient, |
| 34 | +) |
| 35 | +from google.cloud.dialogflow_v2.services.conversation_models.client import ( |
| 36 | + ConversationModelsClient, |
| 37 | +) |
| 38 | +from google.cloud.dialogflow_v2.services.conversation_models.async_client import ( |
| 39 | + ConversationModelsAsyncClient, |
| 40 | +) |
29 | 41 | from google.cloud.dialogflow_v2.services.conversation_profiles.client import (
|
30 | 42 | ConversationProfilesClient,
|
31 | 43 | )
|
|
126 | 138 | from google.cloud.dialogflow_v2.types.conversation import ListConversationsResponse
|
127 | 139 | from google.cloud.dialogflow_v2.types.conversation import ListMessagesRequest
|
128 | 140 | from google.cloud.dialogflow_v2.types.conversation import ListMessagesResponse
|
| 141 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ConversationDataset |
| 142 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ConversationInfo |
| 143 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 144 | + CreateConversationDatasetOperationMetadata, |
| 145 | +) |
| 146 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 147 | + CreateConversationDatasetRequest, |
| 148 | +) |
| 149 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 150 | + DeleteConversationDatasetOperationMetadata, |
| 151 | +) |
| 152 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 153 | + DeleteConversationDatasetRequest, |
| 154 | +) |
| 155 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 156 | + GetConversationDatasetRequest, |
| 157 | +) |
| 158 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 159 | + ImportConversationDataOperationMetadata, |
| 160 | +) |
| 161 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 162 | + ImportConversationDataOperationResponse, |
| 163 | +) |
| 164 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 165 | + ImportConversationDataRequest, |
| 166 | +) |
| 167 | +from google.cloud.dialogflow_v2.types.conversation_dataset import InputConfig |
| 168 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 169 | + ListConversationDatasetsRequest, |
| 170 | +) |
| 171 | +from google.cloud.dialogflow_v2.types.conversation_dataset import ( |
| 172 | + ListConversationDatasetsResponse, |
| 173 | +) |
129 | 174 | from google.cloud.dialogflow_v2.types.conversation_event import ConversationEvent
|
| 175 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 176 | + ArticleSuggestionModelMetadata, |
| 177 | +) |
| 178 | +from google.cloud.dialogflow_v2.types.conversation_model import ConversationModel |
| 179 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 180 | + ConversationModelEvaluation, |
| 181 | +) |
| 182 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 183 | + CreateConversationModelEvaluationOperationMetadata, |
| 184 | +) |
| 185 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 186 | + CreateConversationModelEvaluationRequest, |
| 187 | +) |
| 188 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 189 | + CreateConversationModelOperationMetadata, |
| 190 | +) |
| 191 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 192 | + CreateConversationModelRequest, |
| 193 | +) |
| 194 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 195 | + DeleteConversationModelOperationMetadata, |
| 196 | +) |
| 197 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 198 | + DeleteConversationModelRequest, |
| 199 | +) |
| 200 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 201 | + DeployConversationModelOperationMetadata, |
| 202 | +) |
| 203 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 204 | + DeployConversationModelRequest, |
| 205 | +) |
| 206 | +from google.cloud.dialogflow_v2.types.conversation_model import EvaluationConfig |
| 207 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 208 | + GetConversationModelEvaluationRequest, |
| 209 | +) |
| 210 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 211 | + GetConversationModelRequest, |
| 212 | +) |
| 213 | +from google.cloud.dialogflow_v2.types.conversation_model import InputDataset |
| 214 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 215 | + ListConversationModelEvaluationsRequest, |
| 216 | +) |
| 217 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 218 | + ListConversationModelEvaluationsResponse, |
| 219 | +) |
| 220 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 221 | + ListConversationModelsRequest, |
| 222 | +) |
| 223 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 224 | + ListConversationModelsResponse, |
| 225 | +) |
| 226 | +from google.cloud.dialogflow_v2.types.conversation_model import SmartReplyMetrics |
| 227 | +from google.cloud.dialogflow_v2.types.conversation_model import SmartReplyModelMetadata |
| 228 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 229 | + UndeployConversationModelOperationMetadata, |
| 230 | +) |
| 231 | +from google.cloud.dialogflow_v2.types.conversation_model import ( |
| 232 | + UndeployConversationModelRequest, |
| 233 | +) |
130 | 234 | from google.cloud.dialogflow_v2.types.conversation_profile import AutomatedAgentConfig
|
| 235 | +from google.cloud.dialogflow_v2.types.conversation_profile import ( |
| 236 | + ClearSuggestionFeatureConfigOperationMetadata, |
| 237 | +) |
| 238 | +from google.cloud.dialogflow_v2.types.conversation_profile import ( |
| 239 | + ClearSuggestionFeatureConfigRequest, |
| 240 | +) |
131 | 241 | from google.cloud.dialogflow_v2.types.conversation_profile import ConversationProfile
|
132 | 242 | from google.cloud.dialogflow_v2.types.conversation_profile import (
|
133 | 243 | CreateConversationProfileRequest,
|
|
152 | 262 | )
|
153 | 263 | from google.cloud.dialogflow_v2.types.conversation_profile import LoggingConfig
|
154 | 264 | from google.cloud.dialogflow_v2.types.conversation_profile import NotificationConfig
|
| 265 | +from google.cloud.dialogflow_v2.types.conversation_profile import ( |
| 266 | + SetSuggestionFeatureConfigOperationMetadata, |
| 267 | +) |
| 268 | +from google.cloud.dialogflow_v2.types.conversation_profile import ( |
| 269 | + SetSuggestionFeatureConfigRequest, |
| 270 | +) |
155 | 271 | from google.cloud.dialogflow_v2.types.conversation_profile import SuggestionFeature
|
156 | 272 | from google.cloud.dialogflow_v2.types.conversation_profile import (
|
157 | 273 | UpdateConversationProfileRequest,
|
|
160 | 276 | from google.cloud.dialogflow_v2.types.document import DeleteDocumentRequest
|
161 | 277 | from google.cloud.dialogflow_v2.types.document import Document
|
162 | 278 | from google.cloud.dialogflow_v2.types.document import ExportDocumentRequest
|
| 279 | +from google.cloud.dialogflow_v2.types.document import ExportOperationMetadata |
163 | 280 | from google.cloud.dialogflow_v2.types.document import GetDocumentRequest
|
164 | 281 | from google.cloud.dialogflow_v2.types.document import ImportDocumentsRequest
|
165 | 282 | from google.cloud.dialogflow_v2.types.document import ImportDocumentsResponse
|
|
297 | 414 | "AnswerRecordsAsyncClient",
|
298 | 415 | "ContextsClient",
|
299 | 416 | "ContextsAsyncClient",
|
| 417 | + "ConversationDatasetsClient", |
| 418 | + "ConversationDatasetsAsyncClient", |
| 419 | + "ConversationModelsClient", |
| 420 | + "ConversationModelsAsyncClient", |
300 | 421 | "ConversationProfilesClient",
|
301 | 422 | "ConversationProfilesAsyncClient",
|
302 | 423 | "ConversationsClient",
|
|
368 | 489 | "ListConversationsResponse",
|
369 | 490 | "ListMessagesRequest",
|
370 | 491 | "ListMessagesResponse",
|
| 492 | + "ConversationDataset", |
| 493 | + "ConversationInfo", |
| 494 | + "CreateConversationDatasetOperationMetadata", |
| 495 | + "CreateConversationDatasetRequest", |
| 496 | + "DeleteConversationDatasetOperationMetadata", |
| 497 | + "DeleteConversationDatasetRequest", |
| 498 | + "GetConversationDatasetRequest", |
| 499 | + "ImportConversationDataOperationMetadata", |
| 500 | + "ImportConversationDataOperationResponse", |
| 501 | + "ImportConversationDataRequest", |
| 502 | + "InputConfig", |
| 503 | + "ListConversationDatasetsRequest", |
| 504 | + "ListConversationDatasetsResponse", |
371 | 505 | "ConversationEvent",
|
| 506 | + "ArticleSuggestionModelMetadata", |
| 507 | + "ConversationModel", |
| 508 | + "ConversationModelEvaluation", |
| 509 | + "CreateConversationModelEvaluationOperationMetadata", |
| 510 | + "CreateConversationModelEvaluationRequest", |
| 511 | + "CreateConversationModelOperationMetadata", |
| 512 | + "CreateConversationModelRequest", |
| 513 | + "DeleteConversationModelOperationMetadata", |
| 514 | + "DeleteConversationModelRequest", |
| 515 | + "DeployConversationModelOperationMetadata", |
| 516 | + "DeployConversationModelRequest", |
| 517 | + "EvaluationConfig", |
| 518 | + "GetConversationModelEvaluationRequest", |
| 519 | + "GetConversationModelRequest", |
| 520 | + "InputDataset", |
| 521 | + "ListConversationModelEvaluationsRequest", |
| 522 | + "ListConversationModelEvaluationsResponse", |
| 523 | + "ListConversationModelsRequest", |
| 524 | + "ListConversationModelsResponse", |
| 525 | + "SmartReplyMetrics", |
| 526 | + "SmartReplyModelMetadata", |
| 527 | + "UndeployConversationModelOperationMetadata", |
| 528 | + "UndeployConversationModelRequest", |
372 | 529 | "AutomatedAgentConfig",
|
| 530 | + "ClearSuggestionFeatureConfigOperationMetadata", |
| 531 | + "ClearSuggestionFeatureConfigRequest", |
373 | 532 | "ConversationProfile",
|
374 | 533 | "CreateConversationProfileRequest",
|
375 | 534 | "DeleteConversationProfileRequest",
|
|
380 | 539 | "ListConversationProfilesResponse",
|
381 | 540 | "LoggingConfig",
|
382 | 541 | "NotificationConfig",
|
| 542 | + "SetSuggestionFeatureConfigOperationMetadata", |
| 543 | + "SetSuggestionFeatureConfigRequest", |
383 | 544 | "SuggestionFeature",
|
384 | 545 | "UpdateConversationProfileRequest",
|
385 | 546 | "CreateDocumentRequest",
|
386 | 547 | "DeleteDocumentRequest",
|
387 | 548 | "Document",
|
388 | 549 | "ExportDocumentRequest",
|
| 550 | + "ExportOperationMetadata", |
389 | 551 | "GetDocumentRequest",
|
390 | 552 | "ImportDocumentsRequest",
|
391 | 553 | "ImportDocumentsResponse",
|
|
0 commit comments